/* ═══════════════════════════════════════════════════════
   HERBELLE REMEDIES — SHOP
   Standalone stylesheet. Mirrors main site brand tokens.
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --parchment:    #F3E0C6;
  --parchment-lt: #FBF2E6;
  --forest:       #2D4530;
  --forest-mid:   #3D6B4F;
  --forest-lt:    #5A7A5C;
  --gold:         #B8965A;
  --gold-lt:      #D4AF7A;
  --ink:          #1A1A18;
  --ink-soft:     #3A3A35;
  --ink-muted:    #6B6B63;
  --cream:        #FDFAF4;
  --border:       rgba(45,69,48,0.12);
  --border-mid:   rgba(45,69,48,0.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       3px;
  --shadow-card:  0 2px 12px rgba(26,26,24,0.07);
  --shadow-hover: 0 6px 24px rgba(26,26,24,0.13);
  --transition:   0.22s ease;
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── UTILITY ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

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

/* ── ANNOUNCEMENT BANNER ──────────────────────────────── */
.shop-banner {
  background: var(--forest);
  color: var(--parchment-lt);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.shop-banner strong {
  color: var(--gold-lt);
}

/* ── NAVIGATION ───────────────────────────────────────── */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: 1240px;
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--forest); }

.nav-links a.active {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 2px solid var(--forest);
  padding-bottom: 2px;
}

/* No green underline indicator on active link inside the mobile dropdown — keep row border */
.nav-links.open a.active {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--transition);
  padding: 0.4rem 0;
}

.nav-cart-btn:hover { color: var(--forest); }

/* Lavender harvest icon toggle */
.harvest-icon--full { display: none; }
.cart-has-items .harvest-icon--empty { display: none; }
.cart-has-items .harvest-icon--full { display: inline-block; }

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--parchment-lt);
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
}

.cart-count[data-count="0"] { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-soft); transition: all 0.3s;
}

/* ── SHOP HERO ────────────────────────────────────────── */
.shop-hero {
  background: var(--forest);
  background-image:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(45,69,48,0.0) 0%, rgba(20,30,20,0.6) 100%),
    linear-gradient(135deg, #2D4530 0%, #1e3022 100%);
  color: var(--parchment-lt);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8965A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.shop-hero-inner {
  position: relative;
  z-index: 1;
}

.shop-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  font-weight: 500;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--parchment-lt);
}

.shop-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.shop-hero-desc {
  font-size: 0.95rem;
  color: rgba(251,242,230,0.72);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.shop-hero-provenance {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184,150,90,0.7);
}

/* ── CATEGORY FILTER ──────────────────────────────────── */
.shop-filters {
  position: relative;
  background: var(--parchment-lt);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.filter-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  padding: 0;
}

.filter-scroll-btn.visible { display: flex; }
.filter-scroll-left  { left:  0.5rem; }
.filter-scroll-right { right: 0.5rem; }


.shop-filters-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-filters-inner::-webkit-scrollbar { display: none; }

.shop-filters-mobile { display: none; }

.filter-select {
  width: 100%;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-mid);
  background: white;
  color: var(--ink);
  padding: 0.6rem 2.2rem 0.6rem 1rem;
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.9rem;
}

.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.filter-btn:hover { color: var(--forest); }

.filter-btn.active {
  color: var(--forest);
  border-bottom-color: var(--forest);
  font-weight: 600;
}

/* ── PRODUCT GRID ─────────────────────────────────────── */
.shop-main {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── SIDEBAR ──────────────────────────────────────────── */
.shop-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sidebar-list a,
.sidebar-list button {
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.sidebar-list a:hover, .sidebar-list a.active,
.sidebar-list button:hover, .sidebar-list button.active { color: var(--forest); font-weight: 500; }

.sidebar-count {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--forest);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ── PRODUCT GRID ─────────────────────────────────────── */
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.products-count {
  font-size: 0.83rem;
  color: var(--ink-muted);
}

.products-sort {
  font-size: 0.8rem;
  border: 1px solid var(--border-mid);
  background: white;
  color: var(--ink-soft);
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 0.85rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── PRODUCT GRID STATES ──────────────────────────────── */
.products-coming-soon {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--parchment-lt);
}

.products-coming-soon p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  max-width: 36ch;
  margin: 0 auto;
  line-height: 1.6;
}

.products-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 4rem 2rem;
}

.products-loading span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.3;
  animation: loading-pulse 1.2s ease-in-out infinite;
}

.products-loading span:nth-child(2) { animation-delay: 0.2s; }
.products-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading-pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(1); }
  40% { opacity: 1; transform: scale(1.3); }
}

.products-empty,
.products-error {
  grid-column: 1 / -1;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}


.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: var(--parchment-lt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Placeholder when no image */
.product-card-image.no-image {
  background: linear-gradient(135deg, var(--parchment-lt), var(--parchment));
}

.product-card-image.no-image::after {
  content: attr(data-initial);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--forest);
  opacity: 0.25;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--forest);
  color: var(--parchment-lt);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

.product-badge.badge-new { background: var(--gold); color: white; }
.product-badge.badge-sold { background: var(--ink-muted); }

.product-card-body {
  padding: 1.1rem 1.1rem 0.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc p { margin: 0; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem 1rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 500;
}

.price-from {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.15em;
}

.product-price-was {
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--font-body);
}

.add-to-basket {
  background: var(--forest);
  color: var(--parchment-lt);
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
}

.add-to-basket:hover { background: var(--forest-mid); }
.add-to-basket:active { transform: scale(0.98); }

.card-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-qty-btn {
  background: var(--forest);
  color: var(--parchment-lt);
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.card-qty-btn:hover { background: var(--forest-mid); }

.card-qty-value,
.card-qty-input {
  min-width: 2rem;
  width: 2.2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  padding: 0 0.25rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
}

.card-qty-input:focus {
  outline: none;
  background: rgba(45,69,48,0.06);
  border-radius: 3px;
}

/* ── FEATURED / CIRCADIAN RITUAL BANNER ──────────────── */
.ritual-banner {
  background: var(--forest);
  color: var(--parchment-lt);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  margin-top: 1rem;
  text-align: center;
  grid-column: 1 / -1;
}

.ritual-banner-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.6rem;
}

.ritual-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.ritual-banner p {
  font-size: 0.85rem;
  color: rgba(251,242,230,0.7);
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: 1.2rem;
}

.ritual-banner-cta {
  display: inline-block;
  border: 1px solid rgba(251,242,230,0.4);
  color: var(--parchment-lt);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}

.ritual-banner-cta:hover {
  background: rgba(251,242,230,0.12);
  border-color: var(--parchment);
}

/* ── CART DRAWER ──────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(26,26,24,0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
}

.cart-clear-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.cart-clear-btn {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0 0 0 0.5rem;
  opacity: 0.45;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.cart-clear-btn:hover { opacity: 1; color: var(--ink); }

.cart-clear-tip {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}
.cart-clear-wrap:hover .cart-clear-tip { opacity: 1; }

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink-muted);
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}

.cart-close:hover { color: var(--ink); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--ink-muted);
  gap: 0.75rem;
}

.cart-empty-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.cart-empty p {
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--parchment-lt);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
}

.cart-item-image.no-image {
  opacity: 0.4;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.cart-item-link {
  cursor: pointer;
  transition: color 0.2s;
}
.cart-item-link:hover { color: var(--forest); }

.cart-item-category {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qty-control-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  background: var(--forest);
  color: var(--parchment-lt);
  border: none;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.qty-btn:hover { background: var(--forest-mid); }

@keyframes qty-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.qty-shake {
  animation: qty-shake 0.38s ease;
  color: var(--gold-lt) !important;
}
@keyframes qty-bump {
  0%   { transform: scale(1);    color: inherit; }
  40%  { transform: scale(1.35); color: var(--forest); font-weight: 700; }
  100% { transform: scale(1);    color: inherit; }
}
.qty-bump { animation: qty-bump 0.28s ease; display: inline-block; }

.qty-value,
.qty-input {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 2rem;
  width: 2rem;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  color: var(--forest);
  padding: 0 0.2rem;
}

.qty-input:focus {
  outline: none;
  background: rgba(45,69,48,0.06);
  border-radius: 3px;
}

@keyframes cart-count-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.cart-count-pulse {
  animation: cart-count-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.cart-item-remove {
  background: none;
  border: none;
  color: var(--ink-muted);
  padding: 4px;
  margin-left: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.cart-item-remove:hover { color: #c0392b; background: rgba(192,57,43,0.08); }

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  flex-shrink: 0;
  align-self: center;
}

/* Stock cap indicator — + button permanently disabled */
.qty-btn.stock-capped,
.card-qty-btn.stock-capped {
  opacity: 0.3;
  cursor: not-allowed;
  color: var(--ink-soft);
}

/* ── CART FOOTER ──────────────────────────────────────── */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: white;
}

.discount-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.discount-input {
  flex: 1;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  font-size: 0.83rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: white;
  transition: border-color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discount-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--ink-muted); }
.discount-input:focus { outline: none; border-color: var(--forest); }

.discount-apply {
  background: var(--parchment-lt);
  color: var(--forest);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  transition: background var(--transition);
}

.discount-apply:hover { background: var(--parchment); }

.cart-subtotals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.subtotal-row.total {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.3rem;
}

.subtotal-row.discount-applied {
  color: var(--forest-mid);
  font-weight: 500;
}

.checkout-btn {
  width: 100%;
  background: var(--forest);
  color: var(--parchment-lt);
  border: none;
  padding: 0.9rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.checkout-btn:hover { background: var(--forest-mid); }

.cart-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* ── CART POSTAGE BAR ─────────────────────────────────── */
.cart-postage {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--parchment-lt);
}

.postage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.postage-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  color: var(--ink-soft);
}

.postage-left svg { color: var(--forest-lt); flex-shrink: 0; }

.postage-cost {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.postage-track {
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.38rem;
}

.postage-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, var(--forest), var(--forest-lt));
  transition: width 0.45s ease;
}

.postage-nudge {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.postage-nudge strong { color: var(--forest); }

.cart-voucher-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 0.85rem;
  padding-top: 0.1rem;
}

.postage-free {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--forest);
}

.postage-free svg { flex-shrink: 0; }
.delivery-herb { vertical-align: middle; margin-left: 0.2rem; }

.free-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--forest);
  background: rgba(45,69,48,0.08);
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── RITUAL CARD LINK BUTTON ──────────────────────────── */
.add-to-basket-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.add-to-basket-link:hover {
  color: var(--forest-mid);
  border-color: var(--forest);
}



/* ── FOOTER ───────────────────────────────────────────── */
.shop-footer {
  background: var(--forest);
  color: rgba(243,224,198,0.65);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243,224,198,0.12);
}

.footer-logo-link { display: inline-block; margin-bottom: 0.75rem; }

.footer-brand-logo {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(18%) saturate(0.6);
  opacity: 0.82;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(243,224,198,0.55);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(243,224,198,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--parchment);
  background: rgba(243,224,198,0.08);
}

.footer-social a svg { display: block; }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C49A52;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(243,224,198,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--parchment-lt); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(243,224,198,0.6);
  margin-bottom: 0.8rem;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(243,224,198,0.35); }

.footer-contact-item a {
  color: inherit;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--parchment-lt); }

.footer-nimh {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  background: rgba(243,224,198,0.05);
  border: 1px solid rgba(243,224,198,0.1);
  border-radius: 3px;
  padding: 0.8rem 1rem;
}

.footer-nimh img {
  width: 32px; height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-nimh span {
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(243,224,198,0.5);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(243,224,198,0.3);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(243,224,198,0.3);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(243,224,198,0.7); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.4rem;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 0.9rem;
  }
  .nav-links a {
    font-size: 0.72rem;
  }
  .nav-inner {
    gap: 0.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .nav-inner {
    gap: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--parchment-lt);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }
  .nav-hamburger { display: flex; }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .shop-filters-inner { display: none; }
  .shop-filters-mobile {
    display: block;
    padding: 0.75rem 0;
  }
}

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

/* ── TOAST ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--parchment-lt);
  font-size: 0.83rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── NEWSLETTER ──────────────────────────────────────── */
.newsletter-section {
  background: var(--parchment-lt, #fdf6ec);
  border-top: 1px solid rgba(45,74,62,0.12);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.newsletter-inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #C8860A);
  margin-bottom: 0.6rem;
}

.newsletter-text h2 {
  font-family: var(--font-display, 'Playfair Display'), serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest, #2D4A3E);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 0.92rem;
  color: var(--ink-light, #5a5a4a);
  line-height: 1.6;
  max-width: 38ch;
}

.newsletter-form-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form-row input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(45,74,62,0.25);
  border-radius: 6px;
  background: #fff;
  color: var(--forest, #2D4A3E);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form-row input[type="email"]::placeholder { color: rgba(45,74,62,0.4); }
.newsletter-form-row input[type="email"]:focus { border-color: var(--gold, #C8860A); }

.newsletter-form-row button {
  padding: 0.75rem 1.5rem;
  background: var(--forest, #2D4A3E);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.newsletter-form-row button:hover { background: #1e3329; transform: translateY(-1px); }

.newsletter-privacy {
  font-size: 0.74rem;
  color: rgba(45,74,62,0.45);
  margin-top: 0.6rem;
}

@media (max-width: 680px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .newsletter-form-row {
    flex-direction: column;
  }
  .newsletter-form-row input[type="email"],
  .newsletter-form-row button {
    width: 100%;
  }
}


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

/* Vivid gold token for product page (apothecary uses a more muted gold) */
.product-page { --gold: #C8860A; }

/* Nav override — forest green, fixed, full-width on product page */
/* ── PRODUCT PAGE — cart count uses forest bg (same as base) ── */
.product-page .add-to-basket {
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}
.product-page .card-qty-control { width: 100%; max-width: 400px; border-radius: 8px; }
.product-page .card-qty-btn { width: 52px; height: 52px; font-size: 1.3rem; }
.product-page .card-qty-input { flex: 1; font-size: 1.1rem; font-weight: 600; width: auto; }

/* Variant selector */
.product-variant-selector { display: flex; flex-direction: column; gap: 0.6rem; }
.product-variant-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-variant-label strong {
  color: var(--gold);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
}
.product-variant-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.product-variant-pill {
  min-width: 60px;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.product-variant-pill:hover:not(:disabled):not(.selected) {
  border-color: var(--forest);
  background: #f5f8f5;
}
.product-variant-pill.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
  font-weight: 700;
}
.product-variant-pill:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Cart count — inherits base forest bubble on cream nav */

/* Hero */
.product-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: #1a1a14;
  cursor: zoom-in;
}
.product-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.92; cursor: zoom-in; }
.product-hero-placeholder {
  width: 100%; height: 100%; min-height: 480px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: linear-gradient(135deg, #1e2b24 0%, #2D4A3E 100%);
  color: rgba(200,134,10,0.25); font-family: var(--font-display); font-size: 8rem;
}
.product-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,10,8,0.72) 100%);
  pointer-events: none;
}
.product-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(2rem,5vw,4rem) clamp(1.25rem,5vw,3rem);
  color: #fff;
}
.product-hero-back { display: none; } /* removed — link moved below hero */

/* ── PRODUCT IMAGE GALLERY ──────────────────────────────── */
.product-gallery-wrap { }
.product-gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 0.5rem;
}
.product-gallery::-webkit-scrollbar { display: none; }
.product-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.18s ease, opacity 0.18s ease;
  opacity: 0.55;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover { opacity: 0.85; }
.product-thumb.active { border-color: var(--gold); opacity: 1; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.22s ease;
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 8, 6, 0.93);
  cursor: zoom-out;
}

.lightbox-img-wrap {
  position: relative; z-index: 1;
  max-width: min(92vw, 900px);
  max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  transition: opacity 0.18s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-nav {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-nav[hidden] { display: none; }

.lightbox-counter {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem; letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-img-wrap { max-width: 96vw; }
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.product-back-link:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-hero-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}
.product-hero-category-link {
  color: inherit;
  text-decoration: none;
}
.product-hero-category-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.product-hero-price {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
}

/* Content area */
.product-content-wrap {
  background: var(--cream);
  width: 100%;
}
.product-detail-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.product-description {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.product-description ul,
.product-description ol {
  padding-left: 0;
  list-style: none;
}
.product-description ul li,
.product-description ol li {
  padding-left: 1.4rem;
  position: relative;
}
.product-description ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.6em;
}
.product-ingredients {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.product-ingredients li {
  padding-left: 1.4rem;
  position: relative;
}
.product-ingredients li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.6em;
}
.product-weight {
  font-size: 0.82rem;
  color: var(--ink-muted);
  opacity: 0.7;
  margin-top: 0.3rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-tag {
  background: rgba(45,74,62,0.07);
  border: 1px solid rgba(45,74,62,0.25);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: var(--forest);
  text-transform: uppercase;
}
.product-divider {
  border: none;
  border-top: 1px solid var(--border);
}
.product-action-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.product-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.product-loading {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 1rem;
}
