/* ============================================================
   SORAYA ESSENTIALS — Shared Stylesheet
   css/style.css
   ============================================================ */


/* === FONTS === */
@font-face {
  font-family: 'Museo';
  src: url('../fonts/Museo300-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Museo';
  src: url('../fonts/Museo700-Regular.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-lightitalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-regularitalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cover Sans';
  src: url('../fonts/coversans-mediumitalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}


/* === DESIGN TOKENS === */
:root {
  --font-headline: 'Museo', 'Playfair Display', Georgia, serif;
  --font-head-md:  'Cover Sans', 'Jost', sans-serif;
  --font-body:     'Cover Sans', 'Jost', sans-serif;
  --font-light:    'Cover Sans', 'Jost', sans-serif;

  --linen:       #F5F0E8;
  --almond:      #EDE4D3;
  --oat:         #D9CEBC;
  --white:       #FAFAF7;
  --cocoa:       #5C4033;
  --clay:        #A08878;
  --taupe:       #8C7B6E;
  --lavender:    #9B8FA8;
  --lavender-lt: #D4CEDD;
  --olive:       #7A8C6A;
  --olive-lt:    #C4CDB8;
  --earth:       #6B4F3A;
  --dark:        #2E2520;
  --text-mid:    #5C4E45;
  --text-light:  #9B8D85;

  --pill: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden;}
img { max-width: 100%; height: auto; display: block; }


/* === BASE === */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.woocommerce-account .woocommerce-page-wrap {
    padding-top: 80px;
}
/* Login page: shell already handles nav clearance — remove wrapper offset */
.page-account .woocommerce-page-wrap { padding-top: 0; }
a {
    color: #342520;
}
.soraya-account-nav li, .soraya-account-nav .woocommerce-MyAccount-navigation-link{
  float:left;
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 100%;
    margin-top: 8px;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1100px) { .container { padding-inline: 44px; } }
@media (max-width: 600px)  { .container { padding-inline: 20px; } }

.container--narrow {
  max-width: 800px;
}


/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 max(20px, calc((100% - 1380px) / 2 + 80px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 247, .93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(90, 64, 51, .07);
  box-shadow: 0 2px 20px rgba(44, 30, 20, .06);
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-nav__logo-mark {
  width: 30px;
  height: 34px;
  flex-shrink: 0;
}

.site-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav__logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.mnd-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }

.site-nav__logo-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--dark);
}

.site-nav__logo-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 8px;
  letter-spacing: .34em;
  color: var(--clay);
  text-transform: uppercase;
  margin-top: 1px;
}

.site-nav__links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.woocommerce-cart-form table.shop_table.shop_table_responsive {
    border: 1px solid var(--oat);
    border-radius: 10px;
}
.woocommerce table.shop_table td{
  border-bottom:0px solid var(--oat);
}
table.shop_table th{
  border-bottom: 0px !important;
}
.woocommerce-order-details .od-header{
  border:0;
}
.confirm-badge {
    margin-top: 50px;
}
img.about-hero-art {
    position: absolute;
    top: 0;
    left: -230px;
}

.site-nav__links a {
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}

/* Expanding underline — grows from centre on hover, stays full-width on active */
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--cocoa);
  transition: left .22s ease, right .22s ease;
}

.site-nav__links a:hover::after {
  left: 0;
  right: 0;
}

.site-nav__links a[aria-current="page"],
.site-nav__links .current-menu-item > a {
  color: var(--cocoa);
}

.site-nav__links a[aria-current="page"]::after,
.site-nav__links .current-menu-item > a::after {
  left: 0;
  right: 0;
}

/* wp_nav_menu() resets */
.site-nav__links { padding: 0; margin: 0; }

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
}

.site-nav__icon-btn:hover { color: var(--cocoa); }

.site-nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
}

.site-nav__cart-count {
  background: var(--cocoa);
  color: var(--linen);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav { padding: 0 20px; }
  .site-nav__desktop-only { display: none !important; }
}

/* ============================================================
   MOBILE NAV — HAMBURGER BUTTON
   ============================================================ */
.site-nav__hamburger {
  display: none; /* shown via mobile media query below */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  color: var(--dark);
  transition: background .18s;
}
.site-nav__hamburger:hover { background: rgba(44, 30, 20, .07); }
.site-nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .26s ease, opacity .26s ease, width .26s ease;
  transform-origin: center;
}
/* Morph to × when open */
.site-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.site-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.site-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-nav__hamburger { display: flex; }
}

/* ============================================================
   MOBILE NAV — OVERLAY + DRAWER
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(44, 30, 20, .46);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  width: min(340px, 88vw);
  background: var(--linen);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(44, 30, 20, .2);
  transform: translateX(102%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
}

/* Prevent body scroll while drawer is open */
body.nav-open { overflow: hidden; }

/* ── Drawer header (logo + close) ── */
.mnd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(90, 64, 51, .1);
  flex-shrink: 0;
}
.mnd-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.mnd-logo-name {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--dark);
  letter-spacing: .03em;
}
.mnd-logo-sub {
  font-family: var(--font-light);
  font-size: 8px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 3px;
}
.mnd-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.mnd-close:hover { background: rgba(44, 30, 20, .07); color: var(--dark); }

/* ── Nav links ── */
.mnd-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
}
.mnd-links a {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 64, 51, .07);
  transition: color .2s, background .2s, padding-left .2s;
}
.mnd-links a:last-child { border-bottom: none; }
.mnd-links a:hover,
.mnd-links a[aria-current="page"] {
  color: var(--cocoa);
  background: rgba(92, 64, 51, .05);
  padding-left: 28px;
}
.mnd-links a[aria-current="page"]::before {
  content: '✦';
  font-size: 8px;
  margin-right: 10px;
  color: var(--cocoa);
  flex-shrink: 0;
}
.mnd-links a::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: auto;
  opacity: .35;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.mnd-links a:hover::after { opacity: .8; transform: rotate(45deg) translate(2px, -2px); }

/* wp_nav_menu() output inside mobile drawer */
.mnd-links__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mnd-links__menu li { margin: 0; }
.mnd-links__menu a { display: flex; align-items: center; padding: 15px 22px; font-family: var(--font-head-md); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); text-decoration: none; border-bottom: 1px solid rgba(90,64,51,.07); transition: color .2s, background .2s, padding-left .2s; }
.mnd-links__menu li:last-child > a { border-bottom: none; }
.mnd-links__menu a:hover,
.mnd-links__menu .current-menu-item > a { color: var(--cocoa); background: rgba(92,64,51,.05); padding-left: 28px; }
.mnd-links__menu .current-menu-item > a::before { content: '✦'; font-size: 8px; margin-right: 10px; color: var(--cocoa); flex-shrink: 0; }

/* ── Drawer footer (CTA + account) ── */
.mnd-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid rgba(90, 64, 51, .1);
  flex-shrink: 0;
}
.mnd-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}
.mnd-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.mnd-account:hover { color: var(--cocoa); background: rgba(92, 64, 51, .05); }


/* === FOOTER === */
.site-footer {
  background: var(--dark);
  padding: 56px 0 36px;
}

.site-footer__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 48px;
}
/* Information column hidden; QA is now a regular 4th column child */
.site-footer__qa { grid-column: unset; margin-top: 0; width: auto; }

.site-footer__logo-name {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--linen);
}

.site-footer__logo-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 8px;
  letter-spacing: .34em;
  color: var(--clay);
  text-transform: uppercase;
}

.site-footer__tagline {
  margin-top: 16px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12.5px;
  color: rgba(245, 240, 232, .4);
  line-height: 1.7;
  max-width: 230px;
}

.site-footer__col-heading {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12.5px;
  color: rgba(245, 240, 232, .4);
  text-decoration: none;
  transition: color .2s;
}

.site-footer__links a:hover { color: var(--linen); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
img.ingr-hero-art {
    position: absolute;
    left: -20%;
    max-width: 200px;
    opacity: 0.75;
    top: 10px;
}
.site-footer__copy {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: rgba(245, 240, 232, .25);
  max-width: 560px;
  line-height: 1.6;
}

.site-footer__legal {
  display: flex;
  gap: 22px;
}

.site-footer__legal a {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: rgba(245, 240, 232, .25);
  text-decoration: none;
}

.site-footer__legal a:hover { color: var(--almond); }

.site-footer__legal-menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.site-footer__legal-menu li { margin: 0; padding: 0; }
.site-footer__legal-menu a { font-family: var(--font-light); font-weight: 300; font-size: 11px; color: rgba(245,240,232,.25); text-decoration: none; }
.site-footer__legal-menu a:hover { color: var(--almond); }

@media (max-width: 1100px) {
  .site-footer__inner { padding: 0 44px; }
  .site-footer__columns { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-footer { padding: 48px 0 30px; }
  .site-footer__inner { padding: 0 20px; width: 100%; box-sizing: border-box; }
  /* Brand spans full width; Explore, Get In Touch, QA in 3 equal columns below */
  .site-footer__columns { grid-template-columns: 1fr 1fr 1fr; width: 100%; }
  .site-footer__columns > div:first-child { grid-column: span 3; }
  .site-footer__qa { grid-column: 1 / -1; margin-top: 4px; width: 100%; }
  .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s, border-color .25s, color .25s;
}

fieldset {
    padding: 20px 20px;
    margin-bottom: 20px;
    border: 1px solid #d9cebc;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
    border-radius: 50px;
}
.btn--primary, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button {
  padding: 14px 36px;
  background: var(--cocoa);
  color: var(--linen);
}
.wc-empty-cart-message{
  display: none;
}
.btn--primary:hover {
  background: var(--earth);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(92,64,51,.25);
}

.btn--outline {
  padding: 13px 30px;
  background: transparent;
  color: var(--cocoa);
  border: 1.5px solid var(--oat);
  letter-spacing: .2em;
}

.btn--outline:hover {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--linen);
}


/* === WAVE DIVIDERS === */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -2px;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
}


/* === EYEBROW === */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.eline {
  width: 26px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

.eyebrow span {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
}


/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: .07s; }
.reveal--delay-2 { transition-delay: .14s; }
.reveal--delay-3 { transition-delay: .21s; }
.reveal--delay-4 { transition-delay: .28s; }

/* Legacy delay helpers used in existing markup */
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }


/* === DECORATIVE BLOBS === */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-blob--lavender {
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%);
  opacity: .4;
}

.deco-blob--olive {
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%);
  opacity: .3;
}


/* === SECTION HEADINGS === */
.section-heading__title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-heading__title em {
  font-style: italic;
  color: var(--olive);
}

.section-heading__subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}


/* === SPLIT HERO (ingredients + packages) === */
.split-hero {
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.woocommerce div.product, .breadcrumb-bar, 
.woocommerce-tabs > .tabs-nav, .woocommerce-tabs > .tab-panel {
    max-width: 1380px;
    margin: 0 auto;
}
.woocommerce-tabs > .tabs-nav {
    margin-bottom: 45px;
}
.woocommerce-tabs > .tabs-nav, .woocommerce-tabs > .tab-panel{
    margin-left: 80px;
    margin-right: 80px;
}
.split-hero__inner {
  display: flex;
  align-items: stretch;
  gap: 72px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 72px 80px 0 80px;
}

.split-hero__blob-1 {
  position: absolute;
  top: -80px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%);
  opacity: .26;
  pointer-events: none;
}

.split-hero__blob-2 {
  position: absolute;
  bottom: -60px; left: 200px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%);
  opacity: .28;
  pointer-events: none;
}

.split-hero__content {
  flex: 1;
  padding: 80px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  min-width: 0;
}

.split-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.split-hero__breadcrumb a {
  color: var(--clay);
  text-decoration: none;
}

.split-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.split-hero__title em {
  font-style: italic;
  color: var(--olive);
}

.split-hero__subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  z-index: 10;
  max-width: 480px;
  margin-bottom: 28px;
}

.split-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.split-hero__stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--oat);
}

.split-hero__stat {
  flex: 1;
  padding-right: 24px;
}

.split-hero__stat:not(:last-child) {
  border-right: 1px solid var(--oat);
  margin-right: 24px;
}

.split-hero__stat-val {
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 400;
  color: var(--cocoa);
  line-height: 1;
  margin-bottom: 5px;
}

.split-hero__stat-lbl {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.split-hero__image-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.split-hero__image-frame {
  width: 670px;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  /*box-shadow: 0 20px 64px rgba(44, 30, 20, .15);*/
  flex-shrink: 0;
  background: var(--almond);
}
img.package-hero-art {
    position: absolute;
    left: -39%;
    max-width: 350px;
    top: -70px;
}

.split-hero__image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}

.split-hero__image-frame:hover img { transform: scale(1.03); }

@media (max-width: 1100px) {
  .split-hero__inner { padding: 72px 44px 0; gap: 48px; }
  .split-hero__image-frame { width: 320px; height: 440px; }
}

@media (max-width: 900px) and (min-width: 601px) {
  .split-hero__inner { flex-direction: column; padding: 72px 32px 0; gap: 0; }
  .split-hero__content { padding: 52px 0 44px; }
  .split-hero__image-col { width: 100%; justify-content: center; padding: 0 0 52px; }
  .split-hero__image-frame { width: 100%; max-width: 480px; height: 420px; border-radius: 20px; }
  .split-hero__stats { flex-wrap: wrap; gap: 20px; }
  .split-hero__stat {
    flex: unset;
    width: calc(50% - 10px);
    padding-right: 0;
    border-right: none !important;
    margin-right: 0 !important;
    border-bottom: 1px solid var(--oat);
    padding-bottom: 16px;
  }
}

/* Mobile-only elements — hidden on larger screens */
.split-hero__image-mobile { display: none; }
img.package-hero-art--mobile { display: none; }
img.ingr-hero-art--mobile { display: none; }
img.about-hero-art--mobile { display: none; }
.ah-image-mobile { display: none; }

@media (max-width: 600px) {
  .split-hero__inner { padding: 60px 20px 0; flex-direction: column; gap: 0; }
  .split-hero__content { padding: 40px 0 32px; overflow: visible; width: 100%; }
  .split-hero__title, .split-hero__subtitle { width: 100%; max-width: 100%; }
  img.package-hero-art--mobile, img.ingr-hero-art--mobile, img.about-hero-art--mobile {  display: block;
        position: absolute;
        top: 30px;
        right: initial;
        max-width: 50%;
        left: 60%;
        opacity: 1;}

  /* Show mobile image block, hide original image col */
  .split-hero__image-mobile { display: block; margin: 16px 0 20px; position: relative; }
  .split-hero__image-col { display: none; }

  /* ingr-hero-art--mobile: hidden on mobile — full-width stacked layout */
    .woocommerce-tabs > .tabs-nav, .woocommerce-tabs > .tab-panel{
      margin-left: 0px;
              margin-right: 0;
    }
    .tab-btn {
    padding: 14px 13px;
    }

    .split-hero__actions {
    display: flex;
    gap: 12px;
    /* flex-wrap: wrap; */
    position: relative;
}
.split-hero__actions a {
    padding: 14px 26px;
}

  /* package-hero-art--mobile: hidden on mobile — full-width stacked layout */

  .split-hero__image-mobile .split-hero__image-frame {
    width: 100%;
    height: 200px;
    border-radius: 16px;
  }

  /* Stats: all 3 in a single row, no wrapping */
  .split-hero__stats {
    flex-wrap: nowrap;
    gap: 6px;
  }
  .split-hero__stat {
    flex: 1;
    width: auto !important;
    padding-right: 0;
    padding-bottom: 0;
    border-right: none !important;
    margin-right: 0 !important;
    border-bottom: none !important;
  }
  .split-hero__stat-val { font-size: 16px; }
  .split-hero__stat-lbl { font-size: 9px; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  padding: 140px 0 80px;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.about-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.about-hero__blob-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%);
  opacity: .4;
  pointer-events: none;
}

.about-hero__blob-2 {
  position: absolute;
  bottom: -60px; left: 0;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%);
  opacity: .3;
  pointer-events: none;
}

.about-hero__left {
  position: relative;
  z-index: 1;
}

.about-hero__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.about-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-hero__right {
  position: relative;
  z-index: 1;
}

.story-img {
  border-radius: 24px;
  overflow: hidden;
  background: var(--almond);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-img__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--almond), #ddd3be);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.site-footer__social-link svg {
    width: 17px;
}
.story-img__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250, 250, 247, .9);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
}

.story-img__badge-main {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--cocoa);
}

.story-img__badge-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

/* About — Story */
.about-story {
  background: var(--white);
  padding: 80px 0;
}

.about-story__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-story__lead {
  font-family: var(--font-headline);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: italic;
}

.about-story__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}

/* About — Values */
.about-values {
  background: var(--linen);
  padding: 80px 0;
}

.about-values__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.val-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 26px;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(44, 30, 20, .1);
}

.val-card__icon {
  width: 48px;
  height: 52px;
  margin-bottom: 18px;
}

.val-card__name {
  font-family: var(--font-head-md);
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
}

.val-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* About — Quality */
.about-quality {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-quality__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-quality__bg-word {
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-headline);
  font-size: 180px;
  font-weight: 700;
  color: rgba(255, 255, 255, .025);
  pointer-events: none;
  white-space: nowrap;
}

.about-quality__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-quality__title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--linen);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-quality__title em { font-style: italic; color: var(--clay); }

.about-quality__body {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(245, 240, 232, .6);
  line-height: 1.8;
}

.about-quality__body + .about-quality__body { margin-top: 16px; }

.aq-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aq-stat {
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s;
}

.aq-stat:hover { background: rgba(255, 255, 255, .09); }

.aq-stat__value {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 400;
  color: var(--clay);
  margin-bottom: 5px;
}

.aq-stat__label {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(205, 185, 170, .55);
}

.aq-stat__desc {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12px;
  color: rgba(205, 185, 170, .45);
  line-height: 1.6;
  margin-top: 6px;
}

/* About — CTA */
.about-cta {
  background: var(--linen);
  padding: 72px 0;
  text-align: center;
}

.about-cta__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.about-cta__title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}

.about-cta__title em { font-style: italic; color: var(--olive); }

.about-cta__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

.about-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* About — responsive */
@media (max-width: 1100px) {
  .about-hero__inner,
  .about-story__inner,
  .about-values__inner,
  .about-quality__inner,
  .about-cta__inner { padding-left: 32px; padding-right: 32px; }
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__right { display: none; }
  .about-quality__layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-cta__actions { flex-direction: column; }
}


/* ============================================================
   INGREDIENTS PAGE
   ============================================================ */

/* Ingredients — editorial section */
.ing-editorial {
  padding: 72px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.ing-editorial__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.ing-editorial__layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 72px;
  align-items: start;
}

.ing-editorial__left { position: relative; }

.ing-bot-art {
  position: absolute;
  top: -10px; right: -10px;
  opacity: .1;
  pointer-events: none;
  user-select: none;
}

/* Editorial left — simple row */
.ing-simple-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.ing-simple-ico {
  width: 20px;
  height: 22px;
  flex-shrink: 0;
  opacity: .7;
}

.ing-simple-text { display: flex; flex-direction: column; gap: 3px; }

.ing-simple-lbl {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
}

.ing-simple-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--text-light);
}

/* Formulated Without panel */
.fw-panel {
  background: rgba(245, 240, 232, .85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(217, 206, 188, .5);
  box-shadow: 0 4px 24px rgba(44, 30, 20, .05);
}

.fw-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.fw-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--oat);
}

.fw-eyebrow span {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.fw-title {
  font-family: var(--font-headline);
  font-size: 21px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 16px;
}

.fw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.fw-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: var(--pill);
  background: var(--white);
  border: 1px solid rgba(217, 206, 188, .5);
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-mid);
}

.fw-pill::before {
  content: '×';
  font-size: 11px;
  color: var(--clay);
  font-weight: 400;
  line-height: 1;
}

.fw-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11.5px;
  color: var(--text-light);
}

.fw-note svg { width: 14px; height: 16px; flex-shrink: 0; opacity: .5; }

/* Ingredient cards — right column 2×2 staggered grid */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.ingredient-grid .ingredient-card:nth-child(even) { margin-top: 28px; }

.ingredient-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(217, 206, 188, .3);
  box-shadow: 0 8px 32px rgba(44, 30, 20, .07);
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: default;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(44, 30, 20, .13);
}

.ingredient-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .4s var(--ease);
}

.ingredient-card:hover .ingredient-card__image img { transform: scale(1.05); }

.ingredient-card__image-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ingredient-card--calendula .ingredient-card__image-ph { background: linear-gradient(145deg, #c8940a, #d8a820, #e8c840); }
.ingredient-card--shea      .ingredient-card__image-ph { background: linear-gradient(145deg, #e0d5c0, #f0e8d4, #f8f0e4); }
.ingredient-card--baobab    .ingredient-card__image-ph { background: linear-gradient(145deg, #a87640, #bc9050, #d0aa68); }
.ingredient-card--aloe      .ingredient-card__image-ph { background: linear-gradient(145deg, #72a860, #8abc78, #a4d090); }

.ingredient-card__image-label {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  z-index: 2;
}

.ingredient-card__body {
  padding: 20px 22px 24px;
}

.ingredient-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ingredient-card__icon {
  width: 30px;
  height: 30px;
  background: var(--almond);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ingredient-card__icon svg { width: 18px; height: 20px; }

.ingredient-card__title {
  font-family: var(--font-headline);
  font-size: 21px;
  font-weight: 400;
  color: var(--dark);
}

.ingredient-card__subtitle {
  font-family: var(--font-head-md);
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}

.ingredient-card__sep {
  width: 24px;
  height: 1px;
  background: var(--oat);
  margin-bottom: 10px;
}

.ingredient-card__desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Ingredients — editorial section text */
.ing-editorial__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.ing-editorial__tag .eline { width: 26px; height: 1px; background: var(--clay); }

.ing-editorial__tag span {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
}

.ing-editorial__title {
  font-family: var(--font-headline);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 22px;
}

.ing-editorial__title em { font-style: italic; color: var(--olive); }

.ing-editorial__body {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Supporting botanicals section */
.supporting-botanicals {
  background: var(--linen);
  padding: 64px 80px;
}

.supporting-botanicals__heading-title {
  font-family: var(--font-headline);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}

.supporting-botanicals__intro {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

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

.botanical-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 17px;
  border: 1px solid var(--oat);
  text-align: center;
  transition: transform .3s var(--ease);
}

@media (max-width: 768px) {
  .botanical-card { padding: 17px 11px; }
}

.botanical-card:hover { transform: translateY(-4px); }

.botanical-card__icon {
  width: 36px;
  height: 40px;
  margin: 0 auto 14px;
}

.botanical-card__name {
  font-family: var(--font-head-md);
  font-size: 13.5px;
  color: var(--dark);
  margin-bottom: 6px;
}

.botanical-card__tag {
  font-family: var(--font-head-md);
  font-size: 8.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.botanical-card__tag--lavender { color: var(--lavender); }
.botanical-card__tag--clay     { color: var(--clay); }
.botanical-card__tag--olive    { color: var(--olive); }

.botanical-card__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* INCI section */
.inci-section {
  background: var(--white);
  padding: 72px 0;
}

.inci-section__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.inci-section__heading-title {
  font-family: var(--font-headline);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}

.inci-section__intro {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.inci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.inci-product-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--oat);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.inci-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44, 30, 20, .1);
}

.inci-product-card--dark {
  background: var(--cocoa);
  border-color: var(--cocoa);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inci-prod-img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

.inci-prod-img .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inci-prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s;
}

.inci-product-card:hover .inci-prod-img img { transform: scale(1.04); }

.inci-prod-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--oat);
}

.inci-prod-name {
  font-family: var(--font-head-md);
  font-size: 14px;
  color: var(--dark);
}

.inci-prod-cat {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.inci-list {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.75;
}

.inci-list strong {
  font-family: var(--font-head-md);
  font-size: 10.5px;
  color: var(--text-mid);
  font-weight: 400;
}

.inci-promise__icon {
  width: 44px;
  height: 48px;
  margin-bottom: 18px;
}

.inci-promise__label {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}

.inci-promise__text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(245, 240, 232, .7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.inci-promise__link {
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--almond);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Benefits strip */
.benefits-strip {
  background: var(--almond);
  padding: 36px 0;
}

.benefits-strip__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.benefits-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.benefits-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(217, 206, 188, .6);
}

.benefits-strip__icon {
  width: 28px;
  height: 32px;
  margin-bottom: 10px;
}

.benefits-strip__label {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.benefits-strip__sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Ingredients — responsive */
@media (max-width: 1100px) {
  .ing-editorial__inner { padding-left: 32px; padding-right: 32px; }
  .ing-editorial__layout { grid-template-columns: 1fr; gap: 52px; }
  .ing-bot-art { display: none; }
  .inci-section__inner { padding-left: 32px; padding-right: 32px; }
  .inci-grid { grid-template-columns: 1fr 1fr; }
  .benefits-strip__inner { padding-left: 32px; padding-right: 32px; }
  .supporting-botanicals { padding: 64px 44px; }
}

@media (max-width: 768px) {
  .ingredient-grid { grid-template-columns: 1fr; }
  .ingredient-grid .ingredient-card:nth-child(even) { margin-top: 0; }
  .inci-grid { grid-template-columns: 1fr; }
  .benefits-strip__inner { grid-template-columns: 1fr 1fr; }
  .benefits-strip__item::after { display: none; }
  .benefits-strip__item { border-bottom: 1px solid rgba(217, 206, 188, .4); padding: 14px 10px; }
  .supporting-botanicals { padding: 48px 20px; }
  .supporting-botanicals__grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   PACKAGES PAGE
   ============================================================ */

.packages-grid {
  padding: 64px 80px 80px;
  background: var(--white);
}

.packages-grid__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Standard package card */
.package-card {
  background: var(--linen);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--oat);
  transition: transform .35s, box-shadow .35s;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(44, 30, 20, .12);
}

.package-card__body {
  padding: 40px 44px;
}

.package-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.package-card__count {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}

.package-card__name {
  font-family: var(--font-headline);
  font-size: 34px;
  font-weight: 400;
  color: var(--dark);
}

.package-card__price {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 400;
  color: var(--cocoa);
  margin-bottom: 4px;
}

.package-card__kit-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.package-card--featured__kit-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.package-card__price-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.package-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 32px;
  list-style: none;
}

.package-card__feature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
}
.package-card__feature .pcf-meta {
  flex-basis: 100%;
  padding-left: 18px; /* align under name, past the ✦ bullet */
}

.package-card__feature::before {
  content: '✦';
  font-size: 8px;
  color: var(--clay);
  flex-shrink: 0;
}

/* Item detail chips inside feature rows */
.pcf-name { font-family: var(--font-body); }
.pcf-role { font-family: var(--font-head-md); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--clay); }
.pcf-size { font-size: 11px; color: var(--text-faint, rgba(92,64,51,.45)); }
.pcf-note { font-size: 11px; color: var(--text-faint, rgba(92,64,51,.45)); }
.pcf-meta { font-size: 11px; color: var(--text-faint, rgba(92,64,51,.45)); }
/* Featured card variants inherit linen tones */
.package-card--featured__feature .pcf-name { color: rgba(245,240,232,.8); }
.package-card--featured__feature .pcf-role { color: var(--clay); }
.package-card--featured__feature .pcf-size,
.package-card--featured__feature .pcf-note { color: rgba(245,240,232,.4); }

.package-card__cta {
  width: 100%;
  background: var(--cocoa);
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
  padding: 15px 35px;
}

.package-card__cta:hover { background: var(--earth); }

.package-card__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.package-card__actions .package-card__cta { margin-top: 0; }
.package-card__details { display: block; text-align: center; font-family: var(--font-head-md); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); text-decoration: none; padding: 8px; transition: color .2s; }
.package-card__details:hover { color: var(--earth); }

/* Featured (full-width) package card */
.package-card--featured {
  grid-column: span 2;
  background: var(--cocoa);
  border-radius: 28px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  transition: transform .35s, box-shadow .35s;
}

.package-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(44, 30, 20, .2);
}

.package-card--featured__deco {
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.package-card--featured__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: #fff;
  border-radius: var(--pill);
  padding: 4px 20px;
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-card--featured__left {
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}

.package-card--featured__count {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}

.package-card--featured__name {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 20px;
}

.package-card--featured__price {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 4px;
}

.package-card--featured__price-sub {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12px;
  color: var(--clay);
  margin-bottom: 28px;
}

.package-card--featured__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 240, 232, .65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.package-card--featured__cta {
  padding: 16px 44px;
  background: var(--linen);
  color: var(--cocoa);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
}

.package-card--featured__cta:hover { background: var(--almond); }

.package-card--featured__actions { display: flex; align-items: center; gap: 20px; margin-top: 4px; }
.package-card--featured__actions .package-card--featured__cta { margin-top: 0; }
.package-card--featured__details { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,240,232,.6); text-decoration: none; transition: color .2s; }
.package-card--featured__details:hover { color: rgba(245,240,232,1); }

.package-card--featured__right {
  padding: 52px 48px 52px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.package-card--featured__feature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(245, 240, 232, .7);
}
.package-card--featured__feature .pcf-meta {
  flex-basis: 100%;
  padding-left: 20px;
}

.package-card--featured__feature::before {
  content: '✦';
  font-size: 8px;
  color: var(--clay);
  flex-shrink: 0;
}

.package-card--featured__note {
  margin-top: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, .07);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.package-card--featured__note p {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 12.5px;
  color: rgba(245, 240, 232, .5);
  line-height: 1.6;
}

/* Giving back card */
.package-giving {
  background: linear-gradient(135deg, var(--almond) 0%, var(--linen) 100%);
  border-radius: 28px;
  border: 1px solid var(--oat);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-giving__icon {
  width: 64px;
    height: 74px;
    margin-bottom: 22px;
    margin-left: -17px;
}

.package-giving__label {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.package-giving__title {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.package-giving__title em { font-style: italic; color: var(--olive); }

.package-giving__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.package-giving__link {
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cocoa);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Packages promise section */
.packages-promise {
    background: var(--almond) url(../images/package_footer.png) no-repeat 6% center;
    padding: 64px 80px;
    text-align: center;
    background-size: 20%;
}

.packages-promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.promise-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
}

.promise-card__icon {
  width: 32px;
  height: 36px;
  margin-bottom: 14px;
}

.promise-card__name {
  font-family: var(--font-head-md);
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 6px;
}

.promise-card__desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Packages — responsive */
@media (max-width: 1100px) {
  .packages-grid { padding: 48px 32px; }
  .packages-promise { padding: 64px 32px; }
}

@media (max-width: 900px) {
  .packages-grid__inner { grid-template-columns: 1fr; }
  .package-card--featured { grid-column: span 1; grid-template-columns: 1fr;}
  .package-card--featured__right { padding: 0 32px 40px; }
  .packages-promise__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .packages-grid { padding: 40px 20px; }
  .packages-promise { padding: 48px 20px; }
  .packages-promise__grid { grid-template-columns: 1fr; }
  .packages-grid__inner.container { padding-left: 0; padding-right: 0; }
  .package-card__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .package-card__actions,
  .package-card--featured__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .package-card__cta,
  .package-card__details,
  .package-card--featured__cta,
  .package-card--featured__details { width: 100%; text-align: center; box-sizing: border-box; }
  .package-card--featured__feature .pcf-meta,
  .package-card__feature .pcf-meta { padding-left: 16px; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact — hero */
.contact-hero {
    padding: 120px 0 64px;
    background: var(--linen) url(../images/contact_bg.png) no-repeat right bottom;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-hero__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.contact-hero__blob-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%);
  opacity: .4;
  pointer-events: none;
}

.contact-hero__blob-2 {
  position: absolute;
  bottom: -60px; left: 20px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%);
  opacity: .3;
  pointer-events: none;
}

.contact-hero__left { position: relative; z-index: 1; }

.contact-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--dark);
  margin-bottom: 18px;
}

.contact-hero__title em { font-style: italic; color: var(--olive); }

.contact-hero__subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 460px;
}

.contact-hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 240px;
}

.quick-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--oat);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all .25s;
}

.quick-card:hover {
  border-color: var(--clay);
  transform: translateX(4px);
}

.quick-card__icon {
  width: 36px;
  height: 36px;
  background: var(--almond);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-card__icon svg { width: 18px; height: 20px; }

.quick-card__label {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.quick-card__value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
}

/* Contact — main layout */
.contact-main {
  padding: 64px 0 80px;
  background: var(--white);
}

.contact-main__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

/* Contact form */
.contact-form-wrap { position: relative; }

.contact-form__title {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Shared form system */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 20px; }
.contact-form__row .form-group--full { grid-column: span 2; }

.form-label {
  display: block;
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-label abbr { color: var(--clay); font-style: normal; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--oat);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--linen);
  outline: none;
  transition: border-color .22s, box-shadow .22s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(160, 136, 120, .1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B8D85' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-hint {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 5px;
  text-align: right;
}

.form-honeypot { display: none; }

.form-privacy {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 14px;
  text-align: center;
}

.form-privacy a { color: var(--clay); text-decoration: none; }

.btn--submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--cocoa), var(--earth));
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--submit:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }
.btn--submit svg { width: 16px; height: 16px; }

.form-success {
  display: none;
  padding: 36px;
  background: rgba(122, 140, 106, .1);
  border-radius: 16px;
  border: 1px solid rgba(122, 140, 106, .25);
  text-align: center;
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 52px; height: 52px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.form-success__icon svg { width: 24px; height: 24px; }

.form-success__title {
  font-family: var(--font-headline);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-success__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Sidebar */
.contact-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--linen);
  border-radius: 20px;
  border: 1px solid var(--oat);
  padding: 28px;
  transition: box-shadow .3s;
}

.info-card:hover { box-shadow: 0 8px 32px rgba(44, 30, 20, .09); }

.info-card__icon {
  width: 40px;
  height: 44px;
  margin-bottom: 16px;
}

.info-card__icon svg { width: 28px; height: 32px; }

.info-card__title {
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}

.info-card__body {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

.info-card__body a { color: var(--cocoa); text-decoration: none; }
.info-card__body a:hover { text-decoration: underline; }
.info-card__body strong { font-family: var(--font-head-md); color: var(--dark); font-weight: 400; }

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(122, 140, 106, .12);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 10px;
}

.response-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  animation: pulse 2s ease infinite;
}

/* FAQ accordion */
.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(217, 206, 188, .5);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: var(--font-head-md);
  font-size: 12.5px;
  color: var(--dark);
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.faq-q svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s; }
.faq-q.open svg { transform: rotate(180deg); }

.faq-a {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s;
}

.faq-a.open { max-height: 200px; padding-top: 6px; }

/* Wholesale section */
.wholesale-section {
  background: var(--linen);
  padding: 64px 0;
}

.wholesale-section__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
}

.wholesale-section__card {
  background: var(--cocoa);
  border-radius: 28px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.wholesale-section__deco {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.wholesale-section__left { position: relative; z-index: 1; }

.wholesale-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.wholesale-section__eyebrow .eline { background: var(--clay); }

.wholesale-section__eyebrow span {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
}

.wholesale-section__title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--linen);
  line-height: 1.1;
  margin-bottom: 12px;
}

.wholesale-section__title em { font-style: italic; color: var(--clay); }

.wholesale-section__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245, 240, 232, .6);
  line-height: 1.7;
  max-width: 400px;
}

.wholesale-section__right { position: relative; z-index: 1; flex-shrink: 0; }

.wholesale-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 36px;
  background: var(--linen);
  color: var(--cocoa);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
}

.wholesale-section__btn:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

/* Contact — responsive */
@media (max-width: 1100px) {
  .contact-hero__inner { grid-template-columns: 1fr; padding: 110px 32px 52px; }
  .contact-hero__right { display: none; }
  .contact-main__inner { grid-template-columns: 1fr; padding: 48px 32px 64px; }
  .contact-sidebar { position: static; }
  .wholesale-section__inner { padding: 0 32px; }
  .wholesale-section__card { grid-template-columns: 1fr; gap: 28px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__row .form-group--full { grid-column: 1; }
}

@media (max-width: 768px) {
  .contact-main__inner { padding: 48px 20px 64px; }
  .wholesale-section__inner { padding: 0 20px; }
  .wholesale-section { padding: 48px 0; }
}


/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

@keyframes pop {
  0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* === ACCESSIBILITY === */
:focus-visible {
  outline: 0px solid var(--cocoa);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cocoa);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   SHOP PAGE
   ============================================================ */

.concept-label {
  background: var(--dark);
  padding: 12px max(24px, calc((100% - 1380px) / 2 + 80px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--nav-h);
}

.cl-tag {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--almond);
}

.cl-desc {
  font-family: var(--font-light);
  font-size: 12px;
  color: rgba(237, 228, 211, .55);
}

.page-header {
  padding: 106px max(24px, calc((100% - 1380px) / 2 + 80px)) 0;
  background: var(--linen) url("../images/shop_header_bg.png") no-repeat center 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  border-bottom: 1px solid var(--oat);
  background-size: 100%;
}

.ph-tag {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.ph-title {
  font-family: var(--font-headline);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.04;
  padding-bottom: 28px;
}

.ph-title em { font-style: italic; color: var(--olive); }

.ph-count {
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-light);
  align-self: flex-end;
  padding-bottom: 28px;
  white-space: nowrap;
}

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--oat);
  padding: 14px max(24px, calc((100% - 1380px) / 2 + 80px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.fp {
  padding: 7px 16px;
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
  transition: all .22s;
}

.fp:hover { border-color: var(--clay); }
.fp.active { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }

/* Right-side controls container (sort + view-toggle; filter dropdown on mobile) */
.filter-bar__controls { display: flex; align-items: center; gap: 16px; }

/* Mobile filter dropdown — hidden on desktop, shown on mobile */
.filter-row { display: flex; align-items: center; gap: 10px; }
.filter-row label {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.filter-row select {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  background: var(--linen);
  border: 1.5px solid var(--oat);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  outline: none;
}
.filter-row--mobile { display: none; }

.sort-row { display: flex; align-items: center; gap: 10px; }

.sort-row label {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.sort-row select {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  background: var(--linen);
  border: 1.5px solid var(--oat);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  outline: none;
}

.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--linen);
  border-radius: 8px;
  padding: 3px;
}

.vt-btn {
  width: 30px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all .2s;
}

.vt-btn.active {
  background: var(--white);
  color: var(--cocoa);
  box-shadow: 0 1px 4px rgba(44, 30, 20, .1);
}

.vt-btn svg { width: 14px; height: 14px; }

.products-area {
  padding: 0 max(24px, calc((100% - 1380px) / 2 + 80px)) 72px;
  background: var(--white);
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Product row */
.product-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--oat);
  transition: background .28s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-row:first-child { border-top: none; }
.product-row:hover { background: var(--linen); }

.row-img-frame {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  border-radius: 16px;
}

.product-row.featured .row-img-frame { width: 360px; height: 360px; }

.row-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s var(--ease);
  z-index: 1;
  border-radius: 16px;
}

.product-row:hover .row-img-frame img { transform: scale(1.04); }

.row-img-ph {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  z-index: 0;
}

.row-content {
  flex: 1;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.row-cat {
  font-family: var(--font-head-md);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.row-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--pill);
  background: var(--almond);
  font-family: var(--font-head-md);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.row-name {
  font-family: var(--font-headline);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 8px;
}

.row-tag {
  font-family: var(--font-light);
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.row-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 24px;
}

.row-benefits { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }

.row-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mid);
}

.row-benefit svg { width: 12px; height: 14px; flex-shrink: 0; }

.row-footer { display: flex; align-items: center; gap: 20px; margin-top: auto; }

.row-price {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 400;
  color: var(--cocoa);
}
.products-area.grid-view {
    padding-top: 25px;
}
.row-price small { font-size: 13px; color: var(--text-light); font-family: var(--font-light); }

.row-actions { display: flex; gap: 10px; align-items: center; }

.btn-atc {
  padding: 12px 28px;
  background: var(--cocoa);
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
  text-decoration: none;
}

.btn-atc:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

.btn-detail {
  padding: 11px 24px;
  background: transparent;
  color: var(--cocoa);
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color .25s;
}

.btn-detail:hover { border-color: var(--cocoa); }

.row-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 400;
  color: rgba(92, 64, 51, .07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Grid view */
.products-area.grid-view .products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: none;
}

.products-area.grid-view .product-row {
  flex-direction: column;
  border: 1px solid var(--oat);
  border-radius: 18px;
  overflow: hidden;
  background: var(--linen);
}

.products-area.grid-view .product-row:hover { background: var(--linen); }

.products-area.grid-view .row-img-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 0;
}

.products-area.grid-view .product-row.featured .row-img-frame { width: 100%; height: auto; aspect-ratio: 1 / 1; }
.products-area.grid-view .row-img-frame img { border-radius: 0; }
.products-area.grid-view .row-content { padding: 18px 20px 22px; }
.products-area.grid-view .row-name { font-size: 20px; }
.products-area.grid-view .row-desc { display: none; }
.products-area.grid-view .row-benefits { display: none; }
.products-area.grid-view .row-num { display: none; }
.products-area.grid-view .row-footer { gap: 10px; flex-wrap: wrap; }
.products-area.grid-view .row-price { font-size: 22px; }
.products-area.grid-view .btn-detail { display: none; }
.products-area.grid-view .product-row { border-bottom: 1px solid var(--oat); }

.no-results {
  text-align: center;
  padding: 72px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  display: none;
}

.no-results.show { display: block; }

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  background: var(--cocoa);
  color: var(--linen);
  border-radius: 14px;
  padding: 14px 22px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
  pointer-events: none;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 14px; height: 14px; }

/* Shop responsive */
@media (max-width: 1100px) {
  .page-header { padding: 56px 44px 0; }
  .filter-bar { padding: 14px 44px; }
  .products-area { padding: 0 44px 72px; }
  .row-img-frame { width: 220px; height: 220px; }
  .product-row.featured .row-img-frame { width: 280px; height: 280px; }
  .row-content { padding: 20px 24px; }
}

@media (max-width: 768px) {
  .page-header { grid-template-columns: 1fr; padding: 44px 16px 0; }
  .ph-count { padding-bottom: 16px; }

  /* Filter bar: single row with filter + sort dropdowns side-by-side + view toggle */
  .filter-bar { padding: 10px 16px; gap: 10px; }
  .filter-pills { display: none; }
  .filter-bar__controls { flex: 1; flex-wrap: wrap; gap: 5px; }
  .filter-row--mobile { display: flex; flex: 1; min-width: 0; }
  .filter-row--mobile select { flex: 1; min-width: 0; }
  .sort-row { flex: 1; min-width: 0; }
  .sort-row select { flex: 1; min-width: 0; }
  .sort-row label { display: none; } /* "Sort" label hidden — dropdown context is clear */

  .products-area { padding: 0 16px 56px; }
  .product-row { flex-direction: column; }
  .row-img-frame,
  .product-row.featured .row-img-frame { width: 100%; height: auto; aspect-ratio: 4/4; margin: 0; border-radius: 0; }
  .row-img-frame img { border-radius: 0; }
  .row-num { display: none; }
  .row-footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .row-price { font-size: 22px; }
  .row-actions { flex-direction: column; gap: 8px; }
  .row-actions .button,
  .row-actions a,
  .btn-detail { width: 100%; text-align: center; box-sizing: border-box; }
}


/* ============================================================
   ACCOUNT PAGE
   ============================================================ */

.account-shell {
    padding-top: var(--nav-h);
    padding-bottom: 40px;
    box-sizing: border-box;
    height: 100vh;    /* fallback */
    height: 100svh;   /* exact visible viewport — no extra space, no scroll needed for login */
    overflow: hidden;
    background: var(--linen) url(../images/login_page_bg.png) no-repeat center 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -9px;
    background-position: top left;
    background-size: 100%;
}

.acc-blob1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%);
  opacity: .4;
  pointer-events: none;
}

.acc-blob2 {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 68%);
  opacity: .3;
  pointer-events: none;
}

.acc-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 20px 64px rgba(44, 30, 20, .12);
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.acc-brand {
  background: var(--cocoa);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.acc-brand-blob {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.acc-brand-name {
  font-family: var(--font-headline);
  font-size: 36px;
  color: var(--linen);
  font-weight: 400;
  margin-bottom: 6px;
}

.acc-brand-sub {
  font-family: var(--font-light);
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 32px;
}

.acc-brand-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(245, 240, 232, .65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.acc-brand-trust { display: flex; flex-direction: column; gap: 10px; }

.acc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-light);
  font-size: 12px;
  color: rgba(245, 240, 232, .55);
}

.acc-trust-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .7; }

.acc-forms { padding: 48px; }

.acc-tabs {
  display: flex;
  border-bottom: 1px solid var(--oat);
  margin-bottom: 32px;
}

.acc-tab {
  padding: 12px 24px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: -1px;
}

.acc-tab.active { color: var(--cocoa); border-bottom-color: var(--cocoa); }

.acc-form {
  display: none;
  animation: fadeUp .4s var(--ease) both;
}

.acc-form.active { display: block; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  cursor: pointer;
}

.form-check input { width: 16px; height: 16px; accent-color: var(--cocoa); }

.form-check-label {
  font-family: var(--font-light);
  font-size: 13px;
  color: var(--text-mid);
}

.form-check-label a { color: var(--clay); text-decoration: none; }

.btn-form {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--cocoa), var(--earth));
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
  margin-bottom: 14px;
}

.btn-form:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

.form-alt-link {
  text-align: center;
  font-family: var(--font-light);
  font-size: 12.5px;
  color: var(--text-light);
}

.form-alt-link a { color: var(--clay); text-decoration: none; font-family: var(--font-head-md); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-family: var(--font-light);
  font-size: 11px;
  color: var(--text-light);
}

.form-divider::before,
.form-divider::after { content: ''; flex: 1; height: 1px; background: var(--oat); }

.forgot-link {
  display: block;
  text-align: right;
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--clay);
  text-decoration: none;
  margin-top: -10px;
  margin-bottom: 20px;
  transition: color .2s;
}

.forgot-link:hover { color: var(--cocoa); }

.pass-note {
  font-family: var(--font-light);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: -12px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .acc-card { grid-template-columns: 1fr; }
  .acc-brand { display: none; }
  .acc-forms { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .acc-forms { padding: 28px 20px; }
}


/* ============================================================
   CART / CHECKOUT PAGE
   ============================================================ */

.page-shell {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--white);
}

.page-inner { padding: 48px 80px 80px; max-width: 1380px; margin-inline: auto; width: 100%; }

.page-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.page-eyebrow .eline { width: 26px; height: 1px; background: var(--clay); }
.page-eyebrow span {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
}

.page-title {
  font-family: var(--font-headline);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 36px;
}

.page-title em { font-style: italic; color: var(--olive); }

/* Checkout steps */
.checkout-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 18px 28px;
  background: var(--linen);
  border-radius: 16px;
  width: fit-content;
}

.cs-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.cs-step.active { color: var(--cocoa); }
.cs-step.done   { color: var(--olive); }

.cs-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--oat);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-mid);
  transition: all .2s;
}

.cs-step.active .cs-num { background: var(--cocoa); color: var(--linen); }
.cs-step.done .cs-num   { background: var(--olive); color: #fff; }

.cs-arrow { margin: 0 16px; color: var(--oat); }
.cs-arrow svg { width: 16px; height: 16px; }

/* WooCommerce: .woocommerce-cart */
.woocommerce-cart .cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: auto auto;
  gap: 36px;
  align-items: start;
}
.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1;
  grid-row: 1;
}
.woocommerce-cart .cart-upsells {
  grid-column: 1;
  grid-row: 2;
}
.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* WooCommerce: table.shop_table */
table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--oat);
}

table.shop_table thead tr { background: var(--linen); }

table.shop_table th {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--oat);
  font-weight: 400;
}

table.shop_table th.product-remove { width: 44px; }
table.shop_table th.product-thumbnail { width: 80px; }

/* WooCommerce: .cart_item */
.cart_item td {
  padding: 20px;
  border-bottom: 1px solid rgba(217, 206, 188, .4);
  vertical-align: middle;
}

.cart_item:last-child td { border-bottom: none; }

/* WooCommerce: td.product-remove */
td.product-remove a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid var(--oat);
  color: var(--text-light);
  text-decoration: none;
  transition: all .2s;
}

td.product-remove a:hover { background: var(--cocoa); color: var(--linen); border-color: var(--cocoa); }

/* WooCommerce: td.product-thumbnail */
td.product-thumbnail .img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--almond);
  position: relative;
}

td.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
td.product-thumbnail .img-ph { width: 100%; height: 100%; }

/* WooCommerce: td.product-name */
td.product-name a {
  font-family: var(--font-headline);
  font-size: 18px;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}

td.product-name a:hover { color: var(--cocoa); }

.cart-item-variant {
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 3px;
}

/* WooCommerce: td.product-price, td.product-subtotal */
td.product-price,
td.product-subtotal {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--cocoa);
}

/* WooCommerce: td.product-quantity / .quantity / .qty-btn / input.qty */
td.product-quantity .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  overflow: hidden;
  width: fit-content;
  height: 40px;
}

td.product-quantity .qty-btn {
  width: 36px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

td.product-quantity .qty-btn:hover { color: var(--cocoa); }

td.product-quantity input.qty {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--oat);
  border-right: 1px solid var(--oat);
  font-family: var(--font-head-md);
  font-size: 15px;
  color: var(--dark);
  background: transparent;
  -moz-appearance: textfield;
}

td.product-quantity input.qty::-webkit-outer-spin-button,
td.product-quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ===============================
   MOBILE ONLY (Soraya Cart UI)
================================ */
@media (max-width: 768px) {

  /* table.shop_table {
    border: none;
    background: transparent;
  } */
  /* .cs-num hidden temporarily, restored in bottom query with smaller size */

  .woocommerce table.shop_table{
    border: none;
    border-collapse: collapse;
    background: transparent;
  }

  /* Hide table header on mobile */
  table.shop_table thead {
    display: none;
  }

  /* Turn rows into card-like blocks matching requested design */
  .cart_item {
    display: grid;
    grid-template-columns: 32px 72px 1fr auto;
    grid-template-areas:
      "remove thumb name price"
      "qty qty subtotal subtotal";
    gap: 16px 5px;
    align-items: center;

    /* background: #fff; */
    background: transparent;
    border: 1px solid var(--oat);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 55px 10px 15px 10px;
    position: relative;
    overflow: hidden;
  }
  
  .cart_item::before {
    content: 'PRODUCT';
    position: absolute;
    top: 0; left: 0; right: 0; height: 42px;
    background: #fdfbf8;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-family: var(--font-head-md);
    font-size: 9px; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase;
    border-bottom: 1px solid var(--oat);
  }
  
  .cart_item::after {
    content: 'PRICE';
    position: absolute;
    top: 0; right: 20px; height: 42px;
    display: flex;
    align-items: center;
    font-family: var(--font-head-md);
    font-size: 9px; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase;
    z-index: 1;
  }

  .cart_item td {
    border: none !important;
    padding: 0 !important;
    display: block;
  }

  /* Thumbnail */
  td.product-thumbnail {
    grid-area: thumb;
  }

  td.product-thumbnail .img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  /* Product name */
  td.product-name {
    grid-area: name;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  td.product-name a {
    font-size: 15px;
    line-height: 1.3;
    font-family: var(--font-headline);
  }

  .cart-item-variant {
    font-size: 11px;
    margin-top: 4px;
  }

  /* Price */
  td.product-price {
    grid-area: price;
    font-size: 14px;
    color: var(--dark);
    text-align: right;
  }

  /* Quantity */
  td.product-quantity {
    grid-area: qty;
    border-top: 1px solid rgba(217, 206, 188, .4);
    padding-top: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  td.product-quantity::before {
    content: 'QUANTITY';
    font-family: var(--font-head-md);
    font-size: 9px; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase;
  }

  td.product-quantity .quantity {
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--oat);
  }

  /* Subtotal */
  td.product-subtotal {
    grid-area: subtotal;
    border-top: 1px solid rgba(217, 206, 188, .4);
    padding-top: 16px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 14px;
    color: var(--dark);
  }
  
  td.product-subtotal::before {
    content: 'SUBTOTAL';
    font-family: var(--font-head-md);
    font-size: 9px; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase;
  }

  /* Remove button */
  td.product-remove {
    grid-area: remove;
  }

  td.product-remove a {
    width: 24px;
    height: 24px;
    background: #fdfaf6;
    border: none;
    color: #e57373;
  }
}


/* Coupon row */
.cart-actions {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coupon { display: flex; gap: 10px; align-items: center; }

.coupon input {
  padding: 11px 18px;
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  background: var(--linen);
  outline: none;
  transition: border-color .2s;
  width: 200px;
}

.coupon input:focus { border-color: var(--clay); }
.coupon input::placeholder { color: var(--text-light); }

.btn-coupon {
  padding: 11px 24px;
  background: transparent;
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s;
}

.btn-coupon:hover { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }

.btn-update {
  display: none; /* hidden — cart auto-updates via AJAX on qty change */
  padding: 11px 24px;
  background: var(--linen);
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .25s;
}

.btn-update:hover { border-color: var(--cocoa); color: var(--cocoa); }

/* WooCommerce notices moved inside page layout — constrain to page width */
.wc-notices-wrap {
  max-width: 100%;
  margin-bottom: 20px;
}
.wc-notices-wrap:empty { display: none; }

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
  margin-top: 16px;
}

.continue-shopping:hover { color: var(--cocoa); }
.continue-shopping svg { width: 14px; height: 14px; }

/* WooCommerce: .cart_totals */
.cart_totals {
  background: var(--linen);
  border-radius: 20px;
  border: 1px solid var(--oat);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.cart-totals-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--oat);
}

.cart-totals-header h2 {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
}

table.shop_table.shop_table_responsive { border: none; border-radius: 0; }
table.shop_table.shop_table_responsive th { background: transparent; font-size: 11px; padding: 14px 28px; }
table.shop_table.shop_table_responsive td { padding: 14px 28px; font-family: var(--font-body); font-size: 14px; color: var(--dark); }
table.shop_table.shop_table_responsive .order-total th { font-family: var(--font-head-md); font-size: 12px; color: var(--dark); }
table.shop_table.shop_table_responsive .order-total td { font-family: var(--font-headline); font-size: 28px; color: var(--cocoa); }

.shipping-note {
  padding: 10px 28px 18px;
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* WooCommerce: .wc-proceed-to-checkout */
.wc-proceed-to-checkout { padding: 0 24px 24px; }

/* WooCommerce: .checkout-button.button.alt */
a.checkout-button.button.alt {
  display: block;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--cocoa), var(--earth));
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity .25s, transform .2s;
}
.woocommerce-cart .wc-proceed-to-checkout {
    margin: 0 auto;
    max-width: 88%;
}
.secure-note {
    margin-bottom: 20px;
}
td.product-quantity .quantity{
  border-radius: 0;
}
.woocommerce .quantity .qty {
    margin: 0 -1px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    padding: 12px 15px;
    font-size: 15px;
    border-color: #d9cebc;
}
:where(.woocommerce) .select2-container .select2-dropdown, :where(.woocommerce) .select2-container .select2-selection{
  border-color: #d9cebc;
  padding: 4px 8px;
}

.woocommerce-billing-fields h3, .woocommerce-additional-fields h3{
      display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 18px 28px;
    background: var(--linen);
    border-radius: 16px;
    width: 100%;
}
.woocommerce-additional-fields h3{
  margin-top: 25px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: right;
    margin-top: 40px;
}

.checkout-button:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

/* Hide "View Cart" link appended by WC after AJAX add-to-cart on shop/archive page */
.page-shop a.added_to_cart { display: none !important; }

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 0 0;
  font-family: var(--font-light);
  font-size: 11px;
  color: var(--text-light);
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
  width: 100%;
}
.secure-note svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Cart upsells */
.cart-upsells {
  margin-top: 40px;
  padding: 28px;
  background: var(--linen);
  border-radius: 20px;
}

.cu-title {
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

.cu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.cu-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease);
  text-decoration: none;
}

.cu-item:hover { transform: translateY(-3px); }

.cu-img { aspect-ratio: 1 / 1; position: relative; overflow: hidden; }
.cu-img img { width: 100%; height: 100%; object-fit: cover; }
.cu-img-ph { width: 100%; height: 100%; position: absolute; inset: 0; }
.cu-body { padding: 10px 12px 14px; }
.cu-name { font-family: var(--font-headline); font-size: 14px; color: var(--dark); margin-bottom: 3px; }
.cu-price { font-family: var(--font-head-md); font-size: 12px; color: var(--cocoa); }

/* WooCommerce: .woocommerce-checkout */
.woocommerce-checkout .checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* WooCommerce: #billing section heading */
#billing h3, .shipping-title {
  font-family: var(--font-head-md);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

/* WooCommerce: .form-row (checkout field wrapper — NOT the contact grid) */
.form-row { margin-bottom: 18px; }
.form-row.form-row-first { display: inline-block; width: calc(50% - 8px); margin-right: 14px; vertical-align: top; }
.form-row.form-row-last  { display: inline-block; width: calc(50% - 6px); vertical-align: top; }
.form-row.form-row-wide  { display: block; width: 100%; }

.form-row label {
  display: block;
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-row label abbr { color: var(--clay); font-style: normal; }

/* WooCommerce: .input-text */
.input-text,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--oat);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--linen);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.input-text::placeholder { color: var(--text-light); }
.input-text:focus, .form-row select:focus { border-color: var(--clay); }

.form-row select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B8D85' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.billing-section {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--oat);
  padding: 36px;
  margin-bottom: 24px;
}

.additional-fields {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--oat);
  padding: 28px 36px;
  margin-bottom: 24px;
}

.additional-fields h3 {
  font-family: var(--font-head-md);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
}

textarea.input-text { resize: vertical; min-height: 96px; }

/* WooCommerce: #order_review */
#order_review { position: sticky; top: 90px; }

.order-review-box {
  background: var(--linen);
  border-radius: 20px;
  border: 1px solid var(--oat);
  overflow: hidden;
  margin-bottom: 20px;
}

.or-header { padding: 22px 28px; border-bottom: 1px solid var(--oat); }

.or-header h3 {
  font-family: var(--font-head-md);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
}

.or-items { padding: 8px 0; }

.or-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(217, 206, 188, .4);
}

.or-item:last-child { border-bottom: none; }

.or-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--almond);
  position: relative;
}

.or-item-img img { width: 100%; height: 100%; object-fit: cover; }
.or-item-img-ph { width: 100%; height: 100%; }
.or-item-info { flex: 1; }
.or-item-name { font-family: var(--font-head-md); font-size: 13.5px; color: var(--dark); margin-bottom: 3px; }
.or-item-qty  { font-family: var(--font-light); font-size: 11.5px; color: var(--text-light); }
.or-item-price { font-family: var(--font-headline); font-size: 18px; color: var(--cocoa); }

.or-totals { padding: 0 28px 20px; }

.or-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(217, 206, 188, .3);
}

.or-row:last-child { border-bottom: none; }

.or-row-label {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.or-row-val { font-family: var(--font-body); font-size: 14px; color: var(--dark); }
.or-row.total-row .or-row-label { font-family: var(--font-head-md); font-size: 11px; color: var(--dark); }
.or-row.total-row .or-row-val   { font-family: var(--font-headline); font-size: 26px; color: var(--cocoa); }

/* WooCommerce: #payment */
#payment { background: var(--white); border-radius: 20px; border: 1px solid var(--oat); overflow: hidden; }

.payment-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--oat);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
}

/* WooCommerce: ul.payment_methods */
ul.payment_methods { list-style: none; padding: 8px 0; }
ul.payment_methods li { padding: 0; }

.payment-method {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(217, 206, 188, .3);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.payment-method:last-child { border-bottom: none; }

.pm-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--oat);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s;
}

.pm-radio.selected { border-color: var(--cocoa); background: var(--cocoa); }
.pm-radio.selected::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--linen); }

.pm-content { flex: 1; }
.pm-label { font-family: var(--font-head-md); font-size: 13px; color: var(--dark); margin-bottom: 4px; }
.pm-icons { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }

.pm-icon-card {
  height: 22px;
  padding: 3px 8px;
  border: 1px solid var(--oat);
  border-radius: 4px;
  font-family: var(--font-light);
  font-size: 10px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pm-icon-card svg { width: 16px; height: 12px; }
.pm-sub { font-family: var(--font-light); font-size: 12px; color: var(--text-light); margin-top: 6px; }
.card-fields { padding: 16px 28px 24px; background: rgba(245, 240, 232, .5); display: none; }
.card-fields.visible { display: block; }

/* ── Stripe / WC payment box ──────────────────────────────────────────── */
/* Remove WC's default yellow background, triangle arrow, and inner border */
.woocommerce-checkout #payment ul.payment_methods { padding: 0; }
.woocommerce-checkout #payment ul.payment_methods li { padding: 0; margin: 0; }
.woocommerce-checkout #payment .payment_box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 28px 20px;
  margin: 0;
  box-shadow: none;
}
.woocommerce-checkout #payment .payment_box::before { display: none; }

/* Test-mode / info notice inside payment */
#payment .woocommerce-info,
#payment .payment_box .woocommerce-info {
  background: rgba(245, 240, 232, 0.6);
  border: 1px solid var(--oat);
  border-left: 3px solid var(--clay);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 16px;
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}
#payment .woocommerce-info::before { display: none; }
/* Stripe payment element iframe wrapper */
#wc-stripe-payment-element,
.wc-stripe-elements-field { border-radius: 10px; overflow: hidden; }

/* ── Ship to different address ────────────────────────────────────────── */
#ship-to-different-address {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--oat);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
}
#ship-to-different-address label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
#ship-to-different-address .woocommerce-form__label-for-checkbox { font-family: var(--font-body); font-size: 14px; }

/* ── Shipping methods in cart totals ──────────────────────────────────── */
ul.woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.woocommerce-shipping-methods li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
}
ul.woocommerce-shipping-methods li input[type="radio"] {
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--cocoa);
}
ul.woocommerce-shipping-methods li label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
  cursor: pointer;
}
/* Shipping destination + calculator link */
.woocommerce-shipping-destination,
p.woocommerce-shipping-destination {
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--text-light);
  margin: 8px 0 4px;
}
a.shipping-calculator-button {
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--clay);
  text-decoration: none;
}
a.shipping-calculator-button:hover { text-decoration: underline; }

/* WooCommerce: .place-order */
.place-order { padding: 20px 28px; }

/* WooCommerce: button.button.alt#place_order */
button.button.alt#place_order {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--cocoa), var(--earth));
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
}

button#place_order:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

.order-terms {
  padding: 10px 28px 18px;
  font-family: var(--font-light);
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

.order-terms a { color: var(--clay); text-decoration: none; }

/* Cart/checkout responsive */
@media (max-width: 1100px) {
  .page-inner { padding: 36px 32px 64px; }
  .woocommerce-cart .cart-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
    grid-row: 1;
  }
  .woocommerce-cart .cart-collaterals {
    grid-column: 1;
    grid-row: 2;
  }
  .woocommerce-cart .cart-upsells {
    grid-column: 1;
    grid-row: 3;
  }
  .cart_totals { position: static; }
  .woocommerce-checkout .checkout-layout { grid-template-columns: 1fr; }
  #order_review { position: static; }
}

@media (max-width: 768px) {
  .form-row.form-row-first,
  .form-row.form-row-last { display: block; width: 100%; margin-right: 0; }
  .cu-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   MINI FOOTER (cart/checkout)
   ============================================================ */

.footer-mini-wrap {
  background: var(--dark);
  padding: 48px 80px 36px;
}

.footer-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.footer-mini-logo { display: flex; align-items: center; gap: 8px; }

.fml-main { font-family: var(--font-headline); font-size: 18px; color: var(--linen); }
.fml-sub  { font-family: var(--font-light); font-size: 8px; letter-spacing: .34em; color: var(--clay); text-transform: uppercase; }

.footer-mini-links { display: flex; gap: 28px; }

.footer-mini-links a {
  font-family: var(--font-light);
  font-size: 12px;
  color: rgba(245, 240, 232, .4);
  text-decoration: none;
  transition: color .2s;
}

.footer-mini-links a:hover { color: var(--almond); }

.footer-mini-trust { display: flex; align-items: center; gap: 16px; }

.fmt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-light);
  font-size: 10.5px;
  color: rgba(245, 240, 232, .35);
}

.fmt-item svg { width: 12px; height: 12px; opacity: .6; }

.fbot-mini {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  font-family: var(--font-light);
  font-size: 11px;
  color: rgba(245, 240, 232, .2);
  text-align: center;
}

@media (max-width: 1100px) { .footer-mini-wrap { padding: 40px 32px 28px; } }
@media (max-width: 768px) {
  .footer-mini { flex-direction: column; gap: 20px; text-align: center; }
  .footer-mini-trust { flex-wrap: wrap; justify-content: center; }
  .footer-mini-wrap { padding: 36px 20px 24px; }
}


/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.breadcrumb-bar {
  padding: 88px 80px 0;
  background: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-light);
  font-size: 11.5px;
  color: var(--text-light);
}

.breadcrumb a { color: var(--clay); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--cocoa); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .5; }

/* WooCommerce: .woocommerce.single-product */
.woocommerce.single-product { background: var(--white); }

/* WooCommerce: #product-tummy-balm.product */
.product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  padding: 32px 50px 72px;
  background: var(--white);
}

/* WooCommerce: .woocommerce-product-gallery */
.woocommerce-product-gallery {
  position: sticky;
  top: 88px;
  padding-right: 48px;
  align-self: start;
}

.gallery-main {
  border-radius: 24px;
  overflow: hidden;
  background: var(--linen);
  position: relative;
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.gallery-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.gallery-main:hover img { transform: scale(1.03); }

.gallery-main-ph {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, #ddd5e8, #cfc7dc);
}

.gallery-main .zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 12px;
  font-family: var(--font-light);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.gallery-thumbs { display: flex; gap: 10px; }

.gallery-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  flex-shrink: 0;
}

.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.active { border-color: var(--cocoa); }
.gallery-thumb img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-ph { position: absolute; inset: 0; z-index: 0; background: var(--almond); }

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(250, 250, 247, .9);
  backdrop-filter: blur(8px);
  border-radius: var(--pill);
  padding: 6px 14px;
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
}

/* WooCommerce: .entry-summary */
.entry-summary {
  padding-left: 48px;
  padding-top: 8px;
}

/* Shared category tag — used on product pages (.product-cat-tag) and homepage panel (.pd-cat-tag).
   Inline style="background:…;color:…" from term meta overrides the defaults below.
   .tag-* modifier classes provide fallback palette when no term colour is set. */
.product-cat-tag,
.pd-cat-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--pill);
  background: #e6e0ee;
  color: var(--lavender);
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* WooCommerce: .product_title.entry-title */
.product_title.entry-title {
  font-family: var(--font-headline);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-subtitle {
  font-family: var(--font-light);
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.product-ref {
  font-family: var(--font-light);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .08em;
  margin-bottom: 24px;
  opacity: .7;
}

/* WooCommerce: .price */
.price {
  font-family: var(--font-headline);
  font-size: 42px;
  font-weight: 400;
  color: var(--cocoa);
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.price-size-note {
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 22px;
  display: block;
}

/* WooCommerce: .woocommerce-product-details__short-description */
.woocommerce-product-details__short-description {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.product-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

.pb-ico { width: 18px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* WooCommerce: .variations */
.size-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.size-label { font-family: var(--font-head-md); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-light); }

.variations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.var-option {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--oat);
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--dark);
  transition: all .2s;
  width: 100%;
}

.var-option:hover { border-color: var(--clay); }
.var-option.selected { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }
.var-price { font-family: var(--font-head-md); font-size: 13px; }

/* WooCommerce: .quantity / .qty-btn / input.qty */
.cart-form { display: flex; gap: 12px; margin-bottom: 14px; align-items: stretch; }

.quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--oat);
  border-radius: var(--pill);
  overflow: hidden;
  height: 52px;
}
.quantity input.qty { flex: 1; text-align: center; }

.qty-btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

.qty-btn:hover { color: var(--cocoa); }

input.qty {
  width: 48px;
  height: 100%;
  text-align: center;
  border: none;
  border-left: 1px solid var(--oat);
  border-right: 1px solid var(--oat);
  font-family: var(--font-head-md);
  font-size: 16px;
  color: var(--dark);
  background: transparent;
  -moz-appearance: textfield;
}

input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* WooCommerce: .single_add_to_cart_button.button.alt */
.single_add_to_cart_button.button.alt {
  flex: 1;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--cocoa), var(--earth));
  color: var(--linen);
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .2s;
}

.single_add_to_cart_button:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

.view-full-link {
  display: block;
  text-align: center;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
  margin-bottom: 24px;
}

.view-full-link:hover { color: var(--cocoa); }

@media (max-width: 600px) {
  /* cart-form stacking reverted */
  .woocommerce div.product { padding: 32px 25px 72px 24px; }
  .breadcrumb-bar { padding: 88px 25px 0; }
}

.product-trust {
  padding-top: 20px;
  border-top: 1px solid var(--oat);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-light);
}

.pt-ico { width: 14px; height: 14px; flex-shrink: 0; }

/* WooCommerce: .woocommerce-tabs */
.woocommerce-tabs { background: var(--linen); padding: 64px 80px; }
/* Package layout: Section A (linen) = What's Included, Section B (white) = tabs */
.pkg-tabs-section { background: var(--white); padding: 64px 0; }
.pkg-tabs-section .tabs-nav { margin-bottom: 45px; }
@media (max-width: 768px) {
  .pkg-whats-included { padding: 48px 0; }
  .pkg-tabs-section { padding: 48px 0; }
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--oat);
  margin-bottom: 48px;
}

.tab-btn {
  padding: 14px 10px;
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--cocoa); }
.tab-btn.active { color: var(--cocoa); border-bottom-color: var(--cocoa); }

.tab-panel { display: none; animation: fadeUp .4s var(--ease) both; }
.tab-panel.active { display: block; }

.tab-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.tab-text h3 { font-family: var(--font-head-md); font-size: 18px; color: var(--dark); margin-bottom: 14px; }
.tab-text p  { font-family: var(--font-body); font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

.tab-text ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.tab-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

.tab-text ul li::before { content: '✦'; font-size: 8px; color: var(--clay); flex-shrink: 0; margin-top: 4px; }

.ing-grid-tab { display: flex; flex-direction: column; gap: 12px; }

.ing-item-tab {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ing-ico-tab {
  width: 36px;
  height: 36px;
  background: var(--almond);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ing-ico-tab svg { width: 20px; height: 22px; }
.ing-name-tab { font-family: var(--font-head-md); font-size: 13.5px; color: var(--dark); margin-bottom: 3px; }
.ing-role-tab { font-family: var(--font-light); font-size: 11px; color: var(--text-light); letter-spacing: .1em; text-transform: uppercase; }

.ing-full-list {
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 24px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
}

.how-to-steps { display: flex; flex-direction: column; gap: 20px; }

.usage-important { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; padding: 14px 16px; background: rgba(160,100,60,.08); border: 1px solid rgba(160,100,60,.2); border-radius: 10px; font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.usage-important svg { flex-shrink: 0; margin-top: 2px; color: var(--earth); }

/* ── Package "What's included" section on single product page ── */
.pkg-whats-included { padding: 72px 0 80px; background: var(--linen); }
.pkg-wi-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.pkg-wi-eyebrow { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); margin-bottom: 10px; }
.pkg-wi-head h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); color: var(--dark); margin-bottom: 18px; }
.pkg-wi-intro { font-family: var(--font-body); font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.pkg-wi-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 36px; }
.pkg-wi-card { width: 180px; flex-shrink: 0; background: var(--white); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 6px rgba(92,64,51,.08); }
.pkg-wi-card__img img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pkg-wi-card__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.pkg-wi-card__name { font-family: var(--font-head-md); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); }
.pkg-wi-card__role { font-family: var(--font-head-md); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); }
.pkg-wi-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.pkg-wi-card__size, .pkg-wi-card__note { font-family: var(--font-light); font-size: 11px; color: var(--text-mid); background: rgba(92,64,51,.07); padding: 2px 8px; border-radius: 20px; }
.pkg-wi-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; list-style: none; padding: 0; margin: 0 auto; max-width: 720px; }
.pkg-wi-highlights li { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.pkg-wi-highlights li::before { content: '✦'; font-size: 7px; color: var(--clay); flex-shrink: 0; }
/* Package quality stripe */
.pkg-quality-stripe { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 28px; padding: 28px 0 0; border-top: 1px solid rgba(92,64,51,.1); margin-top: 36px; }
.pkg-qs-item { display: flex; align-items: center; gap: 7px; font-family: var(--font-head-md); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); }
.pkg-qs-item svg { flex-shrink: 0; color: var(--earth); }

/* Package tab accordion */
.pkg-tab-intro { font-family: var(--font-body); font-size: 13.5px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; padding: 0 4px; }
.pkg-accordion { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.pkg-acc-item { border: 1px solid rgba(92,64,51,.12); border-radius: 12px; overflow: hidden; background: var(--white); transition: box-shadow .25s; }
.pkg-acc-item[open] { box-shadow: 0 2px 12px rgba(92,64,51,.07); }
.pkg-acc-summary { display: flex; align-items: center; gap: 10px; padding: 16px 20px; cursor: pointer; list-style: none; }
.pkg-acc-summary::-webkit-details-marker { display: none; }
.pkg-acc-name { font-family: var(--font-head-md); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); flex: 1; }
.pkg-acc-role { font-family: var(--font-head-md); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); background: rgba(160,100,60,.08); padding: 3px 10px; border-radius: 20px; }
.pkg-acc-chevron { flex-shrink: 0; color: var(--clay); transition: transform .32s ease; }
.pkg-acc-item.is-open .pkg-acc-chevron { transform: rotate(180deg); }
.pkg-acc-item.is-open { box-shadow: 0 2px 12px rgba(92,64,51,.07); }
/* Accordion body — grid-row trick for smooth height animation */
.pkg-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; border-top: 1px solid transparent; transition: grid-template-rows .32s ease, border-color .32s ease; }
.pkg-acc-item.is-open .pkg-acc-body { grid-template-rows: 1fr; border-color: rgba(92,64,51,.08); }
.pkg-acc-body-inner { overflow: hidden; padding: 0 20px; }
.pkg-acc-item.is-open .pkg-acc-body-inner { padding-bottom: 20px; }
.pkg-acc-body-inner .ing-full-list { font-family: var(--font-light); font-size: 12.5px; color: var(--text-mid); line-height: 1.85; padding-top: 14px; }
.pkg-acc-body-inner .how-to-steps { padding-top: 14px; }
.pkg-tab-formulated-without { padding: 24px; background: var(--linen); border-radius: 14px; }
.pkg-tab-formulated-without h4 { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin: 0 0 14px; }
.pkg-tab-formulated-without ul { display: flex; flex-wrap: wrap; gap: 6px 16px; list-style: none; padding: 0; margin: 0; }
.pkg-tab-formulated-without li { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.pkg-tab-formulated-without li::before { content: '—'; color: var(--clay); font-size: 10px; }

@media (max-width: 600px) {
  .pkg-wi-grid { gap: 10px; }
  .pkg-wi-card { width: calc(50% - 8px); }
  .pkg-whats-included { padding: 48px 0 56px; }
  .pkg-quality-stripe { gap: 10px 20px; }
}

.how-step { display: flex; gap: 16px; align-items: flex-start; }

.how-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head-md);
  font-size: 12px;
  flex-shrink: 0;
}

.how-step-text h4 { font-family: var(--font-head-md); font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.how-step-text p  { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* WooCommerce: .related.products */
.related.products { background: var(--white); padding: 64px 80px; }
.related.products.related--pkg { background: var(--linen); padding: 64px 0; }
.related.products h2 { font-family: var(--font-headline); font-size: 36px; font-weight: 400; color: var(--dark); margin-bottom: 36px; }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.rp-card {
  background: var(--linen);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  text-decoration: none;
}

.rp-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(44, 30, 20, .12); }

.rp-img { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.rp-img img { width: 100%; height: 100%; object-fit: cover; }
.rp-body { padding: 16px 18px 20px; }
.rp-cat  { font-family: var(--font-head-md); font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 4px; }
.rp-name { font-family: var(--font-headline); font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.rp-price { font-family: var(--font-head-md); font-size: 13px; color: var(--cocoa); }

/* Product detail responsive */
@media (max-width: 1100px) {
  .breadcrumb-bar { padding: 88px 32px 0; }
  #product-tummy-balm.product { grid-template-columns: 1fr; padding: 24px 32px 56px; }
  .woocommerce-product-gallery { position: static; padding-right: 0; margin-bottom: 36px; }
  .entry-summary { padding-left: 0; }
  .woocommerce-tabs, .related.products { padding: 48px 32px; }
  .tab-content-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   THANK YOU PAGE
   ============================================================ */

/* WooCommerce: body.woocommerce-page, body.woocommerce-order-received */
body.woocommerce-page { min-height: 100vh; }

.order-hero {
  background: var(--linen);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.order-hero .blob1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--olive-lt) 0%, transparent 68%);
  opacity: .36;
  pointer-events: none;
}

.order-hero .blob2 {
  position: absolute;
  bottom: -60px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 70%);
  opacity: .3;
  pointer-events: none;
}

.order-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 52px;
}

.confirm-badge {
  width: 80px;
  height: 80px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(122, 140, 106, .35);
  animation: pop .6s var(--ease) both;
}

.confirm-badge svg { width: 34px; height: 34px; }

.order-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 14px;
}

.order-hero h1 em { font-style: italic; color: var(--olive); }

.order-hero .sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 32px;
}

.order-hero .btns { display: flex; gap: 12px; flex-wrap: wrap; }

.order-ref-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid var(--oat);
  min-width: 240px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 30, 20, .07);
  flex-shrink: 0;
}

.order-ref-card .orc-label {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.order-ref-card .orc-num {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 400;
  color: var(--cocoa);
  margin-bottom: 8px;
  line-height: 1;
}

.order-ref-card .orc-date {
  font-family: var(--font-light);
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.order-ref-card .orc-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(122, 140, 106, .12);
  border-radius: var(--pill);
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  animation: pulse 2s ease infinite;
}

/* WooCommerce: .woocommerce-order-details */
.order-details-section { background: var(--white); padding: 60px 0; }

.order-details-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.woocommerce-order-details {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--oat);
  overflow: hidden;
}

.od-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--oat);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.od-header h2 { font-family: var(--font-head-md); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--dark); }
.od-header .od-count { font-family: var(--font-light); font-size: 12px; color: var(--text-light); }

/* WooCommerce: table.woocommerce-table--order-details */
.woocommerce-table--order-details { width: 100%; border-collapse: collapse; }
.woocommerce-table--order-details thead tr { background: var(--linen); }

.woocommerce-table--order-details th {
  font-family: var(--font-head-md);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 28px;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid var(--oat);
}

.woocommerce-table--order-details td {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(217, 206, 188, .35);
  vertical-align: middle;
}

.woocommerce-table--order-details tbody tr:last-child td { border-bottom: none; }

.product-name-cell { display: flex; align-items: center; gap: 14px; }

.product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.product-thumb .ph { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info-cell .pname  { font-family: var(--font-head-md); font-size: 14px; color: var(--dark); margin-bottom: 3px; }
.product-info-cell .pmeta  { font-family: var(--font-light); font-size: 11.5px; color: var(--text-light); }
.product-qty   { font-family: var(--font-light); font-size: 13px; color: var(--text-mid); text-align: center; }
.product-total { font-family: var(--font-headline); font-size: 20px; color: var(--cocoa); text-align: right; }

.tfoot-row td { padding: 14px 28px; border-top: 1px solid var(--oat); }
.tfoot-row.subtotal td { border-top: none; }
.tfoot-label { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); }
.tfoot-val   { font-family: var(--font-body); font-size: 14px; color: var(--dark); text-align: right; }
.tfoot-row.order-total td { border-top: 2px solid var(--oat); }
.tfoot-row.order-total .tfoot-label { font-family: var(--font-head-md); font-size: 12px; color: var(--dark); }
.tfoot-row.order-total .tfoot-val   { font-family: var(--font-headline); font-size: 28px; color: var(--cocoa); font-weight: 400; }

/* WooCommerce: .woocommerce-customer-details */
.woocommerce-customer-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 90px;
}

.cd-card { background: var(--linen); border-radius: 18px; border: 1px solid var(--oat); overflow: hidden; }

.cd-card-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--oat);
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-card-header svg { width: 14px; height: 14px; opacity: .55; }

.cd-card-body { padding: 18px 22px; }

.cd-line { font-family: var(--font-body); font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }
.cd-line strong { font-family: var(--font-head-md); color: var(--dark); font-weight: 400; display: block; margin-bottom: 4px; }

/* Next steps */
.next-steps-section { background: var(--linen); padding: 60px 0; }

.ns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }

.ns-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid var(--oat);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.ns-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44, 30, 20, .1); }
.ns-ico { width: 44px; height: 48px; margin-bottom: 18px; }
.ns-title { font-family: var(--font-head-md); font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.ns-body  { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.68; margin-bottom: 18px; }

.ns-link {
  font-family: var(--font-head-md);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cocoa);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ns-link:hover { gap: 8px; }

/* Giving strip */
.giving-strip { background: var(--cocoa); padding: 48px 0; position: relative; overflow: hidden; }

.giving-strip-inner { display: flex; align-items: center; gap: 52px; }

.gs-ico { width: 52px; height: 56px; flex-shrink: 0; opacity: .7; }
.gs-text { flex: 1; }
.gs-eyebrow { font-family: var(--font-head-md); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--clay); margin-bottom: 8px; }

.gs-title {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--linen);
  margin-bottom: 6px;
}

.gs-title em { font-style: italic; color: var(--clay); }
.gs-sub { font-family: var(--font-body); font-size: 14px; color: rgba(245, 240, 232, .62); line-height: 1.7; }
.gs-cta { flex-shrink: 0; }

/* WooCommerce: .upsells.products */
.upsells.products { background: var(--white); padding: 60px 0; }

.up-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }

.up-card {
  background: var(--linen);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.up-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(44, 30, 20, .12); }

.up-img { aspect-ratio: 1 / 1; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.up-img .ph { position: absolute; inset: 0; }
.up-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.up-card:hover .up-img img { transform: scale(1.05); }

.up-body  { padding: 16px 18px 20px; }
.up-cat   { font-family: var(--font-head-md); font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 4px; }
.up-name  { font-family: var(--font-headline); font-size: 18px; color: var(--dark); margin-bottom: 3px; }
.up-price { font-family: var(--font-head-md); font-size: 13px; color: var(--cocoa); }

/* Thank you page — shared text helpers */
.stitle {
  font-family: var(--font-headline);
  /*font-size: clamp(30px, 3.5vw, 46px);*/
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 12px;
}

.stitle em { font-style: italic; color: var(--olive); }

.ssub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
}

/* Thank you responsive */
@media (max-width: 1100px) {
  .order-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .order-ref-card { margin: 0; }
  .order-details-inner { grid-template-columns: 1fr; }
  .woocommerce-customer-details { position: static; }
  .ns-grid { grid-template-columns: 1fr 1fr; }
  .up-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ns-grid { grid-template-columns: 1fr; }
  .up-grid { grid-template-columns: 1fr 1fr; }
  .giving-strip-inner { flex-direction: column; gap: 24px; text-align: center; }
}


/* ============================================================
   LEGACY BUTTON ALIASES
   front-page.php and page-about.php use pre-BEM class names.
   Map them to the same visual result as the BEM equivalents.
   ============================================================ */

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 38px; background: var(--cocoa); color: var(--linen);
  font-family: var(--font-head-md); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--pill);
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--cocoa);
  font-family: var(--font-head-md); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--pill); border: 1.5px solid var(--oat);
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head-md); font-size: 15px; letter-spacing: .14em;
  color: var(--text-mid); text-decoration: none; transition: color .2s;
}
.btn-ghost::after { content: '→'; transition: transform .2s; }
.btn-ghost:hover { color: var(--cocoa); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-nav {
  padding: 10px 24px; background: var(--cocoa); color: var(--linen);
  font-family: var(--font-head-md); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--pill); transition: background .25s, transform .2s;
  display: inline-block;
}
.btn-nav:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }

/* nav cart hover (BEM block, no hover was defined above) */
.site-nav__cart:hover { color: var(--cocoa); }


/* ============================================================
   BOTANICAL DECORATIVE ELEMENTS
   ============================================================ */

.botanical-deco { position: absolute; pointer-events: none; user-select: none; opacity: .13; }
.botanical-corner-tr { top: 20px; right: 24px; }
.botanical-corner-bl { bottom: 20px; left: 24px; transform: scaleX(-1) rotate(180deg); }
.botanical-corner-tl { top: 20px; left: 24px; transform: scaleX(-1); }
.botanical-bg-mark { position: absolute; pointer-events: none; opacity: .05; left: 50%; transform: translateX(-50%); }


/* ============================================================
   SECTION HEADER UTILITY
   ============================================================ */

.sect-header {position:relative; z-index:1; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }


/* ============================================================
   HOMEPAGE ANIMATIONS
   ============================================================ */

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float  { animation: float 6s ease-in-out infinite; }
.float-d { animation: float 6s 2s ease-in-out infinite; }


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--linen);
  /*display: grid;
  grid-template-columns: 1fr 1fr;*/
  position: relative;
  overflow: hidden;
  display: flex;
  align-content: space-around;
  flex-direction: row;
  align-items: center;
}

.hero-blob1 { position: absolute; top: -120px; right: -120px; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%); opacity: .5; pointer-events: none; }
.hero-blob2 { position: absolute; bottom: 40px; left: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, var(--olive-lt) 0%, transparent 68%); opacity: .35; pointer-events: none; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 104px 60px 72px 0px; position: relative; z-index: 1; animation: fadeUp .9s var(--ease) both; }
.hero-headline { font-family: var(--font-headline); font-size: clamp(44px, 4.9vw, 74px); font-weight: 400; line-height: 1.03; color: var(--dark); margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: var(--olive); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill { padding: 6px 11px; border: 1px solid var(--oat); border-radius: var(--pill); font-family: var(--font-light); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); background: var(--white); }
.hero-sub { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.68; max-width: 440px; margin-bottom: 28px; }
.hero-cta { display: flex; align-items: center; gap: 20px; }
.hero-trust {    max-width: 510px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--oat); display: flex; gap: 34px; }
.ht-item { display: flex; flex-direction: column; gap: 4px; }
.ht-num { font-family: var(--font-headline); font-size: 26px; font-weight: 400; color: var(--cocoa); }
.ht-lbl { font-family: var(--font-light); font-size: 9.5px; font-weight: 300; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); }
.hero-right { display: flex; align-items: center; justify-content: center; padding: 80px 60px; position: relative; z-index: 1; animation: fadeUp .9s .14s var(--ease) both; }
.hero-stage { position: relative; width: 400px; height: 500px; }
.hcard { position: absolute; background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(44,30,20,.11); transition: transform .4s var(--ease); }
.hcard:hover { transform: translateY(-6px) !important; }
.hcard.cm { width: 240px; height: 300px; top: 50px; left: 30px; z-index: 3; }
.hcard.cs { width: 188px; height: 226px; top: 0; right: 10px; z-index: 2; }
.hcard.ct { width: 170px; height: 194px; bottom: 10px; right: 28px; z-index: 2; }
.hcimg { width: 100%; height: 65%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.bg-lav { background: linear-gradient(145deg, #ddd5e8, #cfc7dc); }
.bg-oli { background: linear-gradient(145deg, var(--olive-lt), #b8c9a8); }
.bg-alm { background: linear-gradient(145deg, var(--almond), #ddd2bc); }
.hcimg .phl { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-family: var(--font-light); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); }
.hcbody { padding: 13px 15px; }
.hcbody .nm { font-family: var(--font-headline); font-size: 15px; font-weight: 500; color: var(--dark); }
.hcbody .sb { font-family: var(--font-light); font-size: 10px; color: var(--text-light); margin-top: 2px; }
.hcbody .pr { font-family: var(--font-head-md); font-size: 13px; color: var(--cocoa); margin-top: 5px; }
.hero-badge { position: absolute; bottom: 68px; left: 0; z-index: 4; background: var(--cocoa); color: var(--linen); border-radius: 14px; padding: 13px 17px; box-shadow: 0 8px 28px rgba(92,64,51,.3); }
.hero-badge p { font-family: var(--font-light); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; opacity: .65; margin-bottom: 2px; }
.hero-badge strong { font-family: var(--font-headline); font-size: 18px; font-weight: 400; display: block; }


/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee-strip { background: var(--cocoa); padding: 13px 0; overflow: hidden; display: flex; }
.marquee-track { display: flex; animation: marquee 32s linear infinite; white-space: nowrap; }
.mi { display: flex; align-items: center; gap: 20px; padding: 0 28px; font-family: var(--font-light); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--almond); }
.mdot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section { background: var(--white); padding: 128px 80px 96px; position: relative; overflow: hidden; }
.products-nature-top {
  position: absolute;     top: 60px;
    right: 492px;
  width: clamp(150px, 17vw, 260px); height: auto;
  pointer-events: none; user-select: none; z-index: 0;
}

/* Carousel */
.carousel-wrap { position: relative; margin-bottom: 0; }
.carousel-inner { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.carousel-inner::-webkit-scrollbar { display: none; }
.carr-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--oat);
  color: var(--cocoa); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; box-shadow: 0 4px 16px rgba(44,30,20,.1);
}
.carr-btn:hover { background: var(--cocoa); color: var(--linen); border-color: var(--cocoa); }
.carr-prev { left: -22px; }
.carr-next { right: -22px; }

/* Thumbnail card */
.prod-thumb {
  flex: 0 0 calc(20% - 15px); min-width: 170px;
  background: var(--linen); border-radius: 18px; overflow: hidden;
  cursor: pointer; transition: all .3s var(--ease);
  border: 2px solid transparent; position: relative;
}
.prod-thumb:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,30,20,.1); }
.prod-thumb.active { border-color: var(--cocoa); box-shadow: 0 8px 28px rgba(92,64,51,.18); }
.pt-img { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pt-img svg { opacity: .26; }
.pt-img .phlab { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-family: var(--font-light); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: rgba(140,123,110,.65); }
.pi-lav { background: linear-gradient(145deg, #ddd5e8, #cfc7dc); }
.pi-alm { background: linear-gradient(145deg, var(--almond), #ddd2bc); }
.pi-oli { background: linear-gradient(145deg, var(--olive-lt), #b8c9a8); }
.pi-oat { background: linear-gradient(145deg, var(--oat), #c8bda8); }
.pi-blu { background: linear-gradient(145deg, #c0d8e4, #aacad6); }
.pi-drk { background: linear-gradient(145deg, #4a3028, #3d2518); }
.pt-body { padding: 14px 8px 18px; }
.pt-cat { font-family: var(--font-light); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 4px; }
.pt-name { font-family: var(--font-headline); font-size: 17px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.pt-price { font-family: var(--font-head-md); font-size: 13px; color: var(--cocoa); }
.pt-add {
  width: calc(100% - 32px); margin: 0 16px 14px;
  padding: 10px; background: transparent; border: 1.5px solid var(--oat);
  border-radius: var(--pill); font-family: var(--font-head-md); font-size: 9.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cocoa);
  cursor: pointer; transition: all .25s;
}
.pt-add:hover, .prod-thumb.active .pt-add { background: var(--cocoa); color: var(--linen); border-color: var(--cocoa); }

/* Product detail panel */
.prod-detail {
  margin-top: 28px; background: var(--linen); border-radius: 28px;
  display: grid; grid-template-columns: 1.1fr 1.2fr 0.9fr;
  gap: 0; overflow: hidden; border: 1px solid var(--oat);
  transition: opacity .4s var(--ease);
}
.pd-col { padding: 44px 40px; }
.pd-col:not(:last-child) { border-right: 1px solid var(--oat); }
.pd-img-col { padding: 0; }
.pd-img { width: 100%; height: 100%; min-height: 360px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pd-img svg { opacity: .24; }
.pd-img .phlab { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-light); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(140,123,110,.55); }
.pd-img-badge { position: absolute; top: 16px; left: 16px; background: var(--white); border-radius: var(--pill); padding: 5px 12px; font-family: var(--font-light); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); }
.tag-soothe  { background: #e6e0ee; color: var(--lavender); }
.tag-repair  { background: #f0e8e0; color: var(--clay); }
.tag-protect { background: #dce6d4; color: var(--olive); }
.tag-cleanse { background: #d4e6ee; color: #5b8a9e; }
.tag-nourish { background: #f0eae4; color: var(--clay); }
.pd-name { font-family: var(--font-headline); font-size: 38px; font-weight: 400; line-height: 1.05; color: var(--dark); margin-bottom: 6px; }
.pd-variant { font-family: var(--font-light); font-size: 12px; color: var(--text-light); letter-spacing: .08em; margin-bottom: 20px; }
.pd-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.72; color: var(--text-mid); margin-bottom: 24px; }
.pd-benefits { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pd-benefits li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.pd-benefits li::before { content: '✦'; font-size: 8px; color: var(--clay); margin-top: 4px; flex-shrink: 0; }
.pd-price-big { font-family: var(--font-headline); font-size: 44px; font-weight: 400; color: var(--cocoa); line-height: 1; margin-bottom: 6px; }
.pd-price-sub { font-family: var(--font-light); font-size: 11px; color: var(--text-light); letter-spacing: .1em; margin-bottom: 28px; }
.pd-divider { border: 0; border-top: 1px solid var(--oat); margin: 0 0 20px; }
.pd-size-label { font-family: var(--font-head-md); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
.pd-sizes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pd-size-opt {
  padding: 12px 18px; border-radius: 12px; border: 1.5px solid var(--oat);
  background: transparent; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 13px; color: var(--dark);
  transition: all .2s;
}
.pd-size-opt:hover { border-color: var(--clay); }
.pd-size-opt.selected { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }
.sz-price { font-family: var(--font-head-md); font-size: 13px; }
.pd-add-btn {
  width: 100%; padding: 16px; background: var(--cocoa); color: var(--linen);
  border: none; border-radius: var(--pill); font-family: var(--font-head-md);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  cursor: pointer; transition: background .25s, transform .2s; margin-bottom: 12px;
  text-align: center; text-decoration: none;
}
.pd-add-btn:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(92,64,51,.25); }
.pd-view-link { display: block; text-align: center; font-family: var(--font-head-md); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: color .2s; }
.pd-view-link:hover { color: var(--cocoa); }
.pd-view-link.pd-read-more {
  text-align: left;
  margin: 0;
}

.pd-view-link.pd-read-more-inline {
  display: inline;
  margin-left: 6px;
}
.pd-view-link.pd-read-more-block {
  display: none !important;
}
/* Ensure hidden state is preserved on all screen sizes (overrides mobile !important) */
.pd-view-link.pd-read-more.pd-read-more-block.pd-read-more-none {
  display: none !important;
}
.pd-badges { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--oat); display: flex; flex-direction: column; gap: 8px; }
.pd-badge-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-light); font-size: 11px; color: var(--text-light); }
.pd-badge-item::before { content: '✓'; color: var(--olive); font-size: 12px; }

/* Products 3-column layout */
.products-3col {
  display: grid;
  grid-template-columns: 260px 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--oat);
  overflow: hidden;
  margin-top: 32px;
  min-height: 782px; /* Minimum height on desktop to accommodate all contents without clipping */
}
.products-3col-list {
  background: #f5f0e8;
  padding: 36px 0;
  /*display: flex;
  flex-direction: column;*/
  gap: 8px;
  min-width: 220px;
  height: 100%;
      display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}
.mobile-products-carousel { display: none; }
.products-3col-list .prod-thumb {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 28px 18px 36px;
  border-radius: 14px 0 0 14px;
  background: none; border: none; box-shadow: none;
  cursor: pointer; transition: background .2s; position: relative;
 
    transition: all 0.25s;
}
.products-3col-list .prod-thumb.selected,
.products-3col-list .prod-thumb:hover { background: #fff; box-shadow: 0 4px 24px rgba(44,30,20,.04); }
.products-3col-list .prod-thumb .pt-img {
  width: 54px; height: 54px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: #ece6f4;
}
.products-3col-list .prod-thumb .pt-body { display: flex; flex-direction: column; gap: 2px; }
.products-3col-list .prod-thumb .pt-cat { font-family: var(--font-light); font-size: 10px; color: var(--clay); text-transform: uppercase; margin-bottom: 0; }
.products-3col-list .prod-thumb .pt-name { font-family: var(--font-headline); font-size: 15px; color: var(--dark); margin-bottom: 0; }
.products-3col-list .prod-thumb .pt-price { font-family: var(--font-head-md); font-size: 13px; color: var(--cocoa); }
.products-3col-list .prod-thumb .pt-add { display: none !important; }
.products-3col-img {
  display: flex; align-items: center; justify-content: center;
  background: #f8f6f2; height: 100%; padding: 0; overflow: hidden;
  align-self: center; /* Locks the image container height to exactly 782px regardless of column height increases */
  width: 100%;
}
.products-3col-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity 0.25s ease-in-out; }
.products-3col-content {
  padding: 60px 42px 10px;
  display: flex; flex-direction: column; justify-content: flex-start;
  transition: opacity 0.25s ease-in-out;
}
.products-3col-content .pd-cat-tag { align-self: flex-start; width: fit-content; margin-bottom: 16px; }
.products-3col-content .pd-name { font-size: 58px; line-height: 1.02; margin-bottom: 8px; }
.products-3col-content .pd-variant { margin-bottom: 22px; }
.products-3col-content .pd-divider { border: 0; border-top: 1px solid var(--oat); margin: 0 0 20px; }
.products-3col-content .pd-price-big { margin-bottom: 8px; }
.products-3col-content .pd-price-sub { margin-bottom: 22px; }
.products-3col-content .pd-desc { margin-bottom: 16px; }
.products-3col-content .pd-benefits { margin-bottom: 22px; }
.products-3col-content .pd-size-label { margin-bottom: 10px; }
.products-3col-content .pd-sizes { margin-bottom: 18px; }
.products-3col-content .pd-view-link { margin-top: 4px; }
.products-3col-content .pd-badges { display: none; }
.products-panel-stripe {
  border: 1px solid var(--oat);
  border-radius: 0 0 28px 28px;
  background: #f7f4ef;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 10px;
  padding: 22px 28px;
  margin-top: -23px;
  z-index: 1;
  position: relative;
  justify-items: center; 
}
.pps-item { display: flex; align-items: center; gap: 12px; min-height: 42px; }
.pps-icon { width: 28px; height: 28px; flex-shrink: 0; color: #b6a390; }
.pps-text { font-family: var(--font-body); font-size: 15px; line-height: 1.35; color: #3f3229; }


/* ============================================================
   SYSTEM SECTION
   ============================================================ */

.system-section { background: var(--linen); position: relative; padding: 52px 0 26px; overflow: hidden; }
.sys-head { text-align: center; padding: 44px 80px 0; max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.sys-nature-left,
.sys-nature-right {
  position: absolute; top: 130px;
  width: clamp(120px, 15vw, 230px); height: auto;
  pointer-events: none; user-select: none; z-index: 0;
}
.sys-nature-left { left: 26px; }
.sys-nature-right { right: 26px; }
.sys-kicker { font-family: var(--font-head-md); font-size: 17px; letter-spacing: .34em; text-transform: uppercase; color: #584023; margin-bottom: 9px; }
.sys-display { font-family: var(--font-headline); font-size: clamp(48px, 5vw, 76px); font-weight: 400; line-height: 1; color: #3f2d22; letter-spacing: -.01em; margin-bottom: 14px; }
.sys-sub { max-width: 820px; margin: 0 auto; font-family: var(--font-body); font-size: clamp(16px, 1.65vw, 22px); line-height: 1.45; color: #8b7664; }
.sys-points { margin-top: -9px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: -20px; }
.sys-point { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head-md); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #9b8d83; }
.sys-point svg { width: 12px; height: 12px; color: #c2b09f; }
.sys-dot { width: 3px; height: 3px; border-radius: 50%; background: #c7b8a9; }
.sys-feature-image { overflow: hidden; position:relative; margin-top: 50px; }
.sys-feature-image img { display: block; width: 100%; height: auto; }
.sys-ritual { margin: 0; background: #f6efe4; border-top: 1px solid rgba(160,136,120,.2); padding: 58px 56px 24px; }
.sys-ritual-kicker { text-align: center; font-family: var(--font-head-md); font-size: 14px; letter-spacing: .34em; text-transform: uppercase; color: #3e342b; margin-bottom: 33px; margin-top: 3px; }
.sys-ritual-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; }
.sys-ritual-item { display: grid; grid-template-columns: 78px 1fr; align-items: center; column-gap: 12px; }
.sys-ritual-icon { width: 78px; height: 78px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.sys-ritual-icon svg { width: 36px; height: 36px; color: #5b4a3e; }
.sys-ritual-icon.morning { background: #e4cfad; }
.sys-ritual-icon.daily   { background: #d4d7c4; }
.sys-ritual-icon.evening { background: #d7cad7; }
.sys-ritual-phase { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: #9c8571; margin-bottom: 4px; }
.sys-ritual-title { font-family: var(--font-headline); font-size: 25px; color: #3f2d22; margin-bottom: 3px; }
.sys-ritual-copy { font-family: var(--font-body); font-size: 16px; line-height: 1.45; color: #4a3b31; }
.sys-ritual-link { width: 74px; height: 2px; background: rgba(91,74,62,.55); border-radius: 2px; position: relative; }
.sys-ritual-link::after { content: ''; position: absolute; right: -2px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: rgba(91,74,62,.7); transform: translateY(-50%); }


/* ============================================================
   PACKAGES SECTION
   ============================================================ */

.packages-section { background: var(--white); padding: 80px 80px 96px; position: relative; overflow: hidden; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.pkg { border: 1.5px solid var(--oat); border-radius: 22px; padding: 32px 24px; position: relative; transition: all .35s var(--ease); display: flex; flex-direction: column; cursor: pointer; }
.pkg:hover { border-color: var(--cocoa); transform: translateY(-6px); box-shadow: 0 20px 52px rgba(92,64,51,.12); }
.pkg.hl { background: var(--cocoa); border-color: var(--cocoa); }
.pkg.hl .pkn { color: var(--linen); }
.pkg.hl .pkt { color: var(--clay); }
.pkg.hl .pkp { color: var(--linen); }
.pkg.hl .pks { color: var(--clay); }
.pkg.hl .pkd { border-color: rgba(255,255,255,.12); }
.pkg.hl .pki { color: rgba(245,240,232,.7); }
.pkg.hl .pki::before { color: var(--almond); }
.pkg.hl .pkc { background: rgba(255,255,255,.12); color: var(--almond); }
.pkg-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--olive); color: #fff; border-radius: var(--pill); padding: 4px 16px; font-family: var(--font-head-md); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }
.pkico { width: 244px; height: 144px; margin-bottom: 24px; color: var(--clay); }
.pkico svg { display: block; width: 100%; height: 100%; }
.pkg.hl .pkico { color: var(--almond); }
.pkc { display: inline-block; padding: 3px 10px; background: var(--almond); border-radius: var(--pill); font-family: var(--font-light); font-size: 9px; letter-spacing: .12em; color: var(--clay); margin-bottom: 10px; }
.pkn { font-family: var(--font-head-md); font-size: 21px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.pkt { font-family: var(--font-light); font-size: 12px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.pkp { font-family: var(--font-headline); font-size: 38px; font-weight: 400; color: var(--cocoa); line-height: 1; margin-bottom: 3px; }
.pkp sup { font-size: 20px; }
.pks { font-family: var(--font-light); font-size: 11px; color: var(--text-light); margin-bottom: 20px; }
.pkd { border: none; border-top: 1px solid var(--oat); margin-bottom: 16px; }
.pkis { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; flex: 1; }
.pki { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; color: var(--text-mid); }
.pki::before { content: '✦'; font-size: 8px; color: var(--clay); flex-shrink: 0; }
.bpkg { width: 100%; padding: 12px; border-radius: var(--pill); border: 1.5px solid var(--oat); background: transparent; font-family: var(--font-head-md); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid); cursor: pointer; transition: all .25s; text-decoration: none; text-align: center;   }
.bpkg:hover { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }
.bpkg.sl { background: var(--linen); color: var(--cocoa); border-color: var(--linen); }
.bpkg.sl:hover { background: var(--almond); border-color: var(--almond); }


/* ============================================================
   INGREDIENTS SECTION (HOMEPAGE)
   ============================================================ */

.ing-section { background: var(--almond); padding: 80px 80px 96px; position: relative; overflow: hidden; }
.ing-grid {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 0.40fr) 1fr;
  grid-template-areas:
    "text  mid  cards"
    "avoid mid  cards";
  align-items: center;
}
.ing-grid > .ing-text-col  { grid-area: text;  align-self: start; }
.ing-grid > .ing-mid-nature { grid-area: mid;  align-self: center; }
.ing-grid > .ing-cards     { grid-area: cards; align-self: start; }
.ing-grid > .avoid         { grid-area: avoid; align-self: start; }
.ing-mid-nature { display: flex; align-items: center; justify-content: center; pointer-events: none; user-select: none; }
.ing-mid-nature img { width: min(100%, 260px); height: auto; display: block; opacity: .92; }
.ing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ingc { background: var(--white); border-radius: 16px; padding: 22px; transition: transform .3s var(--ease); padding-bottom: 150px; }
.ingc:hover { transform: translateY(-4px); }
/* background images — path relative to css/style.css location */
.ingc-calendula { background: url('../images/calendula.png') center/cover no-repeat; }
.ingc-shea      { background: url('../images/shea_butter.png') center/cover no-repeat; }
.ingc-baobab    { background: url('../images/baobab_oil.png') center/cover no-repeat; }
.ingc-aloe      { background: url('../images/aloe_vera.png') center/cover no-repeat; }
.ingico { width: 34px; height: 34px; border-radius: 10px; background: var(--almond); display: flex; align-items: center; justify-content: center; margin-bottom: 11px; color: var(--clay); }
.ingico svg { width: 18px; height: 18px; display: block; }
.ingn { font-family: var(--font-head-md); font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.ingd { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.62; }
.avoid { margin-top: 40px; background: var(--white); border-radius: 18px; padding: 26px; }
.avoid-t { font-family: var(--font-head-md); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.avoid-ps { display: flex; flex-wrap: wrap; gap: 8px; }
.avoid-p { padding: 6px 13px; border-radius: var(--pill); background: var(--linen); font-family: var(--font-light); font-size: 11px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.avoid-p::before { content: '✕'; font-size: 8px; color: var(--clay); }


/* ============================================================
   PROMISE SECTION
   ============================================================ */

.promise-section { background: var(--dark); padding: 96px 80px; position: relative; overflow: hidden; }
.promise-bg { position: absolute; bottom: -40px; left: 0; right: 0; text-align: center; font-family: var(--font-headline); font-size: 200px; font-weight: 700; color: rgba(255,255,255,.025); pointer-events: none; white-space: nowrap; }
/* Images are direct children of .promise-section (position:relative).
   calc(50% - X) mirrors the old h2-relative offsets at any viewport width. */
.prom-nature-left,
.prom-nature-right { position: absolute; width: clamp(116px, 12vw, 178px); height: auto; pointer-events: none; user-select: none; z-index: 1; }
.prom-nature-left  { left: calc(50% - 357px); top: 97px; }
.prom-nature-right { right: calc(50% - 350px); top: 20px; }
.prom-h { text-align: center; margin-bottom: 64px; }
.prom-h .eyebrow { justify-content: center; }
.prom-h .stitle { color: var(--linen); }
.prom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; z-index: 1; }
.prom-item { background: rgba(255,255,255,.04); border-radius: 16px; padding: 38px 26px; text-align: center; transition: background .3s; }
.prom-item:hover { background: rgba(255,255,255,.08); }
.prom-ico { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: rgba(237,228,211,.92); }
.prom-ico svg { width: 24px; height: 24px; display: block; }
.prom-n { font-family: var(--font-head-md); font-size: 19px; font-weight: 400; color: var(--almond); margin-bottom: 12px; }
.prom-d { font-family: var(--font-light); font-size: 13px; color: rgba(205,185,170,.62); line-height: 1.68; }


/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section { background: var(--linen); padding: 80px; }
.cta-inner { background: linear-gradient(135deg, var(--almond) 0%, var(--linen) 55%, var(--lavender-lt) 100%); border-radius: 32px; padding: 76px; text-align: center; border: 1px solid var(--oat); position: relative; overflow: hidden; }
.cta-blob1 { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%); opacity: .42; pointer-events: none; }
.cta-blob2 { position: absolute; bottom: -100px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 70%); opacity: .52; pointer-events: none; }
.cta-inner .eyebrow { justify-content: center; position: relative; z-index: 1; }
.cta-inner .stitle { max-width: 540px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-p { font-family: var(--font-body); font-size: 16px; color: var(--text-mid); line-height: 1.68; max-width: 500px; margin: 0 auto 44px; position: relative; z-index: 1; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; z-index: 1; }
.cta-trust { display: flex; justify-content: center; gap: 32px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--oat); position: relative; z-index: 1; }
.ct-item { text-align: center; }
.ct-val { font-family: var(--font-headline); font-size: 22px; font-weight: 400; color: var(--cocoa); margin-bottom: 4px; }
.ct-lbl { font-family: var(--font-light); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); }
.cta-vline { width: 1px; background: var(--oat); }


/* ============================================================
   HOMEPAGE RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .products-section,.packages-section,.ing-section,.promise-section,.cta-section { padding: 64px 32px; }
  .products-nature-top { right: 34px; top: 12px; width: clamp(132px,22vw,210px); opacity: .16; }
  .sys-head { padding: 42px 32px 0; }
  .sys-nature-left,.sys-nature-right { top: 64px; width: clamp(96px,16vw,170px); opacity: .13; }
  .sys-nature-left { left: 10px; }
  .sys-nature-right { right: 10px; }
  .sys-ritual { padding: 16px 32px 22px; }
  .sys-ritual-row { grid-template-columns: 1fr; gap: 14px; }
  .sys-ritual-link { display: none; }
  .sys-ritual-item { grid-template-columns: 66px 1fr; }
  .sys-ritual-icon { width: 66px; height: 66px; }
  .sys-ritual-title { font-size: 26px; }
  .sys-ritual-copy { font-size: 14px; }
  .sys-sub { font-size: 17px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .prom-grid { grid-template-columns: 1fr 1fr; }
  .prom-nature-left,.prom-nature-right { top: 58px; width: clamp(96px,14vw,154px); opacity: .14; }
  .prom-nature-left { left: 10px; }
  .prom-nature-right { right: 10px; }
  .prod-detail { grid-template-columns: 1fr; }
  .pd-col:not(:last-child) { border-right: none; border-bottom: 1px solid var(--oat); }
  .pd-img { min-height: 240px; }
  .ing-grid { grid-template-columns: 1fr minmax(120px,0.42fr) 1fr; }
  .ing-mid-nature img { width: min(100%,190px); }
  .products-3col { grid-template-columns: 1fr; }
  .products-3col-content .pd-name { font-size: 36px; }
  .products-3col-img { min-height: 320px; }
  .products-panel-stripe { grid-template-columns: 1fr 1fr 1fr; }
  .pd-price-big{font-size: 28px;}
}

 

 .story-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head-md); font-size: 15px; letter-spacing: .14em;
  color: var(--text-mid); text-decoration: none; transition: color .2s;
}
.story-cta::after { content: '→'; transition: transform .2s; }
.story-cta:hover { color: var(--cocoa); }
.story-cta:hover::after { transform: translateX(4px); }

@media (max-width: 768px) {
  .hero{
    background:url(../images/home_banner_mobile_org.png) center/cover no-repeat !important;
    position: relative;
    flex-direction: row;
    min-height: 139vh;
    align-items: flex-start;
  }
  .hero-headline { font-size: clamp(43px, 4.9vw, 74px); }
  .hero-cta {
    display: block;
  }
  
  .story-cta {
    margin-top: 5px;
    font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--cocoa);
  font-family: var(--font-head-md); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--pill); border: 1.5px solid var(--cocoa);
  transition: all .25s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
          background: #f5eade99;
}
.story-cta:hover { border-color: var(--cocoa); background: var(--cocoa); color: var(--linen); }

  .sect-header{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
  }
  .sect-header .btn-ghost{
    margin-bottom: 8px;
    padding-top: 40px;
  }
  .hero-cta .btn-ghost {
    margin-top: 20px;
  }
  .hero .container {
    padding-top: 89px;
}
    .packages-promise
 {
        padding: 48px 20px;
        background-position: -140px 20px;
        background-size: auto 50%;
    }
    .about-story-inner {
    padding-top: 0;
}
    .account-shell {
        background-size: auto 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
.about-story {
    background: var(--white) url(../images/about_page_bg.jpg);
    padding: 80px;
    padding-bottom: 211px;
}
.wholesale-section__card{
      padding: 56px 34px;
}
.wholesale-section__btn{
      padding: 14px 29px;
}
.system-section{background-color: #FAFAF7;}
.packages-section{padding-top: 30px;}
.sys-head {
    background: #f5f0e8;
    margin-top: -52px;
    padding-top: 80px;
    margin-bottom: -60px;
    padding-bottom: 77px;
}
.sys-feature-image{width:100%; overflow:hidden;}
.ing-cards{grid-template-columns: 1fr;}
  .hero-trust {
        position: absolute;
        bottom: 0;
        background: #fff;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        width: 113%;
        left: -20px;
        padding: 11px 0;
        text-align: center;
    }
    .hero-pills .pill{display: none;}
    .hero-pills .pill:first-child, .hero-pills .pill:last-child {
        display: block;
    }

.sys-feature-image img.system-image-mobile {
    width: 130%;
    max-width: none;
    position: relative;
    left: -40px;
    margin-top: 60px;
}
    .page-header {
        padding: 44px 16px 0;
        display: flex;
        padding-top: 100px;
        background-size: 370% auto;
        background-position: 0px 20px;
    }
    .products-area .row-content {
        padding: 20px 24px;
        border: 1px solid #d9cebc;
        margin-bottom: 30px;
        border-top: 0;
        border-radius: 0 0 20px 20px;
        padding-bottom: 34px;
    }
    .products-area.grid-view .row-content {
        border: none;
        margin-bottom: 0;
    }
.row-footer
 {
    align-items: flex-start;
    margin-top: auto;
    flex-direction: column;
}
.products-area.grid-view .products-list {
    grid-template-columns: repeat(2, 1fr);
}
.products-area.grid-view .btn-atc {
    padding: 12px 16px;
}
.products-area{
  padding-top:25px;
}
    
  .hero-left { padding: 34px 20px 50px; }
  .sys-nature-left,.sys-nature-right { display: none; }
  .sys-ritual { padding: 14px 18px 18px; }
  .sys-ritual-kicker { font-size: 8px; letter-spacing: .26em; }
  .sys-ritual-item { grid-template-columns: 56px 1fr; column-gap: 10px; }
  .sys-ritual-icon { width: 56px; height: 56px; }
  .sys-ritual-icon svg { width: 28px; height: 28px; }
  .sys-ritual-title { font-size: 20px; }
  .sys-ritual-copy { font-size: 13px; }
  .sys-kicker { font-size: 9px; letter-spacing: .26em; }
  .sys-display { font-size: clamp(36px,10vw,52px); margin-bottom: 12px; }
  .sys-sub { font-size: 16px; line-height: 1.42; }
  .sys-points { gap: 12px 14px; margin-top: 18px; }
  .sys-point { font-size: 9.5px; letter-spacing: .13em; }
  .pkg-grid { grid-template-columns: 1fr; }
  .prom-grid { grid-template-columns: 1fr; gap: 8px; }
  /* Edge-pinned nature decorations — behind all content */
      .prom-nature-left, .prom-nature-right {
        display: block;
        z-index: 0;
        width: clamp(72px, 49vw, 108px);
        opacity: 1;
        top: 110px;
        transform: translateY(-50%);
    }
  .prom-nature-left  { left: 0; }
  .prom-nature-right { right: 0; }
  /* Lift the content above the decorations */
  .promise-section > .container { position: relative; z-index: 1; }
  .ing-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mid"
      "text"
      "cards"
      "avoid";
  }
  .ing-mid-nature { padding: 8px 0 6px; }
  .ing-mid-nature img { width: min(220px, 62vw); }
  .cta-section { padding: 20px; }
  .cta-inner { padding: 44px 22px; }
  .cta-btns { flex-direction: column; }
  .cta-trust { flex-wrap: wrap; }
  .products-section { overflow: visible; }
  .products-3col { overflow: hidden; margin-top: 18px; height: auto; }
  .products-3col .products-3col-img { height: 380px; }
  .products-3col > .products-3col-list { display: none; }
  .mobile-products-carousel {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    height: auto;
    min-width: 0;
    margin: 0;
    padding: 10px max(10px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    border: 0;
    border-top: 1px solid rgba(191, 174, 151, .72);
    border-radius: 0;
    background: rgba(245, 240, 232, .94);
    box-shadow: 0 -10px 30px rgba(44, 30, 20, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .mobile-products-carousel.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-products-carousel::-webkit-scrollbar { display: none; }
  .mobile-products-carousel .prod-thumb {
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    scroll-snap-align: center;
    gap: 8px;
    padding: 7px 10px 7px 7px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, .48);
  }
  .mobile-products-carousel .prod-thumb.selected {
    border-color: var(--cocoa);
    background: var(--white);
    box-shadow: 0 4px 14px rgba(44, 30, 20, .1);
  }
  .mobile-products-carousel .prod-thumb .pt-img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 9px;
  }
  .mobile-products-carousel .prod-thumb .pt-body { min-width: 92px; }
  .mobile-products-carousel .prod-thumb .pt-cat,
  .mobile-products-carousel .prod-thumb .pt-price { display: none; }
  .mobile-products-carousel .prod-thumb .pt-name {
    font-size: 13px;
    line-height: 1.15;
    white-space: nowrap;
  }
  .carousel-inner { padding: 4px 0 8px; }
  /* Extra bottom padding so the Add to Cart / View Details buttons
     are never hidden behind the fixed floating carousel */
  .products-section { padding: 64px 20px; overflow:hidden; }
  .products-3col-content { padding-bottom: calc(90px + env(safe-area-inset-bottom));     padding: 44px 15px;}
  .pd-view-link.pd-read-more-inline { display: none !important; }
  .pd-view-link.pd-read-more-block { display: inline-block !important; margin-top: 8px; margin-bottom: 12px; }
      .products-nature-top {
        right: -60px;
        top: 20px;
        width: 210px;
        opacity: 1;
    }
    .ing-grid > .ing-text-col {
    margin-bottom: 30px;
}
.ing-grid > .ing-mid-nature {
    width: 90px;
    position: absolute;
    top: 48px;
    right: 0;
}
.ing-grid > .ing-text-col {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.ing-grid > .ing-cards{position:relative; z-index: 1;}
.ing-section{position:relative}
  .carr-prev { left: -12px; }
  .carr-next { right: -12px; }
  .products-panel-stripe { grid-template-columns: 1fr 1fr; padding: 16px 18px; }
  .pps-text { font-size: 13px; }

  /* Fade hint on right edge of the carousel to signal it's scrollable */
  .mobile-products-carousel::after {
    content: '';
    position: sticky;
    right: 0;
    flex: 0 0 28px;
    align-self: stretch;
    background: linear-gradient(to right, transparent, rgba(245, 240, 232, .88));
    pointer-events: none;
  }
}


/* ============================================================
   ABOUT PAGE — LEGACY CLASS ALIASES
   page-about.php was written before the BEM rename.
   These rules map old selectors to the same visual result.
   ============================================================ */

/* About hero — grid lives on the inner wrapper so .container can carry max-width */
.about-hero__wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ah-deco-svg {
  position: absolute;
  top: 100px;
  right: 42%;
  opacity: .1;
  pointer-events: none;
}
.ah-intro-lead {
  max-width: 480px;
  margin-bottom: 32px;
}
.ah-intro-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.ah-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ah-blob1 { position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, var(--lavender-lt) 0%, transparent 68%); opacity: .4; pointer-events: none; }
.ah-blob2 { position: absolute; bottom: -60px; left: 0; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--olive-lt) 0%, transparent 70%); opacity: .3; pointer-events: none; }
.ah-left  { position: relative; z-index: 2; }
.ah-right { position: relative; z-index: 1; }
.story-img { border-radius: 24px; overflow: hidden; background: var(--almond); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; }
.story-img-ph { position: absolute; inset: 0; background: linear-gradient(145deg, var(--almond), #ddd3be); }
.story-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story-img-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(250,250,247,.9); backdrop-filter: blur(12px); border-radius: 14px; padding: 14px 18px; }
.story-img-badge .big { font-family: var(--font-headline); font-size: 22px; color: var(--cocoa); }
.story-img-badge .sm  { font-family: var(--font-light); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-top: 2px; }
.about-story {
    background: var(--white) url(../images/about_page_bg.jpg);
    padding: 80px;
    padding-bottom: 121px;
}
.about-story-inner { max-width: 800px; margin: 0 auto; padding-top: 100px;}
.story-lead { font-family: var(--font-headline); font-size: clamp(22px, 2.5vw, 34px); font-weight: 400; color: var(--dark); line-height: 1.4; margin-bottom: 28px; font-style: italic; }
.story-body p { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 22px; }
.about-values { background: var(--linen); padding: 80px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px; }
.val-card { background: var(--white); border-radius: 20px; padding: 32px 26px; transition: transform .3s var(--ease), box-shadow .3s; }
.val-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(44,30,20,.1); }
.val-ico  { width: 48px; height: 52px; margin-bottom: 18px; }
.val-name { font-family: var(--font-head-md); font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.val-desc { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.about-quality { background: var(--dark); padding: 80px; position: relative; overflow: hidden; }
/* .aq-bg { position: absolute; bottom: -40px; left: 0; right: 0; text-align: center; font-family: var(--font-headline); font-size: 100px; font-weight: 700; color: rgba(255,255,255,.025); pointer-events: none; white-space: nowrap; } */
.aq-bg { position: absolute; bottom: 0px; left: 0; right: 0; text-align: center; font-family: var(--font-headline); font-size: 100px; font-weight: 700; color: rgba(255,255,255,.025); pointer-events: none; white-space: nowrap; }
.aq-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 80px; align-items: center; position: relative; z-index: 1; }
.aq-title { font-family: var(--font-headline); font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; color: var(--linen); line-height: 1.1; margin-bottom: 20px; }
.aq-title em { font-style: italic; color: var(--clay); }
.aq-body { font-family: var(--font-body); font-size: 14.5px; color: rgba(245,240,232,.6); line-height: 1.8; }
.aq-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.aq-stat { background: rgba(255,255,255,.05); border-radius: 16px; padding: 28px; border: 1px solid rgba(255,255,255,.07); transition: background .3s; }
.aq-stat:hover { background: rgba(255,255,255,.09); }
.aq-stat-val  { font-family: var(--font-headline); font-size: 36px; font-weight: 400; color: var(--clay); margin-bottom: 5px; }

.aq-stat-lbl  { font-family: var(--font-head-md); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(205,185,170,.55); }
.aq-stat-desc { font-family: var(--font-light); font-size: 12px; color: rgba(205,185,170,.45); line-height: 1.6; margin-top: 6px; }
.about-cta {
    background: var(--linen) url(../images/about_family.jpg) no-repeat center 120%;
    padding: 72px 80px;
    text-align: center;
    background-position: 81% 30%;
    background-size: 15%;
}
.about-cta h2 { font-family: var(--font-headline); font-size: clamp(32px, 3.5vw, 50px); font-weight: 400; color: var(--dark); margin-bottom: 14px; }
.about-cta h2 em { font-style: italic; color: var(--olive); }
.about-cta > p { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.75; max-width: 480px; margin: 0 auto 36px; }
.about-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; }

@media (max-width: 1100px) {
  .about-hero__wrap { grid-template-columns: 1fr; padding-top: 50px;}
  .ah-right { display: none; }
  .about-story,.about-values,.about-quality,.about-cta { padding-left: 32px; padding-right: 32px;        margin-bottom: -1px; }
  /* .about-quality .aq-inner { grid-template-columns: 1fr; } */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-cta {
    background-size: 50%;
}
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; }
  .aq-stats { grid-template-columns: 1fr;}

}
@media (max-width: 600px) {
  .about-hero { padding-top: 80px; }
  .ssub.ah-intro-lead, .ah-intro-body, .ah-actions{
    position: relative;
    z-index: 1;
  }
  /* Show mobile art + image, keep desktop right column gone */
    img.about-hero-art--mobile {
        display: block;
        position: absolute;
        top: -50px;
        right: -110px;
        z-index: -1;
        width: 240px;
        pointer-events: none;
    }
  .ah-image-mobile {
    display: block;
    margin: 16px 0 20px;
    position: relative;
  }
  .ah-image-mobile__frame {
    width: 100%; height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  .ah-image-mobile__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
  }
  /* CTA buttons on a single row, no wrap */
  .ah-actions { flex-wrap: nowrap; gap: 10px; }
  .ah-actions .btn-primary,
  .ah-actions .btn-outline { flex: 1; justify-content: center; padding: 13px 12px; font-size: 10px; }
}


/* ============================================================
   FOOTER SOCIAL LINKS
   ============================================================ */

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--almond);
  font-size: 12px;
  text-decoration: none;
  transition: background .2s;
}

.site-footer__social-link:hover { background: rgba(255,255,255,.15); }


/* ============================================================
   GLOBAL MAX-WIDTH CONTAINER
   .soraya-container matches the navigation content width.
   The nav uses: max-width 1380px with 80px inline padding.
   Effective content width = 1220px at wide viewports.
   The existing .container class does the same thing — use
   either class to align content with the nav bar.
   ============================================================ */
.soraya-container {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 80px;
}
@media (max-width: 1100px) { .soraya-container { padding-inline: 44px; } }
@media (max-width: 600px)  { .soraya-container { padding-inline: 20px; } }


/* ============================================================
   WOOCOMMERCE NOTICES — themed to match Soraya design
   ============================================================ */
.woocommerce-notices-wrapper { display: block; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-left: 3px solid;
  list-style: none;
}
.woocommerce-message {
  background: rgba(122,140,106,.1);
  border-left-color: var(--olive);
  color: #4a5e3a;
}
.woocommerce-message::before { display: none; }
.woocommerce-message a { color: var(--olive); font-weight: 500; text-decoration: none; }
.woocommerce-message a:hover { text-decoration: underline; }
.woocommerce-message a.button,
.woocommerce-message .button {
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  margin-left: auto;
  transition: background .2s;
  box-shadow: none;
}
.woocommerce-message a.button:hover { background: #697a56; }
.woocommerce-error {
  background: rgba(192,98,111,.08);
  border-left-color: #c0626f;
  color: #8a3540;
}
.woocommerce-error::before { display: none; }
.woocommerce-error li { margin: 0; padding: 0; }
.woocommerce-error a { color: #c0626f; }
.woocommerce-info {
  background: rgba(160,136,120,.1);
  border-left-color: var(--clay);
  color: var(--cocoa);
}
.woocommerce-info::before { display: none; }
.woocommerce-info a { color: var(--clay); }
.woocommerce-info a.button,
.woocommerce-info .button {
  background: var(--clay);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-left: auto;
  transition: background .2s;
}


/* ============================================================
   ACCOUNT DROPDOWN (header)
   ============================================================ */
.site-nav__account-wrap { position: relative; display: flex; align-items: center; }

.site-nav__account-drop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--oat);
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(44,30,20,.13);
  min-width: 176px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300;
}
.site-nav__account-drop.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.account-drop-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.account-drop-item:hover { background: var(--linen); color: var(--cocoa); }
.account-drop-item svg { color: var(--clay); flex-shrink: 0; }


/* ============================================================
   MYACCOUNT PAGES — Soraya theme
   ============================================================ */
.soraya-account-page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 80px 100px;
}
@media (max-width: 1100px) { .soraya-account-page { padding: 40px 44px 80px; } }
@media (max-width: 600px)  { .soraya-account-page { padding: 32px 20px 60px; } }

.soraya-account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .soraya-account-layout { grid-template-columns: 1fr; gap: 28px; } }

.soraya-account-nav {
  background: var(--linen);
  border-radius: 18px;
  padding: 12px 8px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.soraya-account-nav ul,
.soraya-account-nav .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.soraya-account-nav li,
.soraya-account-nav .woocommerce-MyAccount-navigation-link { margin: 0; }
.soraya-account-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.soraya-account-nav a:hover { background: var(--white); color: var(--dark); }
.soraya-account-nav li.is-active a,
.soraya-account-nav a.is-active,
.soraya-account-nav li.is-active > a,
.soraya-account-nav li.woocommerce-MyAccount-navigation-link--active a {
  background: var(--white);
  color: var(--cocoa);
  font-weight: 500;
}
.soraya-account-content {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--oat);
  padding: 36px 40px;
}
@media (max-width: 600px) { .soraya-account-content { padding: 24px 20px; } }
.soraya-account-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 24px;
}
.soraya-account-content h3 {
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 28px 0 14px;
}
.soraya-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 13px;
}
.soraya-orders-table th {
  font-family: var(--font-head-md);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--oat);
  padding: 10px 14px;
  text-align: left;
}
.soraya-orders-table td {
  padding: 14px;
  border-bottom: 1px solid var(--oat);
  color: var(--text-mid);
  vertical-align: middle;
}
.soraya-orders-table tr:last-child td { border-bottom: none; }
.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.order-status-badge--processing { background: rgba(122,140,106,.12); color: #4a5e3a; }
.order-status-badge--completed  { background: rgba(122,140,106,.2);  color: #3a5030; }
.order-status-badge--pending    { background: rgba(160,136,120,.12); color: var(--cocoa); }
.order-status-badge--on-hold    { background: rgba(160,136,120,.12); color: var(--cocoa); }
.order-status-badge--cancelled  { background: rgba(192,98,111,.1);   color: #8a3540; }
.order-status-badge--refunded   { background: rgba(192,98,111,.1);   color: #8a3540; }
.view-order-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--oat);
  border-radius: 8px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.view-order-btn:hover { border-color: var(--clay); color: var(--clay); }

/* Account forms */
.soraya-account-form { max-width: 520px; }
.soraya-account-form .form-group { margin-bottom: 20px; }
.soraya-account-form .form-label,
.soraya-account-form label {
  display: block;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 7px;
}
.soraya-account-form input[type="text"],
.soraya-account-form input[type="email"],
.soraya-account-form input[type="password"],
.soraya-account-form input[type="tel"],
.soraya-account-form textarea,
.soraya-account-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--oat);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  box-sizing: border-box;
}
.soraya-account-form input:focus,
.soraya-account-form textarea:focus,
.soraya-account-form select:focus { outline: none; border-color: var(--clay); }
.soraya-account-form button[type="submit"],
.soraya-account-form input[type="submit"] {
  background: var(--cocoa);
  color: var(--linen);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
  box-shadow: none;
}
.soraya-account-form button[type="submit"]:hover,
.soraya-account-form input[type="submit"]:hover { background: #3d2a22; }

.soraya-account-dashboard-card {
  background: var(--linen);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.soraya-account-dashboard-card h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0;
}
.soraya-account-dashboard-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}
.soraya-account-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.soraya-account-quick-link {
  background: var(--white);
  border: 1px solid var(--oat);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .15s, color .15s;
}
.soraya-account-quick-link:hover { border-color: var(--clay); color: var(--clay); }
.soraya-account-quick-link svg { color: var(--clay); flex-shrink: 0; }
body.single-product .woocommerce-notices-wrapper {
    max-width: 1223px;
    margin: 110px auto -70px;
}

/* ============================================================
   EMPTY CART PAGE
   ============================================================ */
.soraya-empty-cart {
  text-align: center;
  padding: 120px 40px 60px;
  max-width: 480px;
  margin: 0 auto;
}
.soraya-empty-cart__icon {
  width: 72px;
  height: 72px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--clay);
}
.soraya-empty-cart__icon svg { width: 30px; height: 30px; }
.soraya-empty-cart h2 {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 12px;
}
.soraya-empty-cart h2 em { color: var(--clay); font-style: italic; }
.soraya-empty-cart p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 36px;
}
.soraya-empty-cart__btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;     margin-bottom: 30px;}


/* ============================================================
   LOST PASSWORD FORM
   ============================================================ */
.soraya-lost-pass-wrap {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px 80px;
}
.soraya-lost-pass-card {
  background: var(--white);
  border: 1px solid var(--oat);
  border-radius: 20px;
  padding: 44px 48px;
}
@media (max-width: 600px) { .soraya-lost-pass-card { padding: 32px 24px; } }
.lp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--clay);
  text-decoration: none;
  margin-bottom: 28px;
}
.lp-back:hover { color: var(--cocoa); }


/* ============================================================
   EMPTY CART — button helpers
   ============================================================ */
.btn-outline-dark {
  display: inline-block;
  padding: 13px 28px;
  background: var(--cocoa);
  color: var(--linen);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.btn-outline-dark:hover { background: #3d2a22; color: var(--linen); }
.btn-text-link {
  display: inline-block;
  padding: 13px 4px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  border-bottom: 1.5px solid var(--oat);
  transition: border-color .2s, color .2s;
}
.btn-text-link:hover { color: var(--cocoa); border-color: var(--clay); }


/* ============================================================
   MYACCOUNT — WC address form fields override
   (woocommerce_form_field output inside .soraya-account-form)
   ============================================================ */
.soraya-account-form .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 600px) {
  .soraya-account-form .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}
.soraya-account-form .form-row { margin-bottom: 20px; display: block; width: auto; }
.soraya-account-form .form-row.form-row-wide  { grid-column: 1 / -1; }
.soraya-account-form .form-row.form-row-first,
.soraya-account-form .form-row.form-row-last  { display: block; width: auto; margin-right: 0; }
.soraya-account-form .form-row label {
  display: block;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 7px;
}
.soraya-account-form .form-row label abbr { color: var(--clay); font-style: normal; }
.soraya-account-form .form-row .input-text,
.soraya-account-form .form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--oat);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.soraya-account-form .form-row .input-text:focus,
.soraya-account-form .form-row select:focus { outline: none; border-color: var(--clay); }
.soraya-account-form .form-row.validate-required.woocommerce-invalid .input-text,
.soraya-account-form .form-row.validate-required.woocommerce-invalid select {
  border-color: #b35050;
}
.soraya-account-form .form-row.woocommerce-validated .input-text,
.soraya-account-form .form-row.woocommerce-validated select { border-color: var(--olive); }


/* ============================================================
   VIEW ORDER — WC order-details inside account panel
   ============================================================ */
.soraya-order-details-wrap .woocommerce-order-details {
  border-radius: 14px;
  border: 1px solid var(--oat);
  overflow: hidden;
  margin-bottom: 24px;
}
.soraya-order-details-wrap .woocommerce-order-details h2 {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--oat);
  background: var(--linen);
}
.soraya-order-details-wrap .woocommerce-table--order-details th,
.soraya-order-details-wrap .woocommerce-table--order-details td {
  padding: 14px 20px;
}
.soraya-order-details-wrap .woocommerce-table--order-details tfoot tr th,
.soraya-order-details-wrap .woocommerce-table--order-details tfoot tr td {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  border-top: 1px solid var(--oat);
}
.soraya-order-details-wrap .woocommerce-table--order-details tfoot tr.order-total th,
.soraya-order-details-wrap .woocommerce-table--order-details tfoot tr.order-total td {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}
.soraya-order-details-wrap .woocommerce-column--billing-address,
.soraya-order-details-wrap .woocommerce-column--shipping-address {
  background: var(--linen);
  border-radius: 14px;
  border: 1px solid var(--oat);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.soraya-order-details-wrap .woocommerce-column__title {
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 12px;
}
.soraya-order-details-wrap address {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: normal;
}
.soraya-order-details-wrap .woocommerce-customer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .soraya-order-details-wrap .woocommerce-customer-details { grid-template-columns: 1fr; }
}
/* Order actions (pay now, cancel, etc.) */
.soraya-order-details-wrap .woocommerce-order-details__footer {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.soraya-order-details-wrap .woocommerce-button,
.soraya-order-details-wrap .button {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid var(--oat);
  border-radius: 8px;
  font-family: var(--font-head-md);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.soraya-order-details-wrap .woocommerce-button:hover,
.soraya-order-details-wrap .button:hover { border-color: var(--clay); color: var(--clay); }
.soraya-order-details-wrap .woocommerce-button.pay,
.soraya-order-details-wrap .button.pay {
  background: var(--cocoa);
  color: var(--linen);
  border-color: var(--cocoa);
}
.soraya-order-details-wrap .woocommerce-button.pay:hover { background: #3d2a22; border-color: #3d2a22; }
.lp-back:hover { color: var(--cocoa); }



/* ============================================================
   DISPLAY UTILITIES (Bootstrap-style)
   ============================================================ */

.d-none  { display: none !important; }
.d-block { display: block !important; }
.d-flex  { display: flex !important; }
.d-grid  { display: grid !important; }

/* SM ≥576px */
@media (min-width: 576px) {
  .d-sm-none  { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex  { display: flex !important; }
  .d-sm-grid  { display: grid !important; }
}

/* MD ≥768px */
@media (min-width: 768px) {
  .d-md-none  { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex  { display: flex !important; }
  .d-md-grid  { display: grid !important; }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .d-lg-none  { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex  { display: flex !important; }
  .d-lg-grid  { display: grid !important; }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
  .d-xl-none  { display: none !important; }
  .d-xl-block { display: block !important; }
  .d-xl-flex  { display: flex !important; }
  .d-xl-grid  { display: grid !important; }
}

/* ============================================================
   GENERIC CONTENT PAGE
   Template: Generic Content Page
   Used for Terms of Service, Privacy Policy, FAQs, etc.
   ============================================================ */

.soraya-content-page {
  background: var(--white);
  padding-bottom: 100px;
}

/* Narrower container for comfortable reading */
.soraya-content-page .container {
  max-width: 920px;
}

/* ── Header ─────────────────────────────────────────────────── */

.soraya-content-page__header {
  padding: 122px 0 40px;
  border-bottom: 1px solid rgba(160, 136, 120, .14);
  margin-bottom: 52px;
}

.soraya-content-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head-md, var(--font-headline));
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.soraya-content-page__breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
}

.soraya-content-page__breadcrumb a:hover {
  color: var(--cocoa);
}

.soraya-content-page__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 10px;
}

.soraya-content-page__updated {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
  opacity: .7;
}

/* ── Body prose ─────────────────────────────────────────────── */

.soraya-content-page__body {
  max-width: 720px;
}

.soraya-content-page__body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 0 0 20px;
}

.soraya-content-page__body h2 {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--dark);
  line-height: 1.25;
  margin: 48px 0 14px;
}

.soraya-content-page__body h3 {
  font-family: var(--font-head-md, var(--font-headline));
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin: 36px 0 10px;
}

.soraya-content-page__body h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 28px 0 8px;
}

.soraya-content-page__body ul,
.soraya-content-page__body ol {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin: 0 0 20px;
  padding-left: 22px;
}

.soraya-content-page__body li {
  margin-bottom: 6px;
}

.soraya-content-page__body a {
  color: var(--cocoa);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.soraya-content-page__body a:hover {
  color: var(--dark);
}

.soraya-content-page__body strong {
  font-weight: 600;
  color: var(--dark);
}

.soraya-content-page__body em {
  font-style: italic;
}

.soraya-content-page__body hr {
  border: none;
  border-top: 1px solid rgba(160, 136, 120, .18);
  margin: 44px 0;
}

.soraya-content-page__body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--clay, #c4a882);
  background: var(--linen, #faf7f2);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--text-mid);
}

.soraya-content-page__body blockquote p {
  margin-bottom: 0;
}

/* ── Mobile ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .soraya-content-page { padding-bottom: 70px; }
  .soraya-content-page__header { padding: 110px 0 32px; margin-bottom: 36px; }
}

/* ─── WELCOME DISCOUNT BANNER ────────────────────────────────────────────────── */

.soraya-welcome-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: var(--dark);
  color: var(--linen);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s ease, transform .35s ease;
}

.soraya-welcome-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.swb-text {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
}

.swb-cta {
  flex-shrink: 0;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}

.swb-cta:hover { opacity: .85; }

.swb-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(242,234,224,.5);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.swb-close:hover { color: var(--linen); }

.soraya-discount-notice {
  display: flex;
  align-items: center;
  background: #f0f5ed;
  border-left: 3px solid var(--sage, #7A8C6A);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .soraya-welcome-banner { gap: 10px; padding: 12px 16px; font-size: 13px; }
  .swb-text { text-align: left; }
}

/* ─── GLOBAL ADD-TO-CART TOAST ───────────────────────────────────────────────── */

#soraya-cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--linen);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(44,30,20,.22);
  font-family: var(--font-body);
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s ease, transform .28s ease;
}

#soraya-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sct-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--sage, #7A8C6A);
}

.sct-msg {
  white-space: nowrap;
}

.sct-link {
  color: var(--linen);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--font-head-md);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 4px;
}

.sct-link:hover { opacity: .8; }

.sct-close {
  background: none;
  border: none;
  color: rgba(242,234,224,.55);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 6px;
  margin-left: 2px;
}

.sct-close:hover { color: var(--linen); }

@media (max-width: 600px) {
  #soraya-cart-toast { bottom: 20px; right: 16px; left: 16px; }
}

/* ── Complimentary Gift Bag — Cart Section ─────────────────────────────────── */

.soraya-gift-bag {
  background: #f5f0e870;
  border: 1px solid rgba(139,102,84,.18);
  border-radius: 10px;
  padding: 20px 22px 22px;
  margin-bottom: 28px;
}

.sgb-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139,102,84,.15);
}

.sgb-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brown, #8b6654);
}

.sgb-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark, #1a1a1a);
  margin: 0 0 3px;
}

.sgb-subtitle {
  font-size: 13px;
  color: var(--muted, #7a7063);
  margin: 0;
  line-height: 1.45;
}

.sgb-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.sgb-image-wrap {
  display: none;
}

.sgb-image-wrap--empty {
  border: 1px dashed rgba(139,102,84,.3);
}

.sgb-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s ease;
}

.sgb-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-content: flex-start;
}

.sgb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 140px;
  flex: 1 1 140px;
}

.sgb-field--wide {
  flex: 1 1 100%;
  min-width: 200px;
}

.sgb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted, #7a7063);
}

.sgb-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sgb-select {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b6654' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px;
  border: 1px solid rgba(139,102,84,.25);
  border-radius: 6px;
  padding: 8px 30px 8px 10px;
  font-size: 13px;
  color: var(--dark, #1a1a1a);
  cursor: pointer;
  transition: border-color .2s;
  font-family: inherit;
}

.sgb-select:focus {
  outline: none;
  border-color: var(--brown, #8b6654);
  box-shadow: 0 0 0 3px rgba(139,102,84,.12);
}

.sgb-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.15);
  flex-shrink: 0;
  transition: background .25s;
}

.sgb-input {
  width: 100%;
  border: 1px solid rgba(139,102,84,.25);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--dark, #1a1a1a);
  background: #fff;
  transition: border-color .2s;
  box-sizing: border-box;
}

.sgb-input:focus {
  outline: none;
  border-color: var(--brown, #8b6654);
  box-shadow: 0 0 0 3px rgba(139,102,84,.12);
}

.sgb-counter {
  font-size: 11px;
  color: var(--muted, #7a7063);
}

.sgb-counter--info {
  font-style: italic;
  margin-top: 1px;
}

.sgb-counter--over {
  color: #c0392b;
  font-weight: 600;
}

.sgb-error {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecea;
  border-left: 3px solid #c0392b;
  border-radius: 4px;
  font-size: 13px;
  color: #7f1e1e;
}

/* Responsive — collapse to single column on small screens */
@media (max-width: 640px) {
  .sgb-body {
    grid-template-columns: 1fr;
  }
  .sgb-image-wrap {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
  .sgb-field {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ============================================================
   CART & CHECKOUT RESPONSIVENESS FIXES (Horizontal Scroll)
   ============================================================ */
@media (max-width: 768px) {
  /* Fix checkout steps overflowing on small screens */
  .checkout-steps {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 16px;
    gap: 10px 8px;
    width: 100%;
    border-radius: 12px;
  }
  .cs-step {
    font-size: 8.5px;
    gap: 5px;
  }
  .cs-num {
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
  }
  .cs-arrow {
    margin: 0 4px;
  }
  .cs-arrow svg {
    width: 12px;
    height: 12px;
  }
  
  /* Stack cart actions (coupon & update button) */
  .cart-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .coupon {
    width: 100%;
  }
  .coupon input {
    flex: 1;
    width: 100%;
  }
  .cart-actions .btn-update {
    width: 100%;
  }
  
  /* Reduce padding on cart totals table to fit narrow screens */
  table.shop_table.shop_table_responsive th,
  table.shop_table.shop_table_responsive td {
    padding: 12px 14px;
  }
}

.woocommerce-checkout-payment {
  padding: 20px;
}
