/*
Theme Name: Squishy Dumplings
Theme URI: https://squishydumplings.store/
Author: Squishy Dumplings migration
Description: A WooCommerce storefront theme recreated from the publicly visible Squishy Dumplings storefront. Includes a protected public-catalog importer.
Version: 1.3.6
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: squishy-dumplings
*/

:root {
  --pink: #fff0f6;
  --rose: #bf8585;
  --pink-strong: #ff6385;
  --orange: #ff9d65;
  --ink: #111118;
  --purple: #1c0c37;
  --mint: #75f0a4;
  --cream: #fffdf9;
  --line: #d4c9cf;
  --shadow: 0 14px 32px rgba(43, 16, 54, 0.12);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #c84c6d; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, .button, .wp-element-button, .add_to_cart_button {
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.site-topbar {
  min-height: 36px;
  padding: 8px 20px;
  background: var(--rose);
  color: white;
  text-align: center;
  font-size: 14px;
}

.site-topbar strong { font-weight: 800; }
.site-topbar-note { margin-left: 24px; opacity: .86; }

.site-header {
  background: var(--pink);
  border-bottom: 1px solid #bfb2bb;
}

.site-header-main,
.sdc-header-row {
  min-height: 0;
  padding: 0;
}

.sdc-header-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 7px clamp(20px, 8vw, 125px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-tools.right { justify-content: flex-end; }
.header-icon { width: 24px; height: 24px; display: inline-grid; place-items: center; border: 0; background: transparent; padding: 0; color: inherit; }
.header-icon svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.mobile-menu-toggle { display: none; grid-template-rows: repeat(3, 1px); gap: 5px; }
.mobile-menu-toggle span { display: block; width: 20px; height: 1px; background: currentColor; }
.cart-toggle { position: relative; }
.cart-count { position: absolute; right: -7px; top: -8px; min-width: 15px; height: 15px; padding: 0 4px; border-radius: 99px; background: var(--pink-strong); color: white; font-size: 9px; line-height: 15px; text-align: center; }

.sdc-header-columns {
  height: 62px;
  min-height: 62px;
}

.site-logo img {
  width: 175px;
  height: 70px;
  max-height: 70px;
  object-fit: contain;
  margin: auto;
}

.site-logo-text {
  display: block;
  text-align: center;
  color: var(--orange);
  font-size: 28px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.site-logo-text small {
  display: block;
  color: #76c7b7;
  font-size: 18px;
  letter-spacing: -1px;
}

.site-navigation {
  position: relative;
  z-index: 10;
  overflow: visible;
  border-top: 1px solid #d7cbd2;
  background: white;
}

.sdc-primary-nav .sdc-mega-menu-item {
  position: static;
}

.sdc-primary-nav .sdc-mega-menu-item > .sub-menu {
  display: none !important;
}

.sdc-mega-panel {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  border-top: 1px solid #eadde3;
  background: #fff;
  box-shadow: 0 20px 36px rgba(28, 12, 55, .18);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sdc-primary-nav .sdc-mega-menu-item:hover > .sdc-mega-panel,
.sdc-primary-nav .sdc-mega-menu-item:focus-within > .sdc-mega-panel,
.sdc-primary-nav .sdc-mega-menu-item.is-open > .sdc-mega-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.sdc-mega-panel-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 26px 24px 30px;
}

.sdc-mega-collection-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.sdc-mega-collection-card,
.sdc-mega-product-card {
  display: block;
  color: var(--ink);
}

.sdc-mega-collection-card:hover,
.sdc-mega-product-card:hover {
  color: var(--ink);
}

.sdc-mega-collection-card img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 16px;
  background: #f6e9ef;
  object-fit: cover;
  transition: transform .2s ease;
}

.sdc-mega-collection-card:hover img,
.sdc-mega-product-card:hover img {
  transform: translateY(-2px);
}

.sdc-mega-card-title {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.sdc-mega-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  color: #756873;
  font-size: 11px;
}

.sdc-mega-card-meta b {
  color: var(--ink);
  font-size: 23px;
  font-weight: 400;
  line-height: .7;
}

.sdc-mega-mystery-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(220px, 1fr);
  gap: 34px;
}

.sdc-mega-kicker {
  margin: 0 0 14px;
  color: #a95676;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.sdc-mega-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sdc-mega-product-card img {
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 8px;
  background: #f6e9ef;
  object-fit: cover;
  transition: transform .2s ease;
}

.sdc-mega-product-card span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.sdc-mega-arrivals {
  padding-left: 30px;
  border-left: 1px solid #eadde3;
}

.sdc-mega-arrivals ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sdc-mega-arrivals li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e8ec;
}

.sdc-mega-arrivals li a {
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
}

.sdc-mega-arrivals li > span {
  flex: 0 0 auto;
  color: #756873;
  font-size: 11px;
}

.sdc-primary-nav .sdc-mega-menu-item > a {
  position: relative;
}

.sdc-primary-nav .sdc-mega-menu-item > a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .18s ease, transform .18s ease;
}

.sdc-primary-nav .sdc-mega-menu-item:hover > a::after,
.sdc-primary-nav .sdc-mega-menu-item.is-open > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.sdc-primary-nav .sdc-primary-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 27px;
  width: 100%;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 6px 20px;
}

.sdc-primary-nav .sdc-primary-menu > li {
  flex: 0 0 auto !important;
  display: block !important;
  width: auto;
  margin: 0;
}

.sdc-primary-nav > div,
.sdc-primary-nav .menu-primary-container {
  width: 100%;
}

.sdc-primary-nav a {
  display: inline-block;
  padding: 7px 0;
  color: #141118;
  font-size: 14px;
  white-space: nowrap;
}

.sdc-primary-nav .new-drops a {
  padding: 8px 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink-strong), var(--orange));
  color: white;
  box-shadow: 0 4px 12px rgba(255, 99, 133, .25);
  letter-spacing: 1px;
  font-weight: 800;
}
.sdc-primary-nav li { position: relative; }
.sdc-primary-nav .sub-menu { position: absolute; z-index: 30; top: 100%; left: 50%; display: block; min-width: 210px; padding: 9px; transform: translateX(-50%); border: 1px solid #e3d8de; border-radius: 12px; background: white; box-shadow: 0 18px 35px rgba(43,16,54,.14); opacity: 0; pointer-events: none; visibility: hidden; }
.sdc-primary-nav li:hover > .sub-menu, .sdc-primary-nav li:focus-within > .sub-menu, .sdc-primary-nav li.is-open > .sub-menu { opacity: 1; pointer-events: auto; visibility: visible; }
.sdc-primary-nav .sub-menu li a { display: block; padding: 9px 11px; border-radius: 8px; font-size: 13px; }
.sdc-primary-nav .sub-menu li a:hover { background: var(--pink); }
.menu-chevron { margin-left: 3px; font-size: 12px; }

.search-panel {
  position: absolute;
  z-index: 20;
  top: 98px;
  left: 0;
  right: 0;
  padding: 26px clamp(20px, 9vw, 140px) 30px;
  background: var(--pink);
  border-bottom: 1px solid #cbbcc7;
  box-shadow: 0 15px 30px rgba(28, 12, 55, .14);
}
.search-panel label { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 26px; }
.search-row { display: flex; gap: 10px; }
.search-row input { min-width: 0; flex: 1; border: 1px solid #a99ba7; border-radius: 5px; padding: 13px 15px; background: white; }
.search-row button { border-radius: 99px; padding: 12px 22px; background: var(--pink-strong); color: white; }
.search-row .search-close { background: transparent; color: var(--ink); font-size: 24px; padding-inline: 8px; }
.search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 14px; }
.search-result { display: flex; align-items: center; gap: 10px; padding: 8px; border: 1px solid #eadde3; border-radius: 10px; background: white; font-size: 13px; }
.search-result img { width: 42px; height: 42px; border-radius: 7px; object-fit: cover; }
.search-no-results { color: #6e6370; font-size: 13px; }
.mobile-menu-panel { display: none; }
.cart-drawer { position: fixed; z-index: 60; top: 0; right: 0; display: flex; width: min(420px, 100vw); height: 100vh; flex-direction: column; background: white; box-shadow: -16px 0 35px rgba(28,12,55,.2); }
.cart-drawer[hidden], .mobile-menu-panel[hidden], .search-panel[hidden] { display: none !important; }
.cart-drawer-head, .cart-drawer-foot { padding: 18px 22px; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eadde3; }
.cart-drawer-head h2 { margin: 0; font-family: var(--serif); font-weight: 400; }
.cart-close, .mobile-menu-close { border: 0; background: transparent; font-size: 27px; line-height: 1; }
.cart-drawer-body { flex: 1; overflow: auto; padding: 18px 22px; }
.cart-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eadde3; }
.cart-line img { width: 64px; height: 64px; border-radius: 9px; object-fit: cover; }
.cart-line strong, .cart-line span { display: block; font-size: 13px; }
.cart-line span { margin-top: 5px; color: #6e6370; }
.cart-empty { color: #6e6370; }
.cart-drawer-foot { border-top: 1px solid #eadde3; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 14px; }
.drawer-checkout, .drawer-view-cart { display: block; padding: 13px; border-radius: 99px; text-align: center; }
.drawer-checkout { background: var(--pink-strong); color: white; }
.drawer-view-cart { margin-top: 8px; border: 1px solid var(--ink); }
.sdc-sticky-bar { position: fixed; z-index: 50; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 14px; max-width: min(720px, calc(100vw - 36px)); padding: 12px 18px; border-radius: 28px; background: linear-gradient(120deg, #e0708d, #b95c72); color: white; font-size: 13px; box-shadow: 0 8px 22px rgba(43,16,54,.22); }
.sdc-sticky-bar button { border: 0; background: transparent; color: white; font-size: 20px; }

.hero {
  position: relative;
  overflow: hidden;
  background: #100d1d;
}

.hero-picture { display: block; }

.hero img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hero-mobile { display: none; }

.hero-overlay {
  position: absolute;
  left: clamp(32px, 5.2vw, 92px);
  bottom: clamp(32px, 6vw, 78px);
  z-index: 2;
}

.hero-cta,
.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 16px 44px;
  border-radius: 99px;
  background: #ff7c19;
  color: #161017;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 0 rgba(255, 212, 153, .8), 0 10px 24px rgba(0,0,0,.2);
}

.hero-cta:hover, .shop-button:hover { color: #161017; transform: translateY(-2px); }
.hero-cta { white-space: nowrap; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }

.hero-cta:hover { text-decoration: none; box-shadow: 0 7px 0 rgba(255, 212, 153, .8), 0 13px 28px rgba(0,0,0,.22); }

@media (max-width: 700px) {
  .hero-overlay {
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: max-content;
  }
  .hero-cta {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

.hero-intro {
  max-width: 900px;
  padding-top: 48px;
  padding-bottom: 42px;
}

.hero-intro .section-heading {
  margin-bottom: 0;
}

.hero-intro h1 {
  max-width: 820px;
  margin-inline: auto;
}

.drop-strip {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 580px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 9vw, 140px);
  background: var(--purple);
  border-bottom: 7px solid var(--mint);
  color: white;
}

.drop-strip-copy { text-align: center; }
.drop-strip strong { color: var(--mint); letter-spacing: 2px; font-size: 19px; }
.drop-strip p { margin: 2px 0 0; font-size: 13px; }
.drop-strip .shop-button { justify-self: end; min-height: 42px; padding: 10px 29px; background: #ff761c; font-size: 12px; }
.drop-strip .shop-button { white-space: nowrap; }

.store-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 24px;
}

.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading h1, .section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.05;
}
.section-heading p { max-width: 670px; margin: 12px auto 0; color: #615963; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
}

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
}
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #f6e9ef;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card h2, .product-card h3 {
  min-height: 2.5em;
  margin: 12px 0 3px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.product-card .price { color: #584d59; font-size: 14px; }
.product-card .button { display: inline-block; margin-top: 10px; padding: 8px 14px; border-radius: 99px; background: #ffd8e6; font-size: 12px; }

.wholesale-showcase-section {
  max-width: none;
  margin: 0;
  background: linear-gradient(135deg, #fff3f7 0%, #fffaf0 100%);
}
.wholesale-showcase-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.wholesale-showcase-section .text-link {
  display: inline-block;
  margin-top: 12px;
}
.wholesale-product-grid {
  max-width: 1192px;
  margin: 0 auto;
}
.wholesale-product-card {
  padding: 14px;
  border: 1px solid rgba(218, 188, 200, .65);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 30px rgba(122, 76, 96, .08);
}
.wholesale-product-card .product-card-image {
  border-radius: 14px;
}
.wholesale-product-card .product-card-image img {
  display: block;
}
.wholesale-product-card h3 {
  padding: 0 3px;
}
.wholesale-product-card .price {
  padding: 0 3px 3px;
}

.collection-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.collection-card {
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 25px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f9cfda, #ffe9c8);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: 26px;
}
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.collection-card span { position: relative; z-index: 1; padding: 7px 11px; border-radius: 8px; background: rgba(255,255,255,.78); }
.collection-card:nth-child(2n) { background: linear-gradient(145deg, #d1f3e4, #d6eaff); }
.collection-card:nth-child(3n) { background: linear-gradient(145deg, #d7c5ff, #ffc9df); }
.collection-banner { max-width: 700px; margin: 0 auto 22px; }
.collection-banner img { width: 100%; max-height: 260px; border-radius: 18px; object-fit: cover; }

.home-editorial { padding-top: 15px; }
.eyebrow { color: #b34f72; font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.blog-grid, .blog-index-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.blog-card { overflow: hidden; border: 1px solid #eadde3; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover { color: inherit; }
.blog-card img { width: 100%; aspect-ratio: 1.6; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-card h2, .blog-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.2; }
.blog-card-footer { padding-top: 0; }
.text-link { color: #c55470; font-size: 13px; font-weight: 800; }
.trust-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 24px; background: var(--purple); color: white; text-align: center; }
.trust-section div { padding: 12px; border-right: 1px solid rgba(255,255,255,.2); }
.trust-section div:last-child { border: 0; }
.trust-section strong, .trust-section span { display: block; }
.trust-section strong { color: var(--mint); letter-spacing: 1px; font-size: 13px; }
.trust-section span { margin-top: 4px; color: #d8cbe1; font-size: 12px; }
.trust-section .trust-icon {
  display: grid;
  place-items: center;
  min-height: 38px;
  margin-bottom: 8px;
}
.trust-section .trust-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.collection-page { min-height: 60vh; background: var(--purple); color: #fff; padding: 54px clamp(20px, 7vw, 100px) 90px; }
.collection-intro { max-width: 900px; margin: 0 auto 45px; text-align: center; }
.collection-pill { display: inline-block; margin-bottom: 18px; padding: 7px 16px; border: 1px solid #a4656c; border-radius: 99px; color: #ff9d65; font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.collection-intro h1 { margin: 0; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; text-transform: uppercase; }
.collection-description { max-width: 750px; margin: 18px auto 0; color: #c4afd5; line-height: 1.75; }
.collection-bottom-content { max-width: 1240px; margin: 46px auto 0; padding-top: 34px; border-top: 1px solid #46315c; }
.collection-bottom-content .collection-description { margin-top: 0; }
.collection-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.collection-tags span { padding: 8px 14px; border-radius: 99px; background: #35204f; color: #c4afd5; font-size: 12px; }
.collection-products { max-width: 1240px; margin: auto; }
.collection-products-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #46315c; }
.collection-products-heading h2 { margin: 0; font-size: 21px; }
.collection-products-heading span { color: #c4afd5; font-size: 12px; }
.collection-tools { display: flex; align-items: center; gap: 18px; }
.collection-tools .woocommerce-ordering { margin: 0 !important; }
.collection-tools select { border: 1px solid #6c4b81; border-radius: 99px; padding: 8px 12px; background: #24103f; color: white; font-size: 12px; }
.collection-page ul.products { margin: 0 !important; padding: 0 !important; }
.collection-page ul.products li.product { width: calc(25% - 18px) !important; margin-right: 24px !important; margin-bottom: 32px !important; }
.collection-page ul.products li.product:nth-child(4n) { margin-right: 0 !important; }
.collection-page ul.products li.product .woocommerce-loop-product__title { color: #fff; text-transform: uppercase; }
.collection-page ul.products li.product .price { color: #fff; }
.collection-page ul.products li.product .button { width: 100%; border: 1px solid #6c4b81; background: transparent; color: #fff; text-transform: uppercase; letter-spacing: 1px; }

.sdc-product-shell { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 60px; }
.sdc-product-gallery .woocommerce-product-gallery { width: 100% !important; float: none !important; }
.sdc-product-gallery .flex-control-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px !important; }
.sdc-product-gallery .flex-control-thumbs li { width: auto !important; margin: 0 !important; }
.sdc-product-gallery img { border-radius: 18px; }
.sdc-product-summary { padding-top: 8px; }
.sdc-rating { min-height: 25px; color: #f28c00; }
.sdc-rating span:last-child { color: #f28c00; font-size: 13px; }
.sdc-product-summary .product_title { margin: 12px 0 20px; }
.sdc-stock-note { display: grid; gap: 4px; margin: 25px 0 20px; padding: 14px; border: 1px solid #ffc7c0; border-radius: 14px; background: #fff5f2; color: #c72525; font-size: 13px; }
.sdc-stock-note span { color: #53454d; font-size: 12px; }
.sdc-stock-note em { float: right; color: #c72525; font-style: normal; font-weight: 700; }
.stock-progress { height: 8px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: #f0d8d5; }
.stock-progress i { display: block; width: 70%; height: 100%; border-radius: inherit; background: #f26642; }
.sdc-stock-note small { color: #53454d; font-size: 11px; }
.sdc-product-summary form.cart { display: flex; flex-wrap: wrap; gap: 10px; }
.sdc-product-summary form.cart .quantity { flex: 0 0 100px; }
.sdc-product-summary form.cart .button { min-height: 48px; flex: 1; border-radius: 0; background: white; border: 1px solid var(--ink); color: var(--ink); }
.sdc-product-summary form.cart .sdc-buy-now-button {
  flex: 1 1 150px;
  border: 0;
  border-radius: 99px;
  background: var(--pink-strong);
  color: white;
  font-weight: 800;
}
.sdc-product-summary form.cart .sdc-buy-now-button:hover {
  background: #e95174;
  color: white;
}
.sdc-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; text-align: center; }
.sdc-promise-grid div { display: grid; gap: 3px; font-size: 12px; }
.trust-icon { color: var(--mint); margin-bottom: 7px; }
.sdc-promise-grid span { color: #6e6370; font-size: 11px; }
.sdc-accordions { border-top: 1px solid #d1c9ce; }
.sdc-accordions details { padding: 14px 0; border-bottom: 1px solid #d1c9ce; }
.sdc-accordions summary { cursor: pointer; list-style: none; font-size: 14px; }
.sdc-accordions summary::-webkit-details-marker { display: none; }
.sdc-accordions summary::after { content: '+'; float: right; font-size: 20px; }
.sdc-accordions details[open] summary::after { content: '−'; }
.sdc-accordions details > div { padding-top: 12px; color: #625963; font-size: 14px; }
.sdc-related { margin-top: 65px; }
.sdc-related h2 { font-family: var(--serif); font-weight: 400; }

.blog-article-page { max-width: 1240px; margin: auto; padding: 24px; }
.blog-breadcrumb { margin: 0 0 55px; color: #776d75; font-size: 12px; }
.blog-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 30px; }
.recent-articles { padding-top: 5px; }
.recent-articles h3 { margin: 0 0 15px; font-size: 13px; }
.recent-articles a { display: block; padding: 14px 0; border-bottom: 1px solid #e8dfe3; font-size: 14px; font-weight: 700; }
.recent-articles small { display: block; margin-top: 5px; color: #85777f; font-size: 11px; font-style: italic; font-weight: 400; }
.article-content { max-width: 900px; }
.article-content h1 { margin: 0; font-size: 24px; font-weight: 400; }
.article-meta { margin: 12px 0 28px; color: #81747c; }
.article-featured img { width: 100%; border-radius: 18px; }
.article-content .entry-content { font-size: 17px; line-height: 1.7; }
.article-content .entry-content img { margin: 25px auto; border-radius: 16px; }
.article-content .entry-content blockquote { margin: 25px 0; padding: 20px; border: 1px solid #f2d2dc; border-radius: 16px; background: #fff4f7; }
.blog-index-page { max-width: 1240px; }
.blog-index-page h1 { margin-bottom: 36px; }
.home-copy { padding-top: 45px; padding-bottom: 45px; }
.home-copy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.home-copy-grid-four { grid-template-columns: repeat(4, 1fr); }
.home-copy-grid div { padding: 24px; border: 1px solid #eadde3; border-radius: 18px; background: #fff6f8; }
.home-copy-grid h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; font-size: 24px; }
.home-copy-grid p { color: #625963; }
.tiktok-section { padding: 82px 24px; background: linear-gradient(135deg, #22103d, #54254c); color: white; text-align: center; }
.tiktok-section .section-heading p:not(.eyebrow) { color: #dbc7e1; }
.tiktok-section .shop-button { margin-top: 12px; }

.why-shop-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.why-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-shop-grid div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #eadde3;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff6f8, #fffdf9);
}

.why-shop-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.why-shop-grid p {
  margin-bottom: 0;
  color: #625963;
  font-size: 14px;
}

.seo-content-section {
  max-width: 980px;
  padding-top: 70px;
  padding-bottom: 72px;
  background: #fff6f8;
}

.seo-content {
  max-width: 850px;
  margin: 0 auto;
  color: #4f454d;
  font-size: 16px;
  line-height: 1.75;
}

.seo-content h3 {
  margin: 34px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.seo-content h3:first-child {
  margin-top: 0;
}

.seo-content a,
.faq-list a {
  color: #b34f72;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-section {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 78px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  border-top: 1px solid #eadde3;
}

.faq-list details {
  padding: 20px 0;
  border-bottom: 1px solid #eadde3;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding-right: 30px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  margin-right: 2px;
  color: #b34f72;
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  max-width: 790px;
  margin: 12px 0 0;
  color: #625963;
  font-size: 15px;
  line-height: 1.7;
}


.home-final-cta {
  background: #f7f3ee;
  border-top: 1px solid rgba(35, 25, 35, .08);
  border-bottom: 1px solid rgba(35, 25, 35, .08);
  padding-top: 76px;
  padding-bottom: 82px;
}
.home-final-cta-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.home-final-cta .section-heading { max-width: 760px; margin: 0 auto 34px; }
.home-final-cta .section-heading h2 { margin-bottom: 12px; }
.home-final-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}
.home-final-cta-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(35, 25, 35, .10);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(35, 25, 35, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-final-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(35, 25, 35, .12);
}
.home-final-cta-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #fff;
}
.home-final-cta-card span {
  padding: 16px 16px 5px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}
.home-final-cta-card strong {
  padding: 9px 16px 18px;
  font-size: 11px;
  letter-spacing: .08em;
}
.home-final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  box-shadow: 0 5px 0 rgba(255, 212, 153, .7);
  transition: transform .2s ease, opacity .2s ease;
}
.home-final-cta-button:hover { color: #fff; opacity: .92; transform: translateY(-2px); }

.newsletter-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 35px; max-width: 1240px; margin: auto; padding: 75px 24px; }
.newsletter-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(30px, 4vw, 48px); font-weight: 400; }
.newsletter-section p:not(.eyebrow) { color: #625963; }
.sdc-newsletter-form { display: flex; flex-wrap: wrap; gap: 8px; }
.sdc-newsletter-form input { min-width: 0; flex: 1; border: 1px solid #bfb2bb; padding: 13px 15px; }
.sdc-newsletter-form button { padding: 13px 20px; background: var(--purple); color: white; }
.newsletter-status { flex-basis: 100%; color: #b34f72; font-size: 12px; }
.footer-newsletter { grid-column: span 2; }

.site-footer {
  padding: 58px 24px 28px;
  background: var(--purple);
  color: white;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 35px; }
.site-footer h2 { margin: 0 0 12px; color: var(--mint); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.site-footer h3 { margin: 0 0 14px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.site-footer p { max-width: 300px; color: #d8cbe1; font-size: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; color: #d8cbe1; font-size: 14px; }
.site-footer li + li { margin-top: 8px; }
.footer-bottom { margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: #bbacc5; font-size: 12px; }

.woocommerce .site-main, .site-main { min-height: 55vh; }
.woocommerce-breadcrumb { max-width: 1240px; margin: 28px auto !important; padding: 0 24px; color: #6e6370; font-size: 13px; }
.sdc-product-breadcrumb-banner {
  width: 100%;
  background: #fff0f6;
  border-top: 1px solid #eadde3;
  border-bottom: 1px solid #eadde3;
}
.sdc-product-breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1240px;
  min-height: 44px;
  margin: 0 auto;
  padding: 9px 24px;
  color: #6e6370;
  font-size: 13px;
}
.sdc-product-breadcrumb-inner a {
  color: #8a3e58;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sdc-product-breadcrumb-inner a:hover { color: #c84c6d; }
.sdc-product-breadcrumb-inner [aria-current="page"] {
  overflow: hidden;
  max-width: min(60vw, 520px);
  color: #3d303a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.woocommerce-products-header, .woocommerce-result-count, .woocommerce-ordering { max-width: 1240px; margin-left: auto !important; margin-right: auto !important; }
.woocommerce-products-header { padding: 30px 24px 15px; }
.woocommerce-products-header h1 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 64px); }
.woocommerce ul.products { max-width: 1240px; margin: 20px auto 80px !important; padding: 0 24px !important; }
.woocommerce ul.products li.product { width: calc(25% - 18px) !important; margin: 0 24px 40px 0 !important; }
.woocommerce ul.products li.product:nth-child(4n) { margin-right: 0 !important; }
.woocommerce ul.products li.product a img { border-radius: 14px; margin-bottom: 12px !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 !important; font-size: 15px !important; }
.woocommerce ul.products li.product .sdc-card-media {
  overflow: hidden;
  border-radius: 18px;
}
.woocommerce ul.products li.product .sdc-card-media img {
  width: 100%;
  margin-bottom: 0 !important;
  border-radius: 0;
}
.woocommerce ul.products li.product .sdc-card-copy {
  min-height: 77px;
  padding-top: 12px;
}
.woocommerce ul.products li.product .sdc-card-copy .woocommerce-loop-product__title {
  min-height: 2.5em;
  margin: 0 !important;
  overflow-wrap: anywhere;
}
.woocommerce ul.products li.product .price { color: #584d59; }
.woocommerce ul.products li.product .button { border-radius: 99px; background: var(--pink-strong); color: #fff; font-size: 12px; }
.woocommerce div.product { max-width: 1240px; margin: 0 auto; padding: 50px 24px 90px; }
.woocommerce div.product div.images img { border-radius: 18px; }
.woocommerce div.product .product_title { font-family: var(--serif); font-size: clamp(33px, 5vw, 58px); font-weight: 400; line-height: 1.05; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #c55470; font-weight: 700; }
.woocommerce div.product form.cart .button, .woocommerce a.button.alt, .woocommerce button.button.alt { border-radius: 99px; background: var(--pink-strong); color: #fff; }
.woocommerce-message { border-top-color: var(--pink-strong); }

.page-content { max-width: 900px; margin: 0 auto; padding: 65px 24px 90px; }
.page-content h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 6vw, 72px); line-height: 1.05; }
.page-content h2 { margin-top: 42px; font-family: var(--serif); font-weight: 400; font-size: 32px; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 850px) {
  .sdc-header-columns { padding-inline: 18px; }
  .mobile-menu-toggle { display: grid; }
  .mobile-menu-panel:not([hidden]) { position: fixed; z-index: 55; top: 0; left: 0; display: block; width: min(380px, 92vw); height: 100vh; overflow: auto; padding: 22px; background: white; box-shadow: 14px 0 35px rgba(28,12,55,.2); }
  .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #eadde3; font-size: 13px; letter-spacing: 1px; }
  .mobile-menu-panel .menu { display: block; padding: 18px 0; }
  .mobile-menu-panel .menu > li { border-bottom: 1px solid #eadde3; }
  .mobile-menu-panel .menu a { display: block; padding: 14px 0; font-size: 15px; }
  .mobile-menu-panel .sub-menu { display: none; padding: 0 0 8px 14px; list-style: none; }
  .mobile-menu-panel .menu-item-has-children.is-open > .sub-menu { display: block; }
  .sdc-primary-nav .sdc-primary-menu {
    gap: 15px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .sdc-mega-panel {
    position: static;
    display: none;
    width: auto;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }
  .sdc-primary-nav .sdc-mega-menu-item.is-open > .sdc-mega-panel {
    display: block;
  }
  .sdc-mega-panel-inner {
    padding: 14px 0 18px;
  }
  .sdc-mega-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sdc-mega-mystery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sdc-mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .sdc-mega-arrivals {
    padding: 18px 0 0;
    border-top: 1px solid #eadde3;
    border-left: 0;
  }
  .sdc-mega-card-title { font-size: 12px; }
  .sdc-mega-product-card span { font-size: 11px; }
  .sdc-primary-nav a { font-size: 12px; }
  .product-grid, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .woocommerce ul.products li.product { width: calc(50% - 12px) !important; margin-right: 24px !important; }
  .woocommerce ul.products li.product:nth-child(2n) { margin-right: 0 !important; }
  .collection-card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-newsletter { grid-column: auto; }
  .blog-grid, .blog-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sdc-product-shell { grid-template-columns: 1fr; gap: 30px; }
  .collection-page ul.products li.product { width: calc(50% - 12px) !important; margin-right: 24px !important; }
  .collection-page ul.products li.product:nth-child(2n) { margin-right: 0 !important; }
  .drop-strip { grid-template-columns: 1fr; text-align: center; }
  .drop-strip .shop-button { justify-self: center; }
}

@media (max-width: 560px) {
  .site-topbar { font-size: 12px; }
  .sdc-header-columns { height: 68px; min-height: 68px; grid-template-columns: 1fr auto 1fr; }
  .header-tools { gap: 12px; }
  .site-logo img { width: 144px; }
  .hero img { min-height: 0; }
  .hero-image { content: url('assets/Squishy-Dumplings.webp'); }
  .hero-overlay { left: 50%; bottom: 5%; transform: translateX(-50%); }
  .hero-cta { min-height: 56px; padding: 13px 32px; font-size: 15px; white-space: nowrap; }
  .product-grid { gap: 25px 10px; }
  .collection-card-grid, .footer-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-index-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .recent-articles { order: 2; }
  .trust-section { grid-template-columns: 1fr; }
  .trust-section div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .collection-products-heading { display: block; }
  .collection-products-heading span { display: block; margin-top: 8px; }
  .search-panel { top: 104px; padding-inline: 18px; }
  .search-results { grid-template-columns: 1fr; }
  .newsletter-section { grid-template-columns: 1fr; padding-block: 55px; }
  .home-copy-grid, .home-copy-grid-four, .why-shop-grid { grid-template-columns: 1fr; }
  .sdc-sticky-bar { right: 10px; bottom: 10px; }
  .collection-card { min-height: 145px; }
  .sdc-primary-nav .sdc-primary-menu { padding-inline: 14px; }
}

/* Final desktop navigation override: keep only the top-level menu horizontal. */
@media (min-width: 851px) {
  .sdc-primary-nav .sdc-primary-menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 27px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 6px 20px !important;
    list-style: none !important;
  }

  .sdc-primary-nav .sdc-primary-menu > li {
    display: block !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
  }

  .sdc-primary-nav ul.sub-menu {
    display: block !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: 210px !important;
    margin: 0 !important;
    padding: 9px !important;
  }

  .sdc-primary-nav ul.sub-menu > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }
}
/* Homepage SEO intro: compact visual bridge between the hero and featured products. */
.hero-intro {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 24px 30px;
  overflow: hidden;
}

.hero-intro::before,
.hero-intro::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.hero-intro::before {
  width: 180px;
  height: 180px;
  top: -90px;
  left: 8%;
  background: rgba(255, 216, 230, .48);
}

.hero-intro::after {
  width: 230px;
  height: 230px;
  right: 4%;
  bottom: -145px;
  background: rgba(207, 242, 226, .42);
}

.hero-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px clamp(24px, 4vw, 52px);
  border: 1px solid #eadde3;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff8fa 0%, #fff 58%, #f5fff9 100%);
  box-shadow: 0 12px 32px rgba(43, 21, 47, .07);
}

.hero-intro-copy {
  min-width: 0;
}

.hero-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 9px;
  color: #8a4f69;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.hero-intro-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  margin-right: 9px;
  border-radius: 99px;
  background: #8a4f69;
}

.hero-intro h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
}

.hero-intro p {
  max-width: 760px;
  margin: 11px 0 0;
  color: #615963;
  font-size: 15px;
  line-height: 1.6;
}

.hero-intro-points {
  display: grid;
  gap: 9px;
  min-width: 205px;
}

.hero-intro-points span {
  display: block;
  padding: 10px 14px;
  border: 1px solid #eadde3;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #3f3541;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 850px) {
  .hero-intro {
    padding: 18px 18px 24px;
  }

  .hero-intro-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 22px;
  }

  .hero-intro-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero-intro {
    padding: 12px 14px 20px;
  }

  .hero-intro-inner {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-intro h1 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .hero-intro p {
    font-size: 14px;
  }

  .hero-intro-points {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-intro-points span {
    padding: 9px 12px;
  }
}


/* Final homepage conversion section */
@media (max-width: 980px) {
  .home-final-cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .home-final-cta { padding-top: 55px; padding-bottom: 60px; }
  .home-final-cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-final-cta-card { display: grid; grid-template-columns: 105px 1fr; grid-template-rows: auto auto; }
  .home-final-cta-card img { grid-row: 1 / 3; width: 105px; height: 105px; }
  .home-final-cta-card span { align-self: end; padding: 14px 14px 3px; font-size: 18px; }
  .home-final-cta-card strong { padding: 5px 14px 14px; }
  .home-final-cta-button { width: 100%; margin-top: 22px; }
}

/* Redesigned homepage hero banner */
.hero {
  background: #fff7ef;
}
.hero-picture {
  width: 100%;
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* Final hero CTA fix: the later theme rule was hiding the CTA. */
.hero-overlay {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 2.5% !important;
  z-index: 20 !important;
  transform: translateX(-50%) !important;
  width: max-content;
}

.hero-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  min-height: 58px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #ff7c19;
  color: #161017 !important;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: 0 5px 0 rgba(255, 212, 153, .8), 0 10px 24px rgba(0,0,0,.2);
}

@media (max-width: 560px) {
  .hero-overlay {
    left: 50% !important;
    bottom: 2% !important;
    transform: translateX(-50%) !important;
  }
  .hero-cta {
    min-height: 50px;
    padding: 12px 24px;
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


/* =========================================================
   Footer layout — matched to supplied mockup
   ========================================================= */

.site-footer {
  background: #17121a;
  color: #fff;
  padding: 68px 32px 24px;
}

.site-footer .footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: stretch;
}

/* Left: brand / description / socials */
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 34px 22px;
  border: 1px solid rgba(255,255,255,.12);
}

.site-footer .footer-logo {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  margin-bottom: 24px;
  font-family: var(--serif, Georgia, serif);
  line-height: .95;
}

.site-footer .footer-logo span {
  font-size: 30px;
  font-weight: 500;
}

.site-footer .footer-logo strong {
  color: var(--mint, #bde9d4);
  font-size: 31px;
  font-weight: 600;
}

.site-footer .footer-description {
  max-width: 320px;
  margin: 0;
  color: #d8cbe1;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 30px;
}

.site-footer .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  transition: .2s ease;
}

.site-footer .footer-socials a:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* Middle: one large panel containing Shop / Info / Help */
.site-footer .footer-column {
  min-width: 0;
}

.site-footer .footer-grid > .footer-column {
  padding: 24px 34px;
  border: 1px solid rgba(255,255,255,.12);
}

.site-footer .footer-grid > .footer-shop {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: -28px;
  padding-bottom: 18px;
}

.site-footer .footer-grid > .footer-info {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin-top: 92px;
  margin-left: 18px;
  margin-right: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-footer .footer-grid > .footer-help {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0 34px 22px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Give the middle group its own visual container */
.site-footer .footer-shop::before {
  content: "";
  position: absolute;
}

.site-footer .footer-grid {
  position: relative;
}

/* Right: newsletter / contact */
.site-footer .footer-newsletter {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
  padding: 30px 30px 24px;
  border: 1px solid rgba(255,255,255,.12);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.site-footer .footer-newsletter p {
  max-width: 290px;
  margin: 0 0 18px;
  color: #d8cbe1;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer .sdc-newsletter-form {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin: 0;
}

.site-footer .sdc-newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-right: 0;
  border-radius: 0;
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.site-footer .sdc-newsletter-form input::placeholder {
  color: #bdb2c5;
}

.site-footer .sdc-newsletter-form button {
  width: 50px;
  border: 0;
  border-radius: 0;
  background: var(--mint, #bde9d4);
  color: #17121a;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.site-footer .footer-contact a {
  color: #d8cbe1;
  font-size: 13px;
  text-decoration: none;
}

.site-footer .footer-contact a:hover,
.site-footer li a:hover {
  color: var(--mint, #bde9d4);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0;
}

.site-footer li + li {
  margin-top: 9px;
}

.site-footer li a {
  color: #d8cbe1;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

/* Footer bottom */
.site-footer .footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #a99dae;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer .footer-shop {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .site-footer .footer-info {
    grid-column: 2 !important;
    grid-row: auto !important;
    margin: 0 !important;
  }

  .site-footer .footer-help {
    grid-column: 1 !important;
    grid-row: auto !important;
    margin: 0 !important;
  }

  .site-footer .footer-newsletter {
    grid-column: 2;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 48px 18px 20px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer .footer-brand,
  .site-footer .footer-shop,
  .site-footer .footer-info,
  .site-footer .footer-help,
  .site-footer .footer-newsletter {
    grid-column: 1 !important;
    grid-row: auto !important;
    margin: 0 !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-grid > .footer-column,
  .site-footer .footer-newsletter {
    padding: 24px;
  }

  .site-footer .footer-socials {
    padding-top: 24px;
  }
}

/* =========================================================
   FOOTER — NEW 3-PANEL DESIGN
   Uses the existing footer content/data with the supplied
   new visual layout.
   ========================================================= */

.site-footer {
  background: #0d090f !important;
  color: #f8f2f7;
  padding: 72px 32px 26px !important;
}

.site-footer .footer-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(500px, 1.35fr) minmax(300px, .85fr) !important;
  gap: 40px !important;
  align-items: stretch !important;
}

/* Left outer panel */
.site-footer .footer-brand {
  min-height: 430px;
  padding: 30px 32px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: transparent !important;
  display: flex;
  flex-direction: column;
}

.site-footer .footer-logo {
  margin: 0 0 34px !important;
}

.site-footer .footer-logo span {
  color: #d9d1db !important;
  font-size: 30px !important;
}

.site-footer .footer-logo strong {
  color: #4a9967 !important;
  font-size: 31px !important;
}

.site-footer .footer-description {
  max-width: 360px !important;
  color: #9e92a8 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.site-footer .footer-socials {
  margin-top: auto !important;
  padding-top: 35px !important;
}

/* Middle outer panel */
.site-footer .footer-links-panel {
  min-height: 430px;
  padding: 34px 26px !important;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Three nested boxes, matching the supplied mockup */
.site-footer .footer-link-box {
  flex: 1 1 0;
  min-height: 0;
  padding: 22px 26px !important;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
}

.site-footer .footer-link-box h3 {
  margin: 0 0 16px !important;
  color: #f4edf4 !important;
  font-size: 15px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
}

.site-footer .footer-link-box ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-footer .footer-link-box li {
  margin: 0 0 7px !important;
}

.site-footer .footer-link-box li:last-child {
  margin-bottom: 0 !important;
}

.site-footer .footer-link-box li a {
  color: #9e92a8 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.site-footer .footer-link-box li a:hover {
  color: #75f0a4 !important;
}

/* Right outer panel */
.site-footer .footer-newsletter {
  min-height: 430px;
  padding: 34px 32px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: transparent !important;
}

.site-footer .footer-newsletter h3 {
  margin: 0 0 22px !important;
  color: #f4edf4 !important;
  font-size: 15px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
}

.site-footer .footer-newsletter p {
  max-width: 280px !important;
  margin: 0 0 28px !important;
  color: #9e92a8 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.site-footer .sdc-newsletter-form {
  display: flex !important;
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
}

.site-footer .sdc-newsletter-form input {
  min-width: 0 !important;
  flex: 1 !important;
  height: 50px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  background: #141016 !important;
  color: #fff !important;
}

.site-footer .sdc-newsletter-form input::placeholder {
  color: #786d80 !important;
}

.site-footer .sdc-newsletter-form button {
  flex: 0 0 58px !important;
  width: 58px !important;
  height: 50px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #4a9967 !important;
  color: #07100a !important;
  font-size: 24px !important;
  cursor: pointer;
}

.site-footer .footer-contact {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 34px !important;
}

.site-footer .footer-contact a {
  color: #9e92a8 !important;
  font-size: 13px !important;
}

.site-footer .footer-contact a:hover {
  color: #75f0a4 !important;
}

/* Bottom line */
.site-footer .footer-bottom {
  margin-top: 34px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: #706673 !important;
  font-size: 11px !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1.2fr !important;
    gap: 24px !important;
  }

  .site-footer .footer-brand {
    min-height: 400px;
  }

  .site-footer .footer-links-panel {
    min-height: 400px;
  }

  .site-footer .footer-newsletter {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .site-footer {
    padding: 48px 18px 22px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-links-panel,
  .site-footer .footer-newsletter {
    grid-column: 1 !important;
    min-height: auto !important;
  }

  .site-footer .footer-links-panel {
    padding: 18px !important;
  }

  .site-footer .footer-link-box {
    padding: 20px !important;
  }
}


/* =========================================================
   FOOTER — REFERENCE DESIGN
   Four clean columns: Brand / Know Us / Information / Newsletter
   ========================================================= */

.site-footer {
  background: #0d090f !important;
  color: #f7f2f7;
  padding: 68px 34px 28px !important;
}

.site-footer .footer-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.25fr) minmax(190px, .85fr) minmax(220px, 1fr) minmax(300px, 1.15fr) !important;
  gap: 70px !important;
  align-items: start !important;
}

/* Remove the previous boxed/panel treatment */
.site-footer .footer-brand,
.site-footer .footer-column,
.site-footer .footer-newsletter {
  border: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Brand */
.site-footer .footer-logo {
  margin: 0 0 30px !important;
}

.site-footer .footer-logo span {
  display: block;
  color: #eee6ed !important;
  font-size: 40px !important;
  line-height: .95 !important;
}

.site-footer .footer-logo strong {
  display: block;
  color: #4a9967 !important;
  font-size: 40px !important;
  line-height: .95 !important;
}

.site-footer .footer-description {
  max-width: 330px !important;
  margin: 0 !important;
  color: #a79ca8 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* Social buttons */
.site-footer .footer-socials {
  display: flex !important;
  gap: 14px !important;
  margin: 34px 0 0 !important;
  padding: 0 !important;
}

.site-footer .footer-socials a {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 50% !important;
  color: #f2ebf2 !important;
  background: transparent !important;
  font-size: 10px !important;
  text-decoration: none !important;
}

/* Headings */
.site-footer h3 {
  position: relative;
  margin: 0 0 34px !important;
  padding-bottom: 18px !important;
  color: #f5eff5 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 1.1px !important;
  text-transform: uppercase !important;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  background: #4a9967;
}

/* Link lists */
.site-footer .footer-column ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .footer-column li {
  margin: 0 0 20px !important;
  padding-left: 15px;
  position: relative;
}

.site-footer .footer-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 24px;
  background: #4a9967;
}

.site-footer .footer-column li a {
  color: #a79ca8 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
}

.site-footer .footer-column li a:hover {
  color: #75f0a4 !important;
}

/* Newsletter */
.site-footer .footer-newsletter p {
  max-width: 340px !important;
  margin: 0 0 28px !important;
  color: #a79ca8 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.site-footer .sdc-newsletter-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 !important;
}

.site-footer .sdc-newsletter-form input {
  width: 100% !important;
  height: 54px !important;
  box-sizing: border-box !important;
  padding: 0 17px !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 14px !important;
}

.site-footer .sdc-newsletter-form input::placeholder {
  color: #a79ca8 !important;
}

.site-footer .sdc-newsletter-form button {
  width: 100% !important;
  height: 54px !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: #f7f2f7 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.site-footer .sdc-newsletter-form button:hover {
  background: #4a9967 !important;
  border-color: #4a9967 !important;
  color: #07100a !important;
}

.site-footer .footer-contact {
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
  margin-top: 28px !important;
}

.site-footer .footer-contact a {
  color: #a79ca8 !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

/* Bottom */
.site-footer .footer-bottom {
  margin-top: 55px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: #706673 !important;
  font-size: 11px !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr !important;
    gap: 38px !important;
  }

  .site-footer .footer-newsletter {
    grid-column: 1 / -1 !important;
    margin-top: 20px !important;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .site-footer {
    padding: 50px 22px 24px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .site-footer .footer-newsletter {
    grid-column: auto !important;
    margin-top: 0 !important;
  }

  .site-footer .footer-logo span,
  .site-footer .footer-logo strong {
    font-size: 34px !important;
  }
}

/* =========================================================
   FOOTER FINAL FIXES — logo image, white theme, pink/orange
   ========================================================= */

.site-footer {
  background: var(--cream, #fffdf9) !important;
  color: var(--ink, #111118) !important;
}

.site-footer .footer-logo {
  display: inline-flex !important;
  width: fit-content !important;
  height: auto !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
}

.site-footer .footer-logo img {
  display: block !important;
  width: 230px !important;
  height: auto !important;
  max-height: 115px !important;
  object-fit: contain !important;
}

.site-footer .footer-description,
.site-footer .footer-column li a,
.site-footer .footer-newsletter p,
.site-footer .footer-contact a {
  color: #5d5560 !important;
}

.site-footer h3 {
  color: var(--ink, #111118) !important;
}

.site-footer h3::after {
  background: var(--pink-strong, #ff6385) !important;
}

.site-footer .footer-column li::before {
  background: var(--pink-strong, #ff6385) !important;
}

.site-footer .footer-socials a {
  border-color: var(--line, #d4c9cf) !important;
  color: var(--ink, #111118) !important;
}

.site-footer .footer-socials a:hover {
  background: var(--pink, #fff0f6) !important;
  border-color: var(--pink-strong, #ff6385) !important;
  color: var(--pink-strong, #ff6385) !important;
}

.site-footer .sdc-newsletter-form input {
  height: 64px !important;
  min-height: 64px !important;
  border: 1px solid var(--line, #d4c9cf) !important;
  background: #fff !important;
  color: var(--ink, #111118) !important;
  border-radius: 10px !important;
  padding: 0 18px !important;
}

.site-footer .sdc-newsletter-form input::placeholder {
  color: #817783 !important;
}

.site-footer .sdc-newsletter-form button {
  height: 60px !important;
  min-height: 60px !important;
  border: 1px solid var(--ink, #111118) !important;
  background: var(--pink-strong, #ff6385) !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.site-footer .sdc-newsletter-form button:hover {
  background: var(--orange, #ff9d65) !important;
  border-color: var(--orange, #ff9d65) !important;
  color: #fff !important;
}

.site-footer .footer-bottom {
  border-top-color: var(--line, #d4c9cf) !important;
  color: #817783 !important;
}

@media (max-width: 700px) {
  .site-footer .footer-logo img {
    width: 190px !important;
    max-height: 100px !important;
  }

  .site-footer .sdc-newsletter-form input {
    height: 62px !important;
    min-height: 62px !important;
  }
}


/* FINAL FOOTER COLUMN ORDER + NEWSLETTER HEADING FIX */
@media (min-width: 1051px) {
  .site-footer .footer-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .site-footer .footer-know {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .site-footer .footer-information {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }

  .site-footer .footer-newsletter {
    grid-column: 4 !important;
    grid-row: 1 !important;
  }
}

.site-footer .footer-newsletter h3 {
  color: var(--ink, #111118) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  text-shadow: none !important;
}

.site-footer .footer-newsletter h3::after {
  background: var(--pink-strong, #ff6385) !important;
  opacity: 1 !important;
}

/* Keep the same order on tablet before stacking to mobile */
@media (min-width: 701px) and (max-width: 1050px) {
  .site-footer .footer-know {
    grid-column: 1 !important;
  }

  .site-footer .footer-information {
    grid-column: 2 !important;
  }

  .site-footer .footer-newsletter {
    grid-column: 1 / -1 !important;
  }
}


/* Center footer copyright */
.site-footer .footer-bottom {
  text-align: center !important;
}

/* =========================================================
   FINAL HEADER STICKY BEHAVIOR
   The logo/account row and navigation stay together.
   The top promotional bar remains normal flow and scrolls away.
   ========================================================= */

.site-topbar {
  position: relative !important;
  z-index: 1000 !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.site-header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  overflow: visible !important;
  width: 100% !important;
}

.site-header-main,
.sdc-header-row,
.sdc-header-columns {
  overflow: visible !important;
}

/* Keep the enlarged logo from increasing the header height. */
.sdc-header-columns {
  height: 62px !important;
  min-height: 62px !important;
}

.site-logo img {
  width: 175px !important;
  height: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

.site-navigation {
  position: relative !important;
  z-index: 10000 !important;
  overflow: visible !important;
}

/* Mega menus remain above the page while the whole header is sticky. */
.site-header .sdc-mega-panel,
.site-header .sdc-primary-nav .sub-menu {
  z-index: 10050 !important;
}

/* The old JS-created spacer is no longer needed. */
.sdc-primary-nav-spacer {
  display: none !important;
  height: 0 !important;
}

@media (max-width: 782px) {
  .sdc-header-columns {
    height: 68px !important;
    min-height: 68px !important;
  }

  .site-logo img {
    width: 144px !important;
    height: 54px !important;
    max-height: 54px !important;
  }
}

/* Hide the full header while the cart drawer is open. */
body.sdc-cart-open .site-topbar,
body.sdc-cart-open .site-header {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Keep the open cart above everything else. */
body.sdc-cart-open .cart-drawer {
  z-index: 100000 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Hide the complete header while cart drawer is open */
.cart-header-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

/* Keep cart drawer above everything */
.cart-drawer {
  z-index: 99999 !important;
}

.cart-is-open .sdc-sticky-bar {
  display: none !important;
}

/* Back to Top fallback styling */
#sdc-back-to-top {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 100000 !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border: 2px solid var(--pink-strong) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--pink-strong) !important;
  font-size: 25px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(43,16,54,.18) !important;
}

#sdc-back-to-top span {
  display: block;
  line-height: 1;
}

@media (max-width: 560px) {
  #sdc-back-to-top {
    right: 14px !important;
    bottom: 14px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 22px !important;
  }
}


/* =========================================================
   SHOP PAGE — RESULT COUNT + SORTING ALIGNMENT
   Keeps both controls aligned to the 1240px product grid.
   ========================================================= */

.woocommerce.archive .woocommerce-result-count,
.woocommerce.archive .woocommerce-ordering {
  box-sizing: border-box;
  max-width: none !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 42px;
}

.woocommerce.archive .woocommerce-result-count {
  float: left !important;
  width: auto !important;
  margin-left: max(24px, calc((100vw - 1240px) / 2 + 24px)) !important;
  color: #625963;
  font-size: 14px;
}

.woocommerce.archive .woocommerce-ordering {
  float: right !important;
  width: auto !important;
  margin-right: max(24px, calc((100vw - 1240px) / 2 + 24px)) !important;
}

.woocommerce.archive .woocommerce-ordering select {
  min-width: 190px;
  height: 42px;
  padding: 0 36px 0 14px;
  border: 1px solid #d4c9cf;
  border-radius: 6px;
  background: #fff;
  color: #111118;
  font-size: 13px;
}

/* Clear WooCommerce toolbar floats before the products begin. */
.woocommerce.archive ul.products::before,
.woocommerce.archive ul.products::after {
  display: table;
  content: "";
}

.woocommerce.archive ul.products::after {
  clear: both;
}

@media (max-width: 850px) {
  .woocommerce.archive .woocommerce-result-count,
  .woocommerce.archive .woocommerce-ordering {
    float: none !important;
    width: calc(100% - 48px) !important;
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .woocommerce.archive .woocommerce-result-count {
    margin-bottom: 8px !important;
  }

  .woocommerce.archive .woocommerce-ordering {
    margin-bottom: 18px !important;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .woocommerce.archive .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   PRODUCT PAGE — CONVERSION + LONG-DESCRIPTION SECTIONS
   ========================================================= */

.sdc-product-kicker {
  margin-bottom: 7px;
  color: #a95676;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.sdc-product-lede {
  max-width: 560px;
  margin: 0 0 20px;
  color: #5f555e;
  font-size: 16px;
  line-height: 1.65;
}

.sdc-stock-note-out {
  background: #f8f3f4;
  color: #5c5058;
  border-color: #ded3d8;
}

.sdc-stock-note-out strong { color: #8a3e58; }

.sdc-spec-list > div:first-child { padding-top: 0; }
.sdc-spec-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.sdc-spec-list dt { color: #625963; font-weight: 600; }
.sdc-spec-list dd { margin: 0; color: var(--ink); }

.sdc-product-benefits,
.sdc-product-comparison,
.sdc-product-review-callout,
.sdc-product-final-cta {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 24px;
}

.sdc-product-benefits { border-top: 1px solid #eadde3; }

.sdc-product-long-description {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 24px 18px;
  text-align: center;
}

.sdc-product-long-description .section-heading {
  max-width: 780px;
  margin: 0 auto;
}

.sdc-product-long-description-content {
  color: #625963;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

.sdc-product-long-description-content p,
.sdc-product-long-description-content ul,
.sdc-product-long-description-content ol {
  text-align: left;
}

.sdc-product-long-description-content ul,
.sdc-product-long-description-content ol {
  padding-left: 1.25em;
}


.sdc-product-long-description-content p {
  margin: 0 0 1em;
}

.sdc-product-long-description-content p:last-child {
  margin-bottom: 0;
}

.sdc-product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sdc-product-benefit-card {
  padding: 28px 24px;
  border: 1px solid #eadde3;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff8fa, #fffdf9);
  box-shadow: 0 10px 25px rgba(43, 16, 54, .05);
}

.product-benefit-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ffe2eb;
  color: #b34f72;
  font-size: 18px;
}

.sdc-product-benefit-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.sdc-product-benefit-card p {
  margin: 0;
  color: #625963;
  font-size: 14px;
  line-height: 1.7;
}

.sdc-product-comparison { max-width: 1080px; }

.sdc-product-comparison-table {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #eadde3;
  border-radius: 18px;
  background: #fff;
}

.sdc-comparison-row {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 16px 20px;
  border-top: 1px solid #eadde3;
}

.sdc-comparison-row:first-child { border-top: 0; }
.sdc-comparison-row span { color: #665a64; }
.sdc-comparison-row strong { color: var(--ink); font-weight: 700; }
.sdc-comparison-head { background: #fff4f7; }

.sdc-product-review-callout {
  max-width: 1080px;
  border-top: 1px solid #eadde3;
}

.sdc-product-review-callout .commentlist,
.sdc-product-review-callout .comment-respond {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.sdc-product-review-callout .comment-respond { margin-top: 30px; }

.sdc-product-final-cta {
  max-width: none;
  background: #f7f3ee;
  border-top: 1px solid rgba(35, 25, 35, .08);
  border-bottom: 1px solid rgba(35, 25, 35, .08);
  text-align: center;
}

.sdc-product-final-cta .section-heading { max-width: 720px; margin: 0 auto; }

.sdc-product-gallery .woocommerce-product-gallery__image a { display: block; }
.sdc-product-gallery .woocommerce-product-gallery__image img { width: 100%; border-radius: 18px; }
.sdc-product-gallery .flex-control-thumbs li img {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color .18s ease, transform .18s ease;
}
.sdc-product-gallery .flex-control-thumbs li img:hover {
  border-color: var(--pink-strong);
  transform: translateY(-1px);
}

.sdc-product-gallery .woocommerce-product-gallery__image > a {
  cursor: zoom-in;
}

.sdc-product-lightbox[hidden] {
  display: none !important;
}

.sdc-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.sdc-product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 24, .88);
  cursor: zoom-out;
}

.sdc-product-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1160px);
  max-height: 92vh;
}

.sdc-product-lightbox-figure {
  display: grid;
  justify-items: center;
  max-width: min(82vw, 980px);
  max-height: 92vh;
  margin: 0;
}

.sdc-product-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  object-fit: contain;
}

.sdc-product-lightbox-caption {
  max-width: 680px;
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.sdc-product-lightbox-close,
.sdc-product-lightbox-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(20, 12, 24, .72);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.sdc-product-lightbox-close:hover,
.sdc-product-lightbox-nav:hover,
.sdc-product-lightbox-close:focus-visible,
.sdc-product-lightbox-nav:focus-visible {
  background: var(--pink-strong);
  transform: scale(1.05);
}

.sdc-product-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.sdc-product-lightbox-nav {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin: 0 18px;
  font-size: 38px;
  line-height: .7;
}

body.sdc-lightbox-open {
  overflow: hidden;
}

@media (max-width: 850px) {
  .sdc-product-benefit-grid { grid-template-columns: 1fr; }
  .sdc-product-benefits,
  .sdc-product-comparison,
  .sdc-product-review-callout,
  .sdc-product-final-cta { padding-top: 58px; padding-bottom: 58px; }
}

@media (max-width: 560px) {
  .sdc-product-lede { font-size: 14px; }
  .sdc-spec-list > div { grid-template-columns: 1fr; gap: 3px; }
  .sdc-comparison-row { grid-template-columns: 1fr; gap: 5px; }

  .sdc-product-lightbox {
    padding: 14px;
  }

  .sdc-product-lightbox-dialog {
    width: 100%;
  }

  .sdc-product-lightbox-figure {
    max-width: calc(100vw - 84px);
  }

  .sdc-product-lightbox-nav {
    width: 38px;
    height: 38px;
    margin: 0 6px;
    font-size: 30px;
  }

  .sdc-product-lightbox-close {
    top: -12px;
    right: -4px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }
}

/* =========================================================
   PRODUCT PAGE — REFINED CONVERSION LAYOUT
   ========================================================= */

/* Give the main purchase area the same visual weight as the
   reference: larger gallery, clearer purchase column. */
.sdc-product-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.sdc-product-gallery {
  min-width: 0;
}

.sdc-product-summary {
  min-width: 0;
}

.sdc-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.sdc-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  border-radius: 20px;
  background: #fff8fa;
}

.sdc-product-gallery .flex-control-thumbs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sdc-product-gallery .flex-control-thumbs li img {
  border: 1px solid #eadde3;
  border-radius: 12px;
  background: #fff;
}

/* Rating and activity hierarchy */
.sdc-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  margin-bottom: 7px;
  color: #6c5d68;
  font-size: 12px;
}

.sdc-rating .sdc-stars {
  color: #f39a21;
  letter-spacing: 1px;
}

.sdc-rating strong {
  color: #1b1420;
  font-weight: 800;
}

/* Make title and price more prominent */
.sdc-product-summary .product_title {
  margin: 6px 0 12px;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.05;
}

.sdc-product-summary .price {
  margin: 0 0 14px;
  font-size: 20px !important;
}

.sdc-product-lede {
  max-width: 560px;
  margin: 0 0 18px;
  color: #5f555e;
  font-size: 15px;
  line-height: 1.65;
}

/* Purchase area */
.sdc-product-summary form.cart {
  gap: 10px;
  margin-bottom: 0;
}

.sdc-product-summary form.cart .quantity {
  flex: 0 0 72px;
}

.sdc-product-summary form.cart .quantity .qty {
  width: 72px;
  min-height: 50px;
  text-align: center;
}

.sdc-product-summary form.cart .button,
.sdc-product-summary form.cart .sdc-buy-now-button {
  min-height: 50px;
}

.sdc-product-summary form.cart .button {
  flex: 1 1 170px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #17121a;
}

.sdc-product-summary form.cart .sdc-buy-now-button {
  flex: 1 1 160px;
}


/* Affiliate / external product presentation */
body.product-type-external .sdc-stock-note {
  display: none !important;
}

body.product-type-external .sdc-regular-price-calculator {
  margin-bottom: 12px !important;
}

body.product-type-external .sdc-product-summary form.cart {
  display: block !important;
  margin-top: 0 !important;
}

body.product-type-external .sdc-product-summary form.cart .single_add_to_cart_button,
body.product-type-external .sdc-product-summary form.cart .button.alt {
  display: block !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--pink-strong, #e95174) !important;
  color: #fff !important;
  font-weight: 800 !important;
}

body.product-type-external .sdc-product-summary form.cart .single_add_to_cart_button:hover,
body.product-type-external .sdc-product-summary form.cart .button.alt:hover {
  background: #e95174 !important;
  color: #fff !important;
}

body.product-type-external .sdc-product-summary form.cart .quantity,
body.product-type-external .sdc-product-summary form.cart .sdc-buy-now-button {
  display: none !important;
}

/* Stronger guarantee row */
.sdc-promise-grid {
  margin: 22px 0 25px;
  gap: 8px;
}

.sdc-promise-grid div {
  padding: 10px 6px;
  border: 1px solid #eadde3;
  border-radius: 14px;
  background: #fff;
}

.sdc-promise-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.sdc-promise-grid span {
  font-size: 10px;
}

/* Better quick facts */
.sdc-product-quickfacts {
  gap: 10px;
  margin: 22px 0 8px;
}

.sdc-product-quickfacts > div {
  padding: 15px;
}

/* Make the accordions clean and compact */
.sdc-accordions {
  margin-top: 8px;
}

.sdc-accordions details {
  padding: 15px 0;
}

.sdc-accordions summary {
  font-weight: 600;
}

/* Benefit cards can carry actual gallery images. */
.sdc-product-benefit-grid {
  gap: 20px;
}

.sdc-product-benefit-card {
  overflow: hidden;
  padding: 0;
}

.sdc-product-benefit-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  background: #f7edf2;
}

.sdc-product-benefit-body {
  padding: 24px 22px 26px;
}

.sdc-product-benefit-card:not(.has-media) {
  padding: 26px 22px;
}

/* Comparison */
.sdc-product-comparison {
  max-width: 1120px;
}

.sdc-product-comparison-table {
  max-width: 980px;
}

/* Reviews */
.sdc-product-review-callout {
  max-width: 1120px;
}

.sdc-product-review-callout .commentlist,
.sdc-product-review-callout .comment-respond {
  max-width: 900px;
}

/* Related products get stronger hierarchy and card spacing. */
.sdc-related {
  max-width: 1240px;
  margin: 0 auto;
  padding: 68px 24px 20px;
}

.sdc-related .section-heading {
  margin-bottom: 30px;
}

.sdc-related ul.products {
  margin-bottom: 10px !important;
}

/* Final CTA */
.sdc-product-final-cta {
  max-width: none;
  padding-top: 76px;
  padding-bottom: 76px;
}

.sdc-final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sdc-final-cta-actions .home-final-cta-button {
  margin-top: 0;
}

.sdc-final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid #17121a;
  border-radius: 999px;
  background: #fff;
  color: #17121a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.sdc-final-cta-secondary:hover {
  color: #fff;
  background: #17121a;
}

/* Mobile */
@media (max-width: 850px) {
  .sdc-product-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sdc-product-summary .product_title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .sdc-product-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sdc-product-gallery .flex-control-thumbs {
    gap: 6px;
  }

  .sdc-product-gallery .flex-control-thumbs li img {
    border-radius: 9px;
  }

  .sdc-product-summary form.cart .quantity {
    flex: 0 0 62px;
  }

  .sdc-product-summary form.cart .quantity .qty {
    width: 62px;
  }

  .sdc-product-summary form.cart .button,
  .sdc-product-summary form.cart .sdc-buy-now-button {
    flex: 1 1 calc(50% - 40px);
    min-width: 120px;
  }

  .sdc-product-social-proof {
    gap: 6px;
  }

  .sdc-product-social-proof span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .sdc-product-benefit-body {
    padding: 20px 18px 22px;
  }

  .sdc-final-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sdc-final-cta-actions a {
    width: 100%;
  }

  .sdc-related {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* Product trust badge icons */
.sdc-promise-grid .promise-icon {
  display: block;
  width: 22px;
  height:   22px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.sdc-promise-grid strong {
  display: block;
  font-size: 11px;
  line-height: 1.25;
}

.sdc-promise-grid span {
  display: block;
  color: #6e6370;
  font-size: 10px;
  line-height: 1.25;
}

/* Wholesale pricing and quantity guidance */
.sdc-wholesale-summary {
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid #eadde3;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8fa, #fff);
}

.sdc-wholesale-eyebrow {
  margin: 0 0 10px;
  color: #8a3e58;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.sdc-wholesale-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.sdc-wholesale-price-grid > div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

.sdc-wholesale-price-grid span {
  color: #6e6370;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}

.sdc-wholesale-price-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.sdc-wholesale-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
}

.sdc-wholesale-rules > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #f0e6eb;
}

.sdc-wholesale-rules .sdc-wholesale-unit-rule {
  grid-column: 1 / -1;
}

.sdc-wholesale-rules dt,
.sdc-wholesale-rules dd {
  margin: 0;
  font-size: 12px;
}

.sdc-wholesale-rules dt {
  color: #6e6370;
}

.sdc-wholesale-rules dd {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.sdc-wholesale-picker {
  width: 100%;
  margin: 0 0 12px;
  padding: 13px 14px;
  border: 1px solid #eadde3;
  border-radius: 14px;
  background: #fff8fa;
}

.sdc-wholesale-picker-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
  margin-bottom: 9px;
}

.sdc-wholesale-picker-heading strong {
  font-size: 12px;
}

.sdc-wholesale-picker-heading span,
.sdc-wholesale-single-unit,
.sdc-wholesale-pack-note {
  margin: 0;
  color: #6e6370;
  font-size: 11px;
}

.sdc-wholesale-pack-note {
  margin-top: 8px;
  font-weight: 700;
}

.sdc-wholesale-unit-label {
  display: block;
  margin-bottom: 4px;
  color: #625963;
  font-size: 11px;
  font-weight: 700;
}

.sdc-wholesale-unit {
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #d1c9ce;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.sdc-wholesale-quantity-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 10px 0 0;
  color: #625963;
  font-size: 12px;
  font-weight: 700;
}

.sdc-wholesale-quantity-summary span {
  display: inline-flex;
  align-items: center;
}

.sdc-wholesale-quantity-summary span + span::before {
  content: '•';
  margin-right: 10px;
  color: #b9a9b1;
}

.sdc-wholesale-quantity-summary strong {
  margin-left: auto;
  color: #8a3e58;
  font-size: 13px;
}

.sdc-wholesale-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  color: #8a3e58;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.sdc-wholesale-collection-link:hover,
.sdc-wholesale-collection-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.woocommerce-error .sdc-wholesale-checkout-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-error .sdc-wholesale-checkout-link:hover,
.woocommerce-error .sdc-wholesale-checkout-link:focus-visible {
  text-decoration-thickness: 2px;
}

.sdc-wholesale-cart-progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 18px;
  margin: 0 0 18px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #fff8fa;
  color: #8a3e58;
}

.sdc-wholesale-cart-progress span {
  color: #625963;
  font-size: 13px;
}

.sdc-wholesale-cart-progress a {
  color: inherit;
  font-weight: 800;
  text-underline-offset: 2px;
}

.sdc-wholesale-cart-progress.is-complete {
  background: #f3fbf5;
  color: #28633a;
}

.sdc-wholesale-cart-progress.is-complete span {
  color: #3e7650;
}

@media (max-width: 560px) {
  .sdc-wholesale-price-grid,
  .sdc-wholesale-rules {
    grid-template-columns: 1fr;
  }

  .sdc-wholesale-picker-heading {
    display: grid;
  }
}

/* =========================================================
   REGULAR PRODUCT PRICE CALCULATOR
   ========================================================= */

.sdc-regular-price-calculator {
    display: block !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 16px 18px !important;
    box-sizing: border-box !important;

    border: 1px solid #eadde3 !important;
    border-radius: 14px !important;

    background: #fff8fa !important;
}

/* Heading */
.sdc-regular-price-calculator
.sdc-wholesale-picker-heading {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    margin: 0 0 12px !important;
    padding: 0 !important;
}

.sdc-regular-price-calculator
.sdc-wholesale-picker-heading strong {
    display: block !important;
    color: var(--ink, #2b1036) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.sdc-regular-price-calculator
.sdc-wholesale-picker-heading span {
    display: block !important;
    color: #6e6370 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: right !important;
}

/* Price row */
.sdc-regular-price-line {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 !important;

    border-top: 1px solid #f0e6eb !important;
}

.sdc-regular-price-line > span {
    display: block !important;
    color: #6e6370 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.sdc-regular-price-line > strong {
    display: block !important;
    color: var(--ink, #2b1036) !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    text-align: right !important;
}

.sdc-regular-price-line > strong small {
    color: #6e6370 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* Quantity / total summary */
.sdc-regular-price-calculator
[data-sdc-regular-summary] {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    width: 100% !important;
    min-height: 42px !important;

    margin: 8px 0 0 !important;
    padding: 12px 0 0 !important;

    border-top: 1px solid #f0e6eb !important;

    color: #6e6370 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.sdc-regular-price-calculator
[data-sdc-regular-summary] span {
    display: inline-block !important;
    margin: 0 !important;
}

.sdc-regular-price-calculator
[data-sdc-regular-summary] strong {
    display: inline-block !important;

    margin-left: auto !important;

    color: var(--ink, #2b1036) !important;
    font-size: 16px !important;
    font-weight: 800 !important;

    white-space: nowrap !important;
}

/* Mobile */
@media (max-width: 600px) {

    .sdc-regular-price-calculator {
        padding: 14px !important;
    }

    .sdc-regular-price-calculator
    .sdc-wholesale-picker-heading {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .sdc-regular-price-calculator
    .sdc-wholesale-picker-heading span {
        text-align: left !important;
    }

    .sdc-regular-price-line {
        align-items: flex-start !important;
    }

    .sdc-regular-price-line > strong {
        font-size: 17px !important;
    }

    .sdc-regular-price-calculator
    [data-sdc-regular-summary] {
        flex-wrap: wrap !important;
    }

    .sdc-regular-price-calculator
    [data-sdc-regular-summary] strong {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* =========================================================
   MEGA MENU — FIX PRODUCT CARD TITLE OVERLAPPING
   ========================================================= */

.sdc-primary-nav .sdc-mega-product-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  color: var(--ink) !important;
  font-size: inherit !important;
  line-height: normal !important;

  white-space: normal !important;
  text-decoration: none !important;
}

.sdc-primary-nav .sdc-mega-product-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.05 !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: cover !important;
}

.sdc-primary-nav .sdc-mega-product-card span {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 10px 0 0 !important;
  padding: 0 !important;

  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;

  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

/* Keep the three featured cards properly separated */
.sdc-primary-nav .sdc-mega-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}

.sdc-primary-nav .sdc-mega-product-grid > * {
  min-width: 0 !important;
}

/* Prevent the global navigation link styling from affecting
   anything inside the mega menu */
.sdc-primary-nav .sdc-mega-panel a {
  white-space: normal !important;
  padding: 0 !important;
}

/* Product titles should never visually escape their card */
.sdc-primary-nav .sdc-mega-product-card span {
  overflow: hidden !important;
}

/* Desktop only */
@media (min-width: 851px) {
  .sdc-primary-nav .sdc-mega-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

/* =========================================================
   SEARCH PANEL — FIXED BELOW STICKY HEADER
   Prevent the search bar from being cut off by the header.
   ========================================================= */

.search-panel {
  position: fixed !important;
  top: 132px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10001 !important;
  box-sizing: border-box !important;
  max-height: calc(100vh - 132px) !important;
  overflow-y: auto !important;
}

/* Keep the search form fully visible */
.search-panel form {
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.search-panel .search-row {
  position: relative !important;
  z-index: 1 !important;
}

/* Search results stay inside the panel */
.search-panel .search-results {
  position: relative !important;
  z-index: 2 !important;
}

/* Mobile header is shorter because the desktop navigation is hidden */
@media (max-width: 850px) {
  .search-panel {
    top: 68px !important;
    max-height: calc(100vh - 68px) !important;
  }
}

/* Very small screens */
@media (max-width: 560px) {
  .search-panel {
    top: 68px !important;
    max-height: calc(100vh - 68px) !important;
    padding: 18px !important;
  }
}


/* =========================================================
   AFFILIATE ORDER NOW — MOBILE STICKY CTA
   ========================================================= */

@media (max-width: 700px) {
  body.sdc-affiliate-product .sdc-product-summary form.cart {
    padding-bottom: 74px !important;
  }

  body.sdc-affiliate-product .sdc-product-summary form.cart
  .single_add_to_cart_button {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    z-index: 99990 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: calc(100vw - 24px) !important;
    min-height: 56px !important;
    margin: 0 !important;
    box-sizing: border-box !important;

    /* Preserve the existing button styling while making it viewport-fixed. */
    border-radius: 999px !important;
    box-shadow: 0 8px 24px rgba(17, 17, 24, .22) !important;
  }

  /*
   * The affiliate implementation may turn the CTA into an anchor. Keep the
   * same sticky treatment for that case too.
   */
  body.sdc-affiliate-product .sdc-product-summary
  a.single_add_to_cart_button {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    z-index: 99990 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: calc(100vw - 24px) !important;
    min-height: 56px !important;
    margin: 0 !important;
    box-sizing: border-box !important;

    border-radius: 999px !important;
    box-shadow: 0 8px 24px rgba(17, 17, 24, .22) !important;
  }
}


/* =========================================================
   MOBILE PRODUCT GALLERY — REAL SWIPE CAROUSEL
   ========================================================= */

.sdc-mobile-product-gallery {
  display: none;
}

@media (max-width: 700px) {
  .sdc-desktop-product-gallery {
    display: none !important;
  }

  .sdc-mobile-product-gallery {
    display: block !important;
    width: 100%;
  }

  .sdc-mobile-product-gallery-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x;
    border-radius: 18px;
  }

  .sdc-mobile-product-gallery-track::-webkit-scrollbar {
    display: none;
  }

  .sdc-mobile-product-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
  }

  .sdc-mobile-product-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    border-radius: 18px;
    background: #fff8fa;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }

  .sdc-mobile-product-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
  }

  .sdc-mobile-product-gallery-dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4c9cf;
  }

  .sdc-mobile-product-gallery-dots span.is-active {
    width: 18px;
    border-radius: 99px;
    background: var(--pink-strong);
  }
}

/* Final mobile footer: 2 x 2 layout */
@media (max-width: 560px) {
  .site-footer { padding: 42px 16px 22px; }
  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 14px !important;
    align-items: start !important;
  }
  .site-footer .footer-brand {
    grid-column: 1 !important; grid-row: 1 !important; min-width: 0 !important;
    padding: 12px 14px 18px !important;
  }
  .site-footer .footer-logo { margin-bottom: 16px !important; }
  .site-footer .footer-logo img { width: 100% !important; max-width: 145px !important; height: auto !important; }
  .site-footer .footer-description { max-width: none !important; font-size: 12px !important; line-height: 1.55 !important; }
  .site-footer .footer-socials { gap: 6px !important; margin-top: 18px !important; padding-top: 0 !important; }
  .site-footer .footer-socials a { min-width: 0 !important; height: 32px !important; padding: 0 7px !important; font-size: 9px !important; }
  .site-footer .footer-know { grid-column: 2 !important; grid-row: 1 !important; min-width: 0 !important; margin: 0 !important; padding: 16px 14px !important; }
  .site-footer .footer-contact-info { grid-column: 1 !important; grid-row: 2 !important; min-width: 0 !important; margin: 0 !important; padding: 16px 14px !important; }
  .site-footer .footer-information { grid-column: 2 !important; grid-row: 2 !important; min-width: 0 !important; margin: 0 !important; padding: 16px 14px !important; }
  .site-footer .footer-grid > .footer-shop,
  .site-footer .footer-grid > .footer-info,
  .site-footer .footer-grid > .footer-help,
  .site-footer .footer-newsletter { grid-column: auto !important; grid-row: auto !important; margin: 0 !important; }
  .site-footer h3 { margin-bottom: 11px !important; font-size: 11px !important; letter-spacing: .8px !important; }
  .site-footer ul { font-size: 11px !important; line-height: 1.45 !important; }
  .site-footer li + li { margin-top: 7px !important; }
  .site-footer .footer-contact { gap: 8px !important; font-size: 10px !important; overflow-wrap: anywhere !important; word-break: break-word !important; }
  .site-footer .footer-contact a { overflow-wrap: anywhere !important; word-break: break-word !important; }
  .site-footer .footer-bottom { grid-column: 1 / -1 !important; margin-top: 4px !important; padding-top: 16px !important; font-size: 10px !important; text-align: center !important; }
}

/* =========================================================
   HOMEPAGE HERO — SINGLE SHOP BUTTON
   ========================================================= */

/* Keep only the first hero CTA visible. */
.hero-overlay .hero-cta ~ .hero-cta,
.hero-overlay .shop-button ~ .shop-button {
  display: none !important;
}

/* Style the remaining button. */
.hero-overlay .hero-cta:first-child,
.hero-overlay .shop-button:first-child {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #ff7c19;
  color: #161017 !important;
  font-size: 16px !important;
  font-weight: 800;
  letter-spacing: 1.2px;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: 0 5px 0 rgba(255, 212, 153, .8),
              0 10px 24px rgba(0,0,0,.2);
}

/* Change the visible text to the requested wording. */
.hero-overlay .hero-cta:first-child,
.hero-overlay .shop-button:first-child {
  font-size: 0 !important;
}

.hero-overlay .hero-cta:first-child::after,
.hero-overlay .shop-button:first-child::after {
  content: "Shop Squishy Dumplings →";
  font-size: 16px;
  line-height: 1;
}

.hero-overlay .hero-cta:first-child:hover,
.hero-overlay .shop-button:first-child:hover {
  color: #161017 !important;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .hero-overlay .hero-cta:first-child,
  .hero-overlay .shop-button:first-child {
    min-height: 50px;
    padding: 12px 24px;
  }

  .hero-overlay .hero-cta:first-child::after,
  .hero-overlay .shop-button:first-child::after {
    font-size: 13px;
  }
}

/* =========================================================
   FOOTER — DESKTOP/TABLET FINAL SPACING + CENTERED LOGO
   Mobile will be handled separately afterward.
   ========================================================= */

@media (min-width: 701px) {
  /* Reduce the overall top and bottom whitespace. */
  .site-footer {
    padding-top: 34px !important;
    padding-bottom: 14px !important;
  }

  /* Keep the complete footer content compact. */
  .site-footer .footer-grid {
    row-gap: 18px !important;
  }

  /* Center the logo within the brand area. */
  .site-footer .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 12px !important;
    padding-bottom: 14px !important;
  }

  .site-footer .footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 0 12px !important;
  }

  .site-footer .footer-logo img {
    display: block !important;
    width: 145px !important;
    max-width: 145px !important;
    height: auto !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
  }

  /* Center the description with the centered logo. */
  .site-footer .footer-description {
    max-width: 230px !important;
    margin: 0 auto !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }

  .site-footer .footer-socials {
    justify-content: center !important;
    margin-top: 14px !important;
    padding-top: 0 !important;
  }

  /* Tighten the remaining footer panels. */
  .site-footer .footer-grid > .footer-column,
  .site-footer .footer-newsletter {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .site-footer .footer-bottom {
    margin-top: 22px !important;
    padding-top: 12px !important;
  }
}

/* Tablet keeps the same compact treatment. */
@media (min-width: 701px) and (max-width: 1050px) {
  .site-footer {
    padding-top: 30px !important;
    padding-bottom: 12px !important;
  }

  .site-footer .footer-logo img {
    width: 135px !important;
    max-width: 135px !important;
    max-height: 68px !important;
  }

  .site-footer .footer-description {
    max-width: 215px !important;
    font-size: 11px !important;
  }

  .site-footer .footer-bottom {
    margin-top: 18px !important;
    padding-top: 10px !important;
  }
}

/* =========================================================
   FOOTER — MOBILE FINAL
   Matches desktop compact/centered treatment while keeping
   the requested 2 x 2 footer layout.

   Top:    Brand | Know Us
   Bottom: Information | Contact Info
   ========================================================= */

@media (max-width: 700px) {
  .site-footer {
    padding: 28px 12px 12px !important;
  }

  .site-footer .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 12px !important;
    row-gap: 22px !important;
    width: 100% !important;
    align-items: start !important;
  }

  /* Brand — top left */
  .site-footer .footer-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 6px 10px !important;
    border: 0 !important;
  }

  /* Center and reduce logo. */
  .site-footer .footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 125px !important;
    margin: 0 auto 10px !important;
  }

  .site-footer .footer-logo img {
    display: block !important;
    width: 110px !important;
    max-width: 110px !important;
    height: auto !important;
    max-height: 58px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  /* Center and reduce description. */
  .site-footer .footer-description {
    width: 100% !important;
    max-width: 145px !important;
    margin: 0 auto !important;
    font-size: 9px !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  /* Center socials under the description. */
  .site-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 100% !important;
    margin: 12px auto 0 !important;
    padding: 0 !important;
  }

  .site-footer .footer-socials a {
    min-width: 34px !important;
    height: 26px !important;
    padding: 0 7px !important;
    font-size: 7px !important;
  }

  /* Know Us — top right */
  .site-footer .footer-know {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 4px 10px !important;
    border: 0 !important;
  }

  /* Information — bottom left */
  .site-footer .footer-information {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 4px 10px !important;
    border: 0 !important;
  }

  /* Contact Info — bottom right */
  .site-footer .footer-contact-info {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 4px 10px !important;
    border: 0 !important;
  }

  /* Prevent old footer columns from changing the mobile grid. */
  .site-footer .footer-shop,
  .site-footer .footer-info,
  .site-footer .footer-help,
  .site-footer .footer-newsletter {
    display: none !important;
  }

  /* Compact, consistent headings. */
  .site-footer h3 {
    margin: 0 0 12px !important;
    padding: 0 0 8px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
  }

  .site-footer h3::after {
    left: 0 !important;
    bottom: 0 !important;
    width: 42px !important;
    height: 2px !important;
  }

  /* Compact links. */
  .site-footer ul {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-footer li + li {
    margin-top: 7px !important;
  }

  .site-footer li a {
    display: block !important;
    width: 100% !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  /* Contact emails remain readable. */
  .site-footer .footer-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .site-footer .footer-contact a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 8px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  /* Compact copyright area. */
  .site-footer .footer-bottom {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    margin: 4px 0 0 !important;
    padding: 11px 0 0 !important;
    text-align: center !important;
    font-size: 8px !important;
    line-height: 1.35 !important;
  }
}