/* Sweet Remedy Honey — Theme CSS
   Author: The Free Website Guys | thefreewebsiteguys.com
   ─────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (defaults — overridden by wp_add_inline_style)
   ───────────────────────────────────────────── */
:root {
  --color-background:  #f5f0e8;
  --color-foreground:  #2e2219;
  --color-primary:     #b87726;
  --color-primary-fg:  #f5f0e8;
  --color-secondary:   #e9e3d7;
  --color-accent:      #4e5d3b;
  --color-accent-fg:   #f5f0e8;
  --color-muted:       #e0d9cb;
  --color-muted-fg:    #5b5148;
  --color-border:      #d4c9b3;
  --logo-height:       64px;

  --font-display: 'Barlow Condensed', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-cond:    'Barlow Condensed', 'Arial Narrow', sans-serif;

  --radius:      0.25rem;
  --shadow-soft: 0 6px 24px -8px rgba(46,34,25,0.10);
  --shadow-elev: 0 14px 40px -12px rgba(46,34,25,0.18);

  --header-height: 88px;
  --ann-height:    36px;
  --transition:    cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.025em; line-height: 1.05; }
img,video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul,ol { list-style: none; }
address { font-style: normal; }
input,textarea,select { font: inherit; }

/* ─────────────────────────────────────────────
   3. LAYOUT UTILITIES
   ───────────────────────────────────────────── */
.container-wide {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.container-editorial {
  width: 100%;
  max-width: 64rem; /* 1024px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container-editorial { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* ─────────────────────────────────────────────
   4. TYPOGRAPHY UTILITIES
   ───────────────────────────────────────────── */
.label-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}
.nav-link {
  font-family: var(--font-cond);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s var(--transition);
}

/* ─────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem; /* 48px */
  padding: 0 2rem;
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s var(--transition), background-color 0.3s, color 0.3s;
}
.btn-primary:hover {
  opacity: 1;
  background-color: var(--color-background);
  color: var(--color-foreground);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn-outline-light:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.btn-technical-inverse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 2rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--color-foreground);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn-technical-inverse:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

.btn-rounded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-foreground);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}
.btn-rounded:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

/* ─────────────────────────────────────────────
   6. ANNOUNCEMENT BAR
   ───────────────────────────────────────────── */
.site-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background-color: var(--color-foreground);
  color: var(--color-background);
}
.site-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  position: relative;
}
.site-announcement__text {
  font-family: var(--font-cond);
  font-size: 0.625rem; /* 10px */
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-align: center;
}
.site-announcement__close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem;
  color: var(--color-background);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.site-announcement__close:hover { opacity: 1; }
.site-announcement.is-hidden { display: none; }

/* WordPress admin bar offset (logged-in preview / admin) */
html.admin-bar .site-announcement {
  top: var(--wp-admin--admin-bar--height, 32px);
}
html.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}
html.admin-bar body.has-announcement .site-header {
  top: calc(var(--wp-admin--admin-bar--height, 32px) + var(--ann-height, 36px));
}
html.admin-bar .mobile-menu {
  top: var(--wp-admin--admin-bar--height, 32px);
  height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}
html.admin-bar.theme-inner-page #page-wrapper,
html.admin-bar .theme-inner-page #page-wrapper {
  padding-top: calc(var(--header-height) + var(--ann-height, 0px) + var(--wp-admin--admin-bar--height, 32px));
}

/* ─────────────────────────────────────────────
   7. SITE HEADER
   ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: top 0.35s var(--transition);
  top: 0;
}
.site-header:has(.mega-menu.is-open) { border-bottom-color: transparent; }
body.has-announcement .site-header { top: 36px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem; /* 72px */
  position: relative;
}
@media (min-width: 1024px) { .site-nav { height: 5.5rem; } }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .site-logo {
    position: static;
    transform: none;
    flex: 0 0 auto;
  }
}
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block;
}
@media (max-width: 1023px) {
  .site-logo-img { height: 48px !important; }
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

/* Hamburger */
.site-nav__hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  flex: 1;
}
@media (min-width: 1024px) { .site-nav__hamburger { display: none; } }
.hamburger-line {
  display: block;
  height: 2.5px;
  background-color: var(--color-foreground);
  border-radius: 1px;
  transition: all 0.3s ease-out;
  transform-origin: center;
}
.hamburger-line--top { width: 20px; }
.hamburger-line--mid { width: 28px; }
.hamburger-line--bot { width: 14px; }
.site-nav__hamburger.is-open .hamburger-line--top { width: 28px; transform: translateY(7.5px) rotate(45deg); }
.site-nav__hamburger.is-open .hamburger-line--mid { opacity: 0; transform: scaleX(0); }
.site-nav__hamburger.is-open .hamburger-line--bot { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }

/* Desktop nav */
.site-nav__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .site-nav__desktop {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-nav__link {
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav__link:hover { color: var(--color-primary); }
.nav-chevron { transition: transform 0.3s; }
.site-nav__mega-trigger.is-active .nav-chevron { transform: rotate(180deg); }

/* Icons */
.site-nav__icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: flex-end;
}
.site-nav__icon-btn {
  padding: 0.5rem;
  color: var(--color-foreground);
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-nav__icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  background-color: var(--color-accent);
  color: var(--color-accent-fg);
  border-radius: 9999px;
}
.theme-cart-count:empty { display: none; }

/* ─────────────────────────────────────────────
   8. MEGA MENU
   ───────────────────────────────────────────── */
.site-nav__item--has-mega { position: relative; }

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
}
.mega-menu.is-open {
  display: block;
  animation: fadeIn 0.2s ease;
}
.mega-menu__surface {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-elev);
}
.mega-menu__inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .mega-menu__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .mega-menu__col { grid-column: span 8; }
  .mega-menu__feature { grid-column: span 4; }
}
.mega-menu__col-title {
  font-size: 0.6875rem;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(46,34,25,0.6);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.mega-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mega-menu__link {
  display: block;
  padding: 0;
  font-size: 0.875rem;
  font-family: var(--font-cond);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.3s;
}
.mega-menu__link:hover { color: var(--color-primary); }
.mega-menu__shop-all {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.6875rem;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-foreground);
  border-bottom: 1px solid var(--color-foreground);
  padding-bottom: 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}
.mega-menu__shop-all:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.mega-menu__feature {
  display: none;
  text-align: left;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .mega-menu__feature { display: block; }
}
.mega-menu__feature-media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
}
.mega-menu__feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.mega-menu__feature:hover .mega-menu__feature-img { transform: scale(1.05); }
.mega-menu__feature-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}
.mega-menu__feature-top {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.mega-menu__feature-bottom {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--color-background);
}
.mega-menu__feature-eyebrow {
  font-size: 0.6875rem;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.95);
}
.mega-menu__feature-title {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-background);
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  margin-bottom: 0.75rem;
}
.mega-menu__feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-background);
  border-bottom: 1px solid rgba(245,240,232,0.8);
  padding-bottom: 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}
.mega-menu__feature:hover .mega-menu__feature-cta {
  color: var(--color-background);
  border-color: var(--color-background);
}

/* ─────────────────────────────────────────────
   9. MOBILE MENU
   ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 88vw;
  max-width: 24rem;
  height: 100%;
  background-color: var(--color-background);
  border-right: 1px solid var(--color-border);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  box-shadow: 0 0 0 rgba(46,34,25,0);
}
.mobile-menu.is-open {
  transform: translateX(0);
  box-shadow: 12px 0 40px -12px rgba(46,34,25,0.18);
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(46,34,25,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 69;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, backdrop-filter 0.45s ease;
}
.mobile-menu__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__item {
  border-bottom: 1px solid rgba(212,201,179,0.4);
}
.mobile-menu:not(.is-open) .mobile-menu__item,
.mobile-menu:not(.is-open) .mobile-menu__footer {
  opacity: 0;
  transform: translateX(-12px);
}
.mobile-menu.is-open.is-animating .mobile-menu__item {
  animation: mobile-menu-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mobile-menu.is-open.is-animating .mobile-menu__item:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.is-open.is-animating .mobile-menu__item:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.is-open.is-animating .mobile-menu__item:nth-child(3) { animation-delay: 0.14s; }
.mobile-menu.is-open.is-animating .mobile-menu__item:nth-child(4) { animation-delay: 0.18s; }
.mobile-menu.is-open.is-animating .mobile-menu__footer {
  animation: mobile-menu-item-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
@keyframes mobile-menu-item-in {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(212,201,179,0.6);
  flex-shrink: 0;
}
.mobile-menu__close { padding: 0.25rem; color: var(--color-foreground); }
.mobile-menu__nav { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 0.75rem 0.5rem; }
.mobile-menu__list { display: flex; flex-direction: column; }
.mobile-menu__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-foreground);
  text-align: left;
}
.mobile-menu__sub {
  padding: 0 0.75rem 0.75rem;
  display: none;
}
.mobile-menu__sub.is-open { display: block; animation: fadeIn 0.2s; }
.mobile-menu__sub-title {
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(46,34,25,0.5);
  margin-bottom: 0.5rem;
}
.mobile-menu__sub-list { display: flex; flex-direction: column; }
.mobile-menu__sub-list a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: rgba(46,34,25,0.8);
}
.mobile-menu__sub-list a:hover { color: var(--color-primary); }
.mobile-menu__sub-all {
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  padding: 0.625rem 0;
}
.mobile-menu__footer {
  border-top: 1px solid rgba(212,201,179,0.6);
  padding: 1rem 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  flex-shrink: 0;
}
.mobile-menu__footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}
.mobile-menu__footer-btn--outline { border: 1px solid var(--color-border); }
.mobile-menu__footer-btn--outline:hover { background-color: var(--color-primary); color: var(--color-primary-fg); border-color: var(--color-primary); }
.mobile-menu__footer-btn--solid { background-color: var(--color-foreground); color: var(--color-background); }
.mobile-menu__footer-btn--solid:hover { background-color: var(--color-primary); }

/* ─────────────────────────────────────────────
   10. SEARCH DIALOG
   ───────────────────────────────────────────── */
.search-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.search-dialog.is-open { display: flex; flex-direction: column; }
.search-dialog__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.search-dialog__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.search-dialog__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--color-foreground);
  padding-bottom: 0.75rem;
}
.search-dialog__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-foreground);
}
.search-dialog__input::placeholder { color: rgba(46,34,25,0.4); }
.search-dialog__close { color: var(--color-foreground); opacity: 0.6; transition: opacity 0.2s; }
.search-dialog__close:hover { opacity: 1; }
.search-dialog__results { margin-top: 1.5rem; }
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .search-results-grid { grid-template-columns: repeat(4, 1fr); } }
.search-result-card { display: block; }
.search-result-card__img-wrap { aspect-ratio: 3/4; overflow: hidden; background-color: var(--color-secondary); margin-bottom: 0.5rem; }
.search-result-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.search-result-card:hover .search-result-card__img { transform: scale(1.03); }
.search-result-card__title {
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.search-results-section-title {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin-bottom: 1rem;
}
.search-no-results {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  font-size: 0.875rem;
}

/* ─────────────────────────────────────────────
   11. CONTACT MODAL
   ───────────────────────────────────────────── */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.contact-modal.is-open { display: flex; }
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(46,34,25,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.contact-modal__box {
  position: relative;
  z-index: 1;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
}
.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-foreground);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.contact-modal__close:hover { opacity: 1; }
.contact-modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.75rem 0;
}
.contact-modal__desc {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  margin-bottom: 1.5rem;
}
.contact-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.contact-modal__field { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-modal__field label {
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}
.contact-modal__field input,
.contact-modal__field textarea {
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-modal__field input:focus,
.contact-modal__field textarea:focus { border-color: var(--color-foreground); }
.contact-modal__field textarea { resize: vertical; min-height: 100px; }
.contact-modal__submit {
  margin-top: 0.5rem;
  width: 100%;
  height: 3rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-modal__submit:hover { background-color: var(--color-primary); }
.contact-modal__success { text-align: center; padding: 1.5rem 0; }
.contact-modal__success-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ─────────────────────────────────────────────
   12. PAGE WRAPPER (for spacing below fixed header)
   ───────────────────────────────────────────── */
#page-wrapper { padding-top: 0; }
.theme-inner-page #page-wrapper {
  padding-top: calc(var(--header-height) + var(--ann-height, 0px));
}
body.has-announcement .theme-inner-page #page-wrapper {
  padding-top: calc(var(--header-height) + 36px);
}

/* ─────────────────────────────────────────────
   13. HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.hero__content .container-wide {
  padding-bottom: 6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) { .hero__content .container-wide { padding-bottom: 7rem; } }
.hero__text-wrap { max-width: 40rem; animation: slideUp 1.2s var(--transition) 0.3s both; }
.hero__eyebrow {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-background);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }
.hero__body {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.9);
  max-width: 28rem;
  line-height: 1.625;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero__body { font-size: 1rem; } }
.hero__cta {
  width: 240px;
}
.resources-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  width: 240px;
  height: 3rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}
.resources-hero__cta:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
}

/* ─────────────────────────────────────────────
   14. CAPTION STRIP
   ───────────────────────────────────────────── */
.caption-strip {
  border-bottom: 1px solid var(--color-border);
}
.caption-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .caption-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.caption-strip__heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--color-foreground);
}
@media (min-width: 768px) { .caption-strip__heading { font-size: 1.5rem; } }
.caption-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-foreground);
  transition: color 0.3s;
}
.caption-strip__link:hover { color: var(--color-primary); }
.caption-strip__arrow { transition: transform 0.3s; }
.caption-strip__link:hover .caption-strip__arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   15. OUR BLENDS CAROUSEL
   ───────────────────────────────────────────── */
.blends-section {
  background-color: var(--color-background);
  padding-top: 4rem;
  padding-bottom: 3rem;
  scroll-margin-top: 6rem;
}
@media (min-width: 1024px) {
  .blends-section {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}
.blends-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .blends-section__header { margin-bottom: 2.5rem; } }
.blends-section__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) { .blends-section__title { font-size: 2.25rem; } }
.blends-section__carousel-wrap { position: relative; }
.blends-section__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
.blends-section__carousel::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .blends-section__carousel { gap: 1rem; } }

.blend-tile {
  position: relative;
  flex-shrink: 0;
  width: 85%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-secondary);
  text-align: left;
  scroll-snap-align: start;
  cursor: pointer;
}
@media (min-width: 640px) { .blend-tile { width: calc(50% - 6px); } }
@media (min-width: 1024px) { .blend-tile { width: calc(33.333% - 11px); } }
@media (min-width: 1280px) { .blend-tile { width: calc(25% - 12px); } }
.blend-tile.is-active { box-shadow: inset 0 0 0 2px var(--color-primary); }
.blend-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms ease-out;
}
.blend-tile:hover .blend-tile__img { transform: scale(1.05); }
.blend-tile__overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  pointer-events: none;
}
.blend-tile__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-background);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  line-height: 1.2;
}
.blend-tile__arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--color-background);
  color: var(--color-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.blend-tile:hover .blend-tile__arrow { transform: translateX(4px); }

.blends-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(245,240,232,0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  z-index: 10;
}
.blends-carousel__arrow:hover { background-color: var(--color-background); }
.blends-carousel__arrow--prev { left: 0.5rem; }
.blends-carousel__arrow--next { right: 0.5rem; }
@media (min-width: 768px) { .blends-carousel__arrow--prev { left: 1rem; } .blends-carousel__arrow--next { right: 1rem; } }

/* ─────────────────────────────────────────────
   16. ABOUT SECTION
   ───────────────────────────────────────────── */
.about-section {
  background-color: rgba(233,227,215,0.3);
  padding-top: 5rem;
  padding-bottom: 5rem;
  scroll-margin-top: 6rem;
}
@media (min-width: 1024px) { .about-section { padding-top: 7rem; padding-bottom: 7rem; } }
.about-section__header { margin-bottom: 3.5rem; max-width: 48rem; }
@media (min-width: 1024px) { .about-section__header { margin-bottom: 4rem; } }
.about-section__header .label-eyebrow { display: block; margin-bottom: 1.25rem; }
.about-section__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-foreground);
}
@media (min-width: 768px) { .about-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__title { font-size: 3.75rem; } }
.about-section__title-accent { color: var(--color-primary); font-style: italic; }

.about-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .about-section__layout { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

.about-section__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.about-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section__founders-chip {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(245,240,232,0.95);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.25rem;
  max-width: 16rem;
}
.about-section__founders-label {
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin-bottom: 0.25rem;
}
.about-section__founders-name {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-foreground);
}

.about-section__story { display: flex; flex-direction: column; gap: 2rem; padding-top: 0.5rem; }
@media (min-width: 1024px) { .about-section__story { gap: 2.5rem; } }
.about-section__body p { color: var(--color-muted-fg); font-size: 0.9375rem; line-height: 1.75; }
.about-section__body p + p { margin-top: 1.25rem; }

.about-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}
.about-section__stat { padding: 0 0.5rem; }
.about-section__stat:first-child { padding-left: 0; }
.about-section__stat:last-child { padding-right: 0; }
.about-section__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-section__stat-label {
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}

.about-section__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.375;
  letter-spacing: -0.025em;
  color: var(--color-foreground);
  border-left: 2px solid var(--color-primary);
  padding-left: 1.25rem;
}
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }

/* ─────────────────────────────────────────────
   17. SHOP SECTION
   ───────────────────────────────────────────── */
.shop-section {
  background-color: rgba(233,227,215,0.4);
  scroll-margin-top: 6rem;
}
.shop-section__header {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) { .shop-section__header { padding-top: 7rem; } }
.shop-section__header .label-eyebrow { display: block; margin-bottom: 0.75rem; }
.shop-section__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) { .shop-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section__title { font-size: 3.75rem; } }

/* Filters */
.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  padding-top: 1.5rem;
}
@media (max-width: 639px) {
  .shop-filters {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: auto;
    align-items: stretch;
  }
  .shop-filters .shop-filter {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .shop-filters__clear {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 640px) { .shop-filters { flex-direction: row; gap: 1rem; } }

.shop-filter { position: relative; flex: 1; max-width: 20rem; }
.shop-filter__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  transition: border-color 0.3s;
  cursor: pointer;
}
.shop-filter__btn:hover,
.shop-filter__btn.is-open { border-color: var(--color-primary); }
.shop-filter__inner { display: flex; flex-direction: column; align-items: flex-start; }
.shop-filter__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: rgba(46,34,25,0.5);
}
.shop-filter__value { font-size: 0.875rem; font-family: var(--font-body); color: var(--color-foreground); margin-top: 0.125rem; }
.shop-filter__chevron { flex-shrink: 0; transition: transform 0.3s; }
.shop-filter__btn.is-open .shop-filter__chevron { transform: rotate(180deg); }
.shop-filter__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elev);
  max-height: 20rem;
  overflow-y: auto;
  display: none;
  animation: fadeIn 0.15s ease;
}
.shop-filter__dropdown.is-open { display: block; }
.shop-filter__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-foreground);
  transition: background-color 0.15s;
}
.shop-filter__option:hover { background-color: rgba(233,227,215,0.6); }
.shop-filter__option.is-active { color: var(--color-primary); }

.shop-filters__clear {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-primary);
  align-self: center;
  transition: opacity 0.2s;
}
.shop-filters__clear:hover { opacity: 0.7; }

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}
@media (min-width: 640px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 2rem;
    padding-bottom: 7rem;
  }
}

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-muted);
}
.theme-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.03); }
.theme-product-card__image.is-out-of-stock { opacity: 0.7; }
.theme-product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.theme-product-card__badge--sold-out { background-color: var(--color-foreground); color: var(--color-background); }
.theme-product-card__badge--coming-soon { background-color: var(--color-accent); color: var(--color-accent-fg); }
.theme-product-card__info { padding-top: 1rem; flex: 1; }
.theme-product-card__title {
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--color-foreground);
  transition: color 0.3s;
}
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 0.875rem; font-family: var(--font-cond); font-weight: 600; color: var(--color-foreground); }

/* Empty state */
.shop-empty, .shop-no-results {
  padding: 5rem 2rem;
  text-align: center;
  border: 1px dashed var(--color-border);
  margin-bottom: 5rem;
}
.shop-empty__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty__body { font-size: 0.875rem; color: var(--color-muted-fg); }

/* ─────────────────────────────────────────────
   18. INTENTIONS SECTION
   ───────────────────────────────────────────── */
.intentions-section {
  background-color: var(--color-background);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .intentions-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.intentions-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .intentions-section__header { margin-bottom: 2.5rem; } }
.intentions-section__header .label-eyebrow { display: block; margin-bottom: 0.75rem; }
.intentions-section__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 36rem;
}
@media (min-width: 768px) { .intentions-section__title { font-size: 2.25rem; } }
.intentions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .intentions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .intentions-grid { grid-template-columns: repeat(3, 1fr); } }

.intention-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(233,227,215,0.4);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.5s;
}
.intention-card:hover { border-color: rgba(184,119,38,0.4); }
.intention-card--hidden { display: none; }
.intention-card__img-wrap { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.intention-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms ease-out;
}
.intention-card:hover .intention-card__img { transform: scale(1.04); }
.intention-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .intention-card__body { padding: 1.75rem; } }
.intention-card__eyebrow {
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.intention-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-foreground);
}
.intention-card__desc { font-size: 0.875rem; font-family: var(--font-body); color: var(--color-muted-fg); line-height: 1.6; }
.intention-card__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212,201,179,0.7);
  margin-top: 0.25rem;
}
.intention-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-foreground);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s;
  pointer-events: auto;
  cursor: pointer;
}
.intention-card__cta svg { transition: transform 0.3s; }
.intention-card__cta:hover { color: var(--color-primary); }
.intention-card__cta:hover svg { transform: translateX(4px); }
.intention-card__learn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  transition: color 0.3s;
  pointer-events: auto;
}
.intention-card__learn:hover { color: var(--color-accent); }
.intentions-section__show-more { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ─────────────────────────────────────────────
   19. RESOURCES SECTION
   ───────────────────────────────────────────── */
.resources-section { scroll-margin-top: 6rem; }
.resources-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) { .resources-hero { margin-bottom: 7rem; } }
.resources-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resources-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.resources-hero__inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .resources-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .resources-hero__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.resources-hero__copy { max-width: 40rem; }
.resources-hero__eyebrow {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.25rem;
}
.resources-hero__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-background);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .resources-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .resources-hero__title { font-size: 3.75rem; } }
.resources-hero__body {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.9);
  max-width: 32rem;
  line-height: 1.625;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 0;
}
@media (min-width: 768px) { .resources-hero__body { font-size: 1rem; } }
.resources-hero__logo {
  display: none;
  width: 12rem;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}
@media (min-width: 768px) { .resources-hero__logo { display: block; } }
@media (min-width: 1024px) { .resources-hero__logo { width: 16rem; } }
@media (min-width: 1280px) { .resources-hero__logo { width: 18rem; } }

.resources-cards {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) { .resources-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .resources-cards { grid-template-columns: repeat(4, 1fr); margin-top: 5rem; } }

.resource-card {
  display: block;
  background-color: rgba(245,240,232,0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 1.5rem;
  transition: background-color 0.3s, border-color 0.3s;
  height: 100%;
}
.resource-card:hover { background-color: var(--color-background); border-color: var(--color-primary); }
.resource-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(184,119,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  transition: background-color 0.3s, color 0.3s;
}
.resource-card:hover .resource-card__icon { background-color: var(--color-primary); color: var(--color-primary-fg); }
.resource-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.resource-card:hover .resource-card__title { color: var(--color-primary); }
.resource-card__desc { font-size: 0.875rem; font-family: var(--font-body); color: var(--color-muted-fg); line-height: 1.6; margin-bottom: 1.25rem; }
.resource-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.3s;
}
.resource-card:hover .resource-card__read { color: var(--color-primary); }
.resource-card__read svg { transition: transform 0.3s; }
.resource-card:hover .resource-card__read svg { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   20. FAQ SECTION
   ───────────────────────────────────────────── */
.faq-section {
  margin-bottom: 6rem;
  padding-top: 2rem;
  scroll-margin-top: 7rem;
}
.faq-section__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .faq-section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
}
.faq-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.faq-section__desc {
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: rgba(46,34,25,0.7);
  max-width: 28rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .faq-section__desc { text-align: right; padding-bottom: 0.75rem; } }

.faq-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .faq-section__layout {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
  }
}
.faq-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .faq-sidebar__inner { position: sticky; top: 8rem; } }
.faq-sidebar__inner p {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.625;
  color: var(--color-foreground);
}
@media (min-width: 768px) { .faq-sidebar__inner p { font-size: 1.125rem; } }

.faq-accordion { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.375;
  color: var(--color-foreground);
  transition: color 0.3s;
  cursor: pointer;
}
@media (min-width: 768px) { .faq-item__question { font-size: 1rem; } }
.faq-item__question:hover,
.faq-item__question.is-open { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; margin-top: 2px; color: rgba(46,34,25,0.7); transition: color 0.3s; }
.faq-item__question:hover .faq-item__icon { color: var(--color-primary); }
.faq-icon-minus { display: none; }
.faq-item__question.is-open .faq-icon-plus { display: none; }
.faq-item__question.is-open .faq-icon-minus { display: block; }
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--transition), opacity 0.4s var(--transition);
  opacity: 0;
}
.faq-item__answer.is-open {
  max-height: 500px;
  opacity: 1;
}
.faq-item__answer p {
  padding-bottom: 1.5rem;
  padding-right: 3rem;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   21. CONTACT SECTION
   ───────────────────────────────────────────── */
.contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  scroll-margin-top: 7rem;
  margin-top: 6rem;
  margin-bottom: -5rem;
  border-radius: var(--radius);
}
@media (min-width: 1024px) { .contact-section { margin-bottom: -7rem; } }
.contact-section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(46,34,25,0.7);
  pointer-events: none;
}
.contact-section__inner {
  position: relative;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) { .contact-section__inner { padding-top: 8rem; padding-bottom: 8rem; } }
.contact-section__eyebrow { color: rgba(245,240,232,0.8); display: block; margin-bottom: 1.25rem; }
.contact-section__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-background);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .contact-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__title { font-size: 3.75rem; } }
.contact-section__body {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: rgba(245,240,232,0.85);
  line-height: 1.625;
}
.contact-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 640px) { .contact-section__actions { flex-direction: row; } }
.contact-section__email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  transition: background-color 0.3s, opacity 0.3s;
}
.contact-section__email-btn:hover { background-color: rgba(184,119,38,0.9); opacity: 1; }
.contact-section__phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--color-foreground);
  transition: background-color 0.3s, color 0.3s;
}
.contact-section__phone-btn:hover {
  background-color: var(--color-foreground);
  color: var(--color-background);
}

/* ─────────────────────────────────────────────
   22. FOOTER
   ───────────────────────────────────────────── */
.site-footer { background-color: var(--color-foreground); color: var(--color-background); }
.site-footer__newsletter-band { border-bottom: 1px solid rgba(245,240,232,0.15); }
.site-footer__newsletter-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .site-footer__newsletter-inner {
    grid-template-columns: repeat(12, 1fr);
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
.site-footer__newsletter-copy { grid-column: 1 / -1; }
@media (min-width: 1024px) { .site-footer__newsletter-copy { grid-column: span 6; } }
.site-footer__newsletter-label {
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  display: block;
  margin-bottom: 0.75rem;
}
.site-footer__newsletter-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-background);
}
@media (min-width: 1024px) { .site-footer__newsletter-title { font-size: 2.25rem; } }
.site-footer__newsletter-form {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 640px) { .site-footer__newsletter-form { flex-direction: row; } }
@media (min-width: 1024px) { .site-footer__newsletter-form { grid-column: span 6; } }
.site-footer__newsletter-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,240,232,0.4);
  padding: 0.25rem 0.25rem 0.75rem;
  padding-right: 3rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-background);
  outline: none;
  transition: border-color 0.3s;
}
.site-footer__newsletter-input::placeholder { color: rgba(245,240,232,0.5); }
.site-footer__newsletter-input:focus { border-color: var(--color-background); }
.site-footer__newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  flex-shrink: 0;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}
.site-footer__newsletter-btn:hover { background-color: var(--color-primary); color: var(--color-primary-fg); }

.site-footer__main { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__main { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 4fr 2fr 2fr 2fr 2fr; gap: 3rem; } }

.site-footer__brand { }
.site-footer__logo-link { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; }
.site-footer__logo-img { height: 4rem !important; width: auto !important; display: block; background-color: rgba(245,240,232,0.95); padding: 0.5rem; border-radius: var(--radius); }
.site-logo-text.site-footer__logo-img { /* text logo in footer */ line-height: 1; padding: 0.5rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--color-background); }
.site-footer__tagline {
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-top: 0.75rem;
  display: block;
}
.site-footer__about { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(245,240,232,0.7); max-width: 22rem; line-height: 1.65; }
.site-footer__socials { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.site-footer__social-link { color: rgba(245,240,232,0.7); transition: color 0.2s; }
.site-footer__social-link:hover { color: var(--color-background); }

.site-footer__col-title {
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-bottom: 1.25rem;
  display: block;
}
.site-footer__nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__nav-link {
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: rgba(245,240,232,0.8);
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: inline;
}
.site-footer__nav-link:hover { color: var(--color-background); }
.site-footer__contact-list { gap: 0.75rem; }
.site-footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__contact-item svg { color: rgba(245,240,232,0.8); flex-shrink: 0; margin-top: 2px; }
.site-footer__contact-link { font-size: 0.875rem; font-family: var(--font-body); color: rgba(245,240,232,0.8); transition: color 0.2s; word-break: break-all; }
.site-footer__contact-link:hover { color: var(--color-background); }
.site-footer__contact-item--addr .site-footer__address { font-size: 0.875rem; color: rgba(245,240,232,0.6); line-height: 1.5; }

.site-footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright, .site-footer__built-by {
  font-family: var(--font-cond);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.site-footer__built-by a { text-decoration: underline; text-underline-offset: 3px; color: inherit; transition: color 0.2s; }
.site-footer__built-by a:hover { color: var(--color-background); }

/* ─────────────────────────────────────────────
   23. CART DRAWER + OVERLAY
   ───────────────────────────────────────────── */
#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(46,34,25,0.3);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 32rem;
  background-color: var(--color-background);
  z-index: 51;
  box-shadow: var(--shadow-elev);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; }
.cart-drawer__close { padding: 0.25rem; color: var(--color-foreground); transition: opacity 0.2s; }
.cart-drawer__close:hover { opacity: 0.6; }

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.cart-drawer__empty-icon { color: var(--color-muted-fg); margin-bottom: 1.25rem; }
.cart-drawer__empty-text { font-family: var(--font-body); color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.cart-drawer__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-foreground);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.cart-drawer__continue:hover { background-color: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.cart-drawer__items { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.cart-item { display: flex; gap: 1.25rem; }
.cart-item__img-link { width: 6rem; aspect-ratio: 5 / 6; background-color: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; position: relative; }
.cart-item__img-link img,
.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
}
.cart-item__details { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-item__name {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity 0.2s;
}
.cart-item__name:hover { opacity: 0.7; }
.cart-item__meta { font-size: 0.75rem; font-family: var(--font-body); color: var(--color-muted-fg); font-style: italic; margin-top: 0.375rem; }
.cart-item__price { font-size: 0.875rem; font-family: var(--font-body); margin-top: 0.375rem; }
.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}
.cart-item__qty-btn {
  padding: 0.375rem 0.625rem;
  color: var(--color-foreground);
  transition: background-color 0.15s;
}
.cart-item__qty-btn:hover { background-color: var(--color-secondary); }
.cart-item__qty-display { padding: 0.375rem 0.75rem; font-size: 0.875rem; min-width: 1.75rem; text-align: center; }
.cart-item__remove {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--color-foreground); }

.cart-pair { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.cart-pair__title { font-family: var(--font-display); font-size: 1.125rem; font-style: italic; margin-bottom: 1rem; }
.cart-pair__list { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; -ms-overflow-style: none; scrollbar-width: none; }
.cart-pair__list::-webkit-scrollbar { display: none; }
.cart-pair-card { flex-shrink: 0; width: 8rem; cursor: pointer; text-align: left; }
.cart-pair-card__img-wrap { aspect-ratio: 3 / 4; background-color: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; position: relative; }
.cart-pair-card__img-wrap img,
.cart-pair-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; max-width: none; transition: transform 0.7s ease; }
.cart-pair-card:hover .cart-pair-card__img { transform: scale(1.05); }
.cart-pair-card__name { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-body); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cart-pair-card__price { font-size: 0.75rem; font-family: var(--font-body); color: var(--color-muted-fg); margin-top: 0.125rem; }

.cart-drawer__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-drawer__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cart-drawer__subtotal-label,
.cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.25rem; }
.cart-drawer__tax-note { font-size: 0.75rem; font-family: var(--font-body); color: var(--color-muted-fg); }
.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.cart-drawer__checkout:hover { background-color: var(--color-primary); }

/* ─────────────────────────────────────────────
   24. SINGLE PRODUCT PAGE
   ───────────────────────────────────────────── */
.single-product .page-main { padding-top: 0; }
.single-product .product-layout {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 6rem;
}
@media (min-width: 1024px) {
  .single-product .product-layout {
    grid-template-columns: 1fr 440px;
    padding-top: 7rem;
  }
}
@media (min-width: 1280px) { .single-product .product-layout { grid-template-columns: 1fr 500px; } }

/* Gallery */
.product-gallery {
  position: relative;
  background-color: var(--color-background);
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) { .product-gallery { position: sticky; top: 7rem; align-self: start; } }
.product-gallery__inner { display: flex; }
.product-gallery__thumbs {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}
@media (min-width: 768px) { .product-gallery__thumbs { display: flex; padding: 1.5rem; } }
.product-gallery__thumb {
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
  cursor: pointer;
}
.product-gallery__thumb:hover { opacity: 1; }
.product-gallery__thumb.is-active { border-color: var(--color-foreground); opacity: 1; }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1024px) { .product-gallery__thumb { width: 4rem; height: 4rem; } }
.product-gallery__main {
  flex: 1;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
}
@media (min-width: 768px) { .product-gallery__main { min-height: 78vh; padding: 2rem; } }
@media (min-width: 1024px) { .product-gallery__main { min-height: 88vh; } }
#product-main-img { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; transition: opacity 0.2s; }
.product-gallery__mobile-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
}
@media (min-width: 768px) { .product-gallery__mobile-thumbs { display: none; } }
.product-gallery__mobile-thumb { width: 4rem; height: 4rem; flex-shrink: 0; overflow: hidden; border: 1px solid transparent; opacity: 0.6; }
.product-gallery__mobile-thumb.is-active { border-color: var(--color-foreground); opacity: 1; }
.product-gallery__mobile-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.product-info {
  padding: 2.5rem 1.5rem;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 768px) { .product-info { padding: 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .product-info { padding: 4rem 3rem; } }
.product-breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.product-breadcrumb a { transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb__sep { color: rgba(46,34,25,0.4); }
.product-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 400;
}
.product-sku { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-fg); margin-top: 0.75rem; }
.product-divider { height: 1px; background-color: var(--color-border); margin: 1.75rem 0; }
.product-price { font-family: var(--font-body); font-size: 1.125rem; color: var(--color-foreground); }
.product-note {
  margin-top: 1.75rem;
  background-color: rgba(233,227,215,0.7);
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  color: rgba(46,34,25,0.85);
  line-height: 1.6;
}

/* Size selector */
.product-sizes { margin-top: 1.75rem; }
.product-sizes__label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  margin-bottom: 0.75rem;
  display: block;
}
.product-sizes__options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn {
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  min-width: 3.5rem;
}
.size-btn:hover { border-color: var(--color-foreground); }
.size-btn.is-selected { background-color: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

/* Add to cart area */
.product-add-to-cart { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.product-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}
.theme-qty-minus, .theme-qty-plus {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-foreground);
  transition: background-color 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
input.qty.theme-qty-input {
  width: 3rem;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 0.25rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: none;
  outline: none;
  -moz-appearance: textfield;
}
input.qty.theme-qty-input::-webkit-outer-spin-button,
input.qty.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* WC button overrides — Section 11.4.1 */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-foreground) !important;
  color: var(--color-background) !important;
  border: 1px solid var(--color-foreground) !important;
  border-radius: 0 !important;
  min-height: 3.5rem !important;
  padding: 0 2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-cond) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, opacity 0.2s ease !important;
  text-decoration: none !important;
  width: 100% !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-fg) !important;
  opacity: 1 !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-foreground) !important;
}
/* Loading state */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}
/* Hide WC "View cart" after AJAX add */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.product-add-to-cart .single_add_to_cart_button { width: 100%; }
.product-learn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: background-color 0.3s, color 0.3s;
}
.product-learn-link:hover { background-color: var(--color-foreground); color: var(--color-background); }

/* Details section */
.product-details { margin-top: 3rem; }
.product-details__label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-foreground);
  margin-bottom: 1.25rem;
  display: block;
}
.product-description {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.55;
  color: rgba(46,34,25,0.9);
  white-space: pre-line;
}
.product-details__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.product-details__list li::marker { color: var(--color-primary); }
.product-details__list li {
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: rgba(46,34,25,0.8);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Related products */
.related-products {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}
.related-products__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.related-products__title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; line-height: 1.2; }
.related-products__title em { font-style: italic; }
.related-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2rem;
}
@media (min-width: 640px) { .related-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-products__grid { grid-template-columns: repeat(3, 1fr); } }

/* WC variations — Lovable swatch buttons */
.single-product .variations.product-variations {
  border: none;
  margin: 0;
  width: 100%;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.single-product .product-variation__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin: 0 0 0.75rem;
  font-weight: 400;
}
.single-product .product-variation__value {
  position: relative;
}
.single-product .product-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-product .product-swatch {
  min-width: 3.5rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  border: 1px solid var(--color-border);
  background-color: transparent;
  color: var(--color-foreground);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.single-product .product-swatch:hover:not(.is-disabled) {
  border-color: var(--color-foreground);
}
.single-product .product-swatch.is-selected {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}
.single-product .product-swatch.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.single-product .product-swatch--color {
  min-width: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product .product-swatch--color.is-selected {
  background-color: transparent;
  color: inherit;
  box-shadow: 0 0 0 2px var(--color-background), 0 0 0 3px var(--color-foreground);
}
.single-product .product-swatch__dot {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.single-product .reset_variations { display: none !important; }
.theme-attr-select-hidden { display: none !important; }
.wc-variation-is-unavailable { opacity: 0.4; pointer-events: none; }

/* ─────────────────────────────────────────────
   25. SHOP ARCHIVE PAGE (archive-product.php)
   ───────────────────────────────────────────── */
.shop-archive { padding-top: 2rem; }
.shop-archive__header {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .shop-archive__header { padding-top: 7rem; } }
.shop-archive__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); }

/* ─────────────────────────────────────────────
   26. LEARN / JOURNAL PAGES
   ───────────────────────────────────────────── */
.learn-page { padding-bottom: 5rem; }
@media (min-width: 1024px) { .learn-page { padding-bottom: 7rem; } }
.learn-header-strip {
  border-bottom: 1px solid var(--color-border);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.learn-header-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learn-header-strip__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  transition: color 0.2s;
}
.learn-header-strip__back:hover { color: var(--color-primary); }
.learn-header-strip__brand {
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  display: none;
}
@media (min-width: 640px) { .learn-header-strip__brand { display: inline; } }

.learn-article {
  padding-top: 3rem;
}
@media (min-width: 1024px) { .learn-article { padding-top: 4rem; } }
.learn-article__header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .learn-article__header { margin-bottom: 3.5rem; } }
.learn-article__eyebrow { color: var(--color-primary); display: inline-block; margin-bottom: 1.5rem; }
.learn-article__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.learn-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0.5rem;
}
.learn-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}
.learn-article__hero-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-secondary);
  margin-bottom: 3rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 768px) { .learn-article__hero-img-wrap { margin-left: 0; margin-right: 0; } }
.learn-article__hero-img { width: 100%; height: 100%; object-fit: cover; }

.learn-article__body { }
.learn-article__intro {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--color-foreground);
  margin-bottom: 3rem;
}
/* Drop cap */
.learn-article__intro::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  line-height: 0.85;
  color: var(--color-primary);
}
@media (min-width: 768px) { .learn-article__intro::first-letter { font-size: 5.5rem; } }

.learn-article__sections { display: flex; flex-direction: column; gap: 2.5rem; }
.learn-section__heading { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; margin-bottom: 1rem; }
.learn-section__body { font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.8; color: rgba(46,34,25,0.85); white-space: pre-line; }

.learn-ingredients {
  margin-top: 3.5rem;
  background-color: rgba(233,227,215,0.5);
  border: 1px solid var(--color-border);
  padding: 2rem;
}
@media (min-width: 768px) { .learn-ingredients { padding: 2.5rem; } }
.learn-ingredients__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.learn-ingredients__header svg { color: var(--color-primary); }
.learn-ingredients__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.learn-ingredients__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .learn-ingredients__list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem; } }
.learn-ingredient { border-bottom: 1px solid rgba(212,201,179,0.6); padding-bottom: 1rem; }
.learn-ingredient:last-child { border-bottom: none; }
.learn-ingredient__name { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 0.25rem; }
.learn-ingredient__note { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted-fg); line-height: 1.6; }

.learn-uses { margin-top: 3.5rem; }
.learn-uses__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.learn-uses__header svg { color: var(--color-primary); }
.learn-uses__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.learn-uses__list { display: flex; flex-direction: column; gap: 0.75rem; }
.learn-use-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(46,34,25,0.85);
}
.learn-use-item__dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background-color: var(--color-primary); flex-shrink: 0; }

.learn-author {
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.learn-author__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(184,119,38,0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.learn-author__info { }
.learn-author__name { font-family: var(--font-display); font-size: 1.25rem; margin: 0.375rem 0 0.25rem; }
.learn-author__bio { font-family: var(--font-body); font-size: 0.875rem; color: var(--color-muted-fg); line-height: 1.6; }

.learn-product-cta {
  margin-top: 3.5rem;
  background-color: var(--color-foreground);
  color: var(--color-background);
  padding: 2rem;
}
@media (min-width: 768px) { .learn-product-cta { padding: 2.5rem; } }
.learn-product-cta__label { font-family: var(--font-cond); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,240,232,0.7); margin-bottom: 0.75rem; display: block; }
.learn-product-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .learn-product-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.learn-product-cta__name { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); color: var(--color-background); margin-bottom: 0.25rem; }
.learn-product-cta__price { font-family: var(--font-body); font-size: 0.875rem; color: rgba(245,240,232,0.7); }
.learn-product-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.learn-product-cta__btn:hover { background-color: var(--color-background); color: var(--color-foreground); }

.learn-related { margin-top: 5rem; border-top: 1px solid var(--color-border); padding-top: 4rem; }
@media (min-width: 1024px) { .learn-related { margin-top: 7rem; padding-top: 5rem; } }
.learn-related__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.learn-related__header .label-eyebrow { display: block; margin-bottom: 0.75rem; }
.learn-related__title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; }
.learn-related__all {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-foreground);
  transition: color 0.2s;
}
@media (min-width: 640px) { .learn-related__all { display: inline-flex; } }
.learn-related__all:hover { color: var(--color-primary); }
.learn-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
}
@media (min-width: 768px) { .learn-related__grid { grid-template-columns: repeat(3, 1fr); } }
.learn-related-card { display: block; }
.learn-related-card__img-wrap { aspect-ratio: 4 / 3; overflow: hidden; background-color: var(--color-secondary); margin-bottom: 1.25rem; }
.learn-related-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease-out; }
.learn-related-card:hover .learn-related-card__img { transform: scale(1.05); }
.learn-related-card__img-placeholder { width: 100%; height: 100%; background-color: var(--color-muted); display: flex; align-items: center; justify-content: center; color: rgba(184,119,38,0.4); }
.learn-related-card__eyebrow { display: block; margin-bottom: 0.5rem; }
.learn-related-card__title { font-family: var(--font-display); font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 400; line-height: 1.3; margin-bottom: 0.5rem; transition: color 0.3s; }
.learn-related-card:hover .learn-related-card__title { color: var(--color-primary); }
.learn-related-card__meta { font-family: var(--font-cond); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-fg); }

/* ─────────────────────────────────────────────
   27. GENERIC PAGE
   ───────────────────────────────────────────── */
.page-main {
  min-height: 60vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 2rem;
}
.entry-content { font-size: 1rem; font-family: var(--font-body); line-height: 1.7; max-width: 48rem; }
.entry-content p + p { margin-top: 1rem; }
.entry-content h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 2rem 0 0.75rem; }

/* ─────────────────────────────────────────────
   28. 404 PAGE
   ───────────────────────────────────────────── */
.not-found { text-align: center; padding: 5rem 1.5rem; }
.not-found__code { font-family: var(--font-display); font-size: 6rem; color: var(--color-primary); line-height: 1; margin-bottom: 1rem; }
.not-found__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.not-found__body { font-size: 1rem; color: var(--color-muted-fg); margin-bottom: 2rem; }

/* ─────────────────────────────────────────────
   29. WOOCOMMERCE OVERRIDES
   ───────────────────────────────────────────── */

/* Notices */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: 0.75rem 1.25rem;
  border-left: 4px solid var(--color-primary);
  background-color: rgba(233,227,215,0.6);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.woocommerce-error { border-color: #c0392b; }

/* Checkout — Lovable 2-column layout */
body.woocommerce-checkout .checkout-page.page-main {
  padding-top: 0;
  padding-bottom: 2rem;
  min-height: 0;
}
body.woocommerce-checkout .checkout-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout-page { padding-top: 2.5rem; }
}
body.woocommerce-checkout .checkout-page__container {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout-page__container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .checkout-page__form,
body.woocommerce-checkout .checkout-page__grid,
body.woocommerce-checkout .checkout-page__main,
body.woocommerce-checkout .checkout-page__summary,
body.woocommerce-checkout .checkout-page__customer,
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.checkout-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.checkout-page__back:hover { color: var(--color-foreground); }

.checkout-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.checkout-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .checkout-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .checkout-page__grid {
    gap: 4rem;
  }
}

/* Mobile: form first, summary second (Lovable order-1 / order-2) */
.checkout-page__summary { order: 2; }
.checkout-page__main { order: 1; }
@media (min-width: 768px) {
  .checkout-page__summary { order: 1; }
  .checkout-page__main { order: 2; }
}

.checkout-page__section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.checkout-page__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-page__customer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-page__section + .checkout-page__section--shipping { margin-top: 0; }

/* Order summary items */
.checkout-page__summary-inner.is-updating {
  opacity: 0.6;
  pointer-events: none;
}

.checkout-page .woocommerce-shipping-fields .shipping_address {
  display: block !important;
}
.checkout-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.checkout-item__img-link {
  width: 5rem;
  aspect-ratio: 5 / 6;
  flex-shrink: 0;
  background-color: var(--color-secondary);
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  position: relative;
}
.checkout-item__img-link img,
.checkout-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
}
.checkout-item__body { flex: 1; min-width: 0; }
.checkout-item__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.checkout-item__name:hover { opacity: 0.7; }
.checkout-item__meta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  margin-top: 0.125rem;
}
.checkout-item__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.checkout-item__qty-btn {
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--color-foreground);
  transition: background-color 0.15s;
  line-height: 0;
}
.checkout-item__qty-btn:hover { background-color: var(--color-secondary); }
.checkout-item__qty {
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 1.5rem;
  text-align: center;
}
.checkout-item__remove {
  margin-left: auto;
  padding: 0.25rem;
  color: var(--color-muted-fg);
  transition: color 0.2s;
  line-height: 0;
}
.checkout-item__remove:hover { color: var(--color-accent); }
.checkout-item__line-total {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.checkout-page__summary-totals {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}
.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.checkout-totals__label { color: var(--color-muted-fg); }
.checkout-totals__row + .checkout-totals__row { margin-top: 0.75rem; }
.checkout-totals__row--total {
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.checkout-totals__value--total { color: var(--color-foreground); }

.checkout-page__empty-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.checkout-page__empty-cart:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border-color: var(--color-primary);
}

/* Checkout form fields — Lovable space-y-3 + nested grids */
.checkout-page__customer .woocommerce-billing-fields,
.checkout-page__customer .woocommerce-shipping-fields {
  margin: 0;
  padding: 0;
}
.checkout-page__customer .woocommerce-billing-fields h3,
.checkout-page__customer .woocommerce-shipping-fields h3#ship-to-different-address {
  display: none !important;
}

/* Billing: row 1 = 2 cols (first/last), rows 2–3 = full width (phone/email) */
.checkout-page__customer .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}
.checkout-page__customer #billing_first_name_field { grid-column: 1; }
.checkout-page__customer #billing_last_name_field { grid-column: 2; }
.checkout-page__customer #billing_phone_field,
.checkout-page__customer #billing_email_field {
  grid-column: 1 / -1;
}

/* Shipping: 2 full-width rows + 3-col city/state/zip row */
.checkout-page__customer .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}
.checkout-page__customer #shipping_address_1_field,
.checkout-page__customer #shipping_address_2_field {
  grid-column: 1 / -1;
}
.checkout-page__customer #shipping_city_field { grid-column: 1; }
.checkout-page__customer #shipping_state_field { grid-column: 2; }
.checkout-page__customer #shipping_postcode_field { grid-column: 3; }

@media (max-width: 639px) {
  .checkout-page__customer .woocommerce-billing-fields__field-wrapper,
  .checkout-page__customer .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  .checkout-page__customer #billing_first_name_field,
  .checkout-page__customer #billing_last_name_field,
  .checkout-page__customer #billing_phone_field,
  .checkout-page__customer #billing_email_field,
  .checkout-page__customer #shipping_address_1_field,
  .checkout-page__customer #shipping_address_2_field,
  .checkout-page__customer #shipping_city_field,
  .checkout-page__customer #shipping_state_field,
  .checkout-page__customer #shipping_postcode_field {
    grid-column: 1 / -1;
  }
  body.woocommerce-checkout .checkout-page__container.container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .checkout-page__grid { gap: 2rem; }
  .checkout-page__title { margin-bottom: 1.5rem; }
}

.checkout-page__customer .woocommerce-billing-fields__field-wrapper > .form-row,
.checkout-page__customer .woocommerce-shipping-fields__field-wrapper > .form-row {
  min-width: 0;
}

/* Reset WooCommerce form-row floats and spacing */
.woocommerce-checkout .checkout-page__customer .form-row,
.woocommerce-checkout .checkout-page__customer p.form-row {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
}
.checkout-page__customer .form-row-first,
.checkout-page__customer .form-row-middle,
.checkout-page__customer .form-row-last,
.checkout-page__customer .form-row-wide {
  float: none !important;
  width: 100% !important;
}

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

.checkout-page__customer .woocommerce-input-wrapper {
  width: 100%;
  display: block;
}

.checkout-page__customer input.input-text,
.checkout-page__customer select {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0.75rem 1rem;
  min-height: 2.75rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.25;
  color: var(--color-foreground);
  box-sizing: border-box;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.checkout-page__customer input.input-text::placeholder {
  color: var(--color-muted-fg);
  opacity: 1;
}
.checkout-page__customer input.input-text:focus,
.checkout-page__customer select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}
.checkout-page__customer select {
  padding-right: 2rem;
  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='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
}
body.woocommerce-checkout .checkout-page__customer .select2-container {
  width: 100% !important;
  max-width: 100%;
}
body.woocommerce-checkout form.checkout .form-row-first,
body.woocommerce-checkout form.checkout .form-row-last,
body.woocommerce-checkout form.checkout .form-row-wide {
  width: 100% !important;
  float: none !important;
}

/* Payment / place order */
.checkout-page__payment { margin-top: 0; }
.checkout-page__payment #payment {
  background: none;
  border: none;
}
.checkout-page__payment #payment .payment_methods,
.checkout-page__payment #payment .wc_payment_methods {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.checkout-page__payment #payment .wc_payment_method {
  margin: 0 0 0.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background-color: var(--color-background);
}
.checkout-page__payment #payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  cursor: pointer;
}
.checkout-page__payment #payment .wc_payment_method > input[type="radio"] {
  margin: 0;
  accent-color: var(--color-primary);
}
.checkout-page__payment #payment .payment_box {
  margin: 0;
  padding: 0 1rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted-fg);
  background: none;
  border: none;
}
.checkout-page__payment #payment .payment_box::before {
  display: none;
}
.checkout-page__payment #payment .place-order {
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}
.checkout-page__payment .woocommerce-privacy-policy-text,
.checkout-page__payment .woocommerce-privacy-policy-text p {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted-fg);
  margin: 0 0 1rem;
}
.checkout-page__payment .woocommerce-privacy-policy-text a {
  color: var(--color-foreground);
}
.checkout-page__payment #place_order {
  width: 100%;
  height: 2.75rem;
  padding: 0 2rem;
  background-color: var(--color-primary) !important;
  color: var(--color-primary-fg) !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 0.375rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s !important;
}
.checkout-page__payment #place_order:hover {
  background-color: var(--color-background) !important;
  color: var(--color-primary) !important;
}

.checkout-page__policy {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  text-align: left;
}
.checkout-page__confirm-note {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  text-align: left;
}

/* Empty checkout */
.checkout-page__empty {
  max-width: 42rem;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}
.checkout-page__empty-icon { color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.checkout-page__empty-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.checkout-page__empty-text {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  margin-bottom: 2rem;
}
.checkout-page__empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 2rem;
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border: 1px solid var(--color-primary);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.checkout-page__empty-cta:hover {
  background-color: var(--color-background);
  color: var(--color-primary);
}

/* Hide block checkout remnants */
body.woocommerce-checkout .wc-block-checkout { display: none !important; }
body.woocommerce-checkout .page-title { display: none; }

/* Thank you page */
body.theme-thankyou-page .woocommerce-order { font-family: var(--font-body); }
body.theme-thankyou-page .woocommerce-order h2 { font-family: var(--font-display); padding-bottom: 1rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; color: var(--color-muted-fg); }
body.theme-thankyou-page .woocommerce-order-overview li strong { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-details { margin: 2rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.625rem 1rem; border-bottom: 1px solid var(--color-border); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page { overflow-x: hidden; }

/* ─────────────────────────────────────────────
   30. ANIMATIONS & UTILITIES
   ───────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade */
.sr-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.sr-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ─────────────────────────────────────────────
   31. RESPONSIVE OVERRIDES
   ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero__content .container-wide { padding-bottom: 5rem; }
  .contact-section__inner { padding-top: 5rem; padding-bottom: 6rem; }
  .resources-hero { margin-bottom: 3rem; }
}
