/** Shopify CDN: Minification failed

Line 240:0 Unexpected "}"

**/
/* ============================================
   UMARI — Theme CSS
   Bold & Modern Adaptogenic Broth Brand
   ============================================ */

:root {
  --forest: #1A4A3A;
  --terra: #E2522F;
  --terra-light: #F05E35;
  --cream: #F5EFE6;
  --cream-dark: #EDE4D8;
  --charcoal: #1C1C1C;
  --mid: #6B6B6B;
  --white: #FFFFFF;

  --font-display: 'Barlow', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max: 1280px;
  --section-pad: 100px 40px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 600; letter-spacing: 0.04em; text-transform: lowercase; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { line-height: 1.7; font-size: 1rem; font-weight: 400; }

/* ---- UTILITY ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}
.btn:hover::after { transform: translateX(0); }

.btn-primary { background: var(--terra-light); color: var(--white); }
.btn-primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,75,30,0.35); }

.btn-outline {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.tag {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid currentColor;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-bar a { text-decoration: underline; opacity: 0.8; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,74,58,0.12);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(26,74,58,0.08); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  max-width: var(--max); margin: 0 auto;
}
.header-logo img { height: 44px; width: auto; }
.header-logo span {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: var(--forest); letter-spacing: -0.02em;
}

.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal);
  position: relative; padding-bottom: 2px;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--terra);
  transition: width 0.3s var(--ease);
}
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--charcoal); padding: 6px;
  transition: color 0.2s;
}
.header-icon-btn:hover { color: var(--terra); }
.header-cart-count {
  background: var(--terra); color: var(--white);
  font-size: 0.65rem; font-weight: 500;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -4px; right: -4px;
}
.cart-wrapper { position: relative; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: calc(100vh - 112px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: visible;
  align-items: stretch;
}

.hero-left {
  background: var(--forest);
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  
}

.hero-left::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,75,30,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  color: rgba(245,239,230,0.6);
  margin-bottom: 28px;
}
.hero-heading {
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-heading em {
  font-style: italic; color: var(--terra-light);
  display: block;
}
.hero-subtext {
  color: rgba(245,239,230,0.75);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.hero-badge {
  display: flex; flex-direction: column;
  color: var(--cream);
}
.hero-badge-number {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--terra-light);
}
.hero-badge-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }

.hero-right {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}
.hero-right::before {
  content: '';
  position: absolute; bottom: 0px; right: 0px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,75,30,0.12) 0%, transparent 70%);
}

.hero-product-image {
  position: relative;
  width: 100%;
  height: 100%;
}
}
.hero-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-product-tag {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--terra);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
}



/* ============================================
   RITUAL STRIP
   ============================================ */
.ritual-strip {
  background: var(--terra);
  padding: 20px 40px;
  overflow: hidden;
}
.ritual-strip-inner {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.ritual-strip-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0;
}
.ritual-strip-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: var(--section-pad);
  background: var(--cream);
}
.benefits-header {
  text-align: center; margin-bottom: 72px;
}
.benefits-header .tag {
  color: var(--terra); border-color: var(--terra);
  margin-bottom: 20px;
}
.benefits-header h2 { color: var(--forest); }

.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: var(--max); margin: 0 auto;
}
.benefit-card {
  background: var(--forest);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); z-index: 1; }
.benefit-card:nth-child(2) { background: var(--charcoal); }
.benefit-card:nth-child(3) { background: var(--forest); }

.benefit-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,75,30,0.2) 0%, transparent 70%);
}

.benefit-number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(245,239,230,0.08);
  position: absolute; top: 20px; right: 30px;
  line-height: 1;
}
.benefit-icon {
  font-size: 2.2rem; margin-bottom: 24px;
}
.benefit-card h3 {
  color: var(--cream); margin-bottom: 16px;
  font-size: 1.5rem;
}
.benefit-card p {
  color: rgba(245,239,230,0.65); font-size: 0.92rem; line-height: 1.75;
}

/* ============================================
   PRODUCT FEATURE
   ============================================ */
.product-feature {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.product-feature-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: center;
}
.product-feature-image {
  position: relative;
}
.product-feature-image-main {
  background: var(--forest);
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-feature-image-main img { width: 100%; height: 100%; object-fit: cover; }
.product-feature-badge {
  position: absolute; top: 40px; right: -20px;
  background: var(--terra); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.product-feature-badge span:first-child {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
}
.product-feature-badge span:last-child {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8;
}

.product-feature-content { }
.product-feature-content .tag {
  color: var(--terra); border-color: var(--terra);
  margin-bottom: 24px;
}
.product-feature-content h2 { color: var(--forest); margin-bottom: 20px; }
.product-feature-content > p {
  color: var(--mid); margin-bottom: 36px; font-size: 1.05rem;
}

.product-details-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 44px;
  border-top: 1px solid rgba(26,74,58,0.12);
}
.product-detail-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,74,58,0.12);
}
.product-detail-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--terra);
  flex-shrink: 0; border: 1px solid rgba(226,82,47,0.25);
}
.product-detail-text { font-size: 0.92rem; color: var(--charcoal); }
.product-detail-text strong { font-weight: 500; }



/* ============================================
   RITUAL / HOW TO
   ============================================ */
.ritual {
  padding: var(--section-pad);
  background: var(--forest);
  position: relative; overflow: hidden;
}
.ritual::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,75,30,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.ritual-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.ritual-header { text-align: center; margin-bottom: 80px; }
.ritual-header .tag { color: rgba(245,239,230,0.5); border-color: rgba(245,239,230,0.3); margin-bottom: 20px; }
.ritual-header h2 { color: var(--cream); }
.ritual-header p { color: rgba(245,239,230,0.6); max-width: 480px; margin: 16px auto 0; }

.ritual-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.ritual-step {
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(245,239,230,0.08);
  padding: 44px 32px;
  position: relative;
  transition: background 0.3s;
}
.ritual-step:hover { background: rgba(245,239,230,0.07); }

.ritual-step-number {
  font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  color: rgba(201,75,30,0.2);
  line-height: 1; margin-bottom: 20px;
}
.ritual-step h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 12px; }
.ritual-step p { color: rgba(245,239,230,0.55); font-size: 0.88rem; line-height: 1.75; }

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients {
  padding: var(--section-pad);
  background: var(--cream);
}
.ingredients-inner { max-width: var(--max); margin: 0 auto; }
.ingredients-header { margin-bottom: 60px; }
.ingredients-header .tag { color: var(--terra); border-color: var(--terra); margin-bottom: 20px; }
.ingredients-header h2 { color: var(--forest); }
.ingredients-header p { color: var(--mid); max-width: 480px; margin-top: 16px; }

.ingredients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.ingredient-card {
  background: var(--cream-dark);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.ingredient-card:hover { background: var(--forest); }
.ingredient-card:hover .ingredient-name,
.ingredient-card:hover .ingredient-benefit { color: var(--cream); }
.ingredient-card:hover .ingredient-origin { color: rgba(245,239,230,0.5); }

.ingredient-abbr {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--terra); margin-bottom: 20px;
  transition: color 0.3s;
}
.ingredient-card:hover .ingredient-abbr { color: rgba(226,82,47,0.7); }
.ingredient-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 8px;
  transition: color 0.3s;
}
.ingredient-origin {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 14px;
  transition: color 0.3s;
}
.ingredient-benefit {
  font-size: 0.88rem; color: var(--mid); line-height: 1.65;
  transition: color 0.3s;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: var(--section-pad);
  background: var(--charcoal);
}
.social-proof-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.social-proof-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 860px; margin: 0 auto 32px;
  line-height: 1.2;
}
.social-proof-quote span { color: var(--terra-light); }
.social-proof-source { color: rgba(245,239,230,0.4); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 64px;
}
.review-card {
  background: rgba(245,239,230,0.04);
  padding: 40px 32px; text-align: left;
}
.review-stars {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 20px;
}
.review-text { color: rgba(245,239,230,0.75); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; }
.review-author { color: rgba(245,239,230,0.4); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.email-capture {
  padding: 80px 40px;
  background: var(--terra);
  text-align: center;
}
.email-capture-inner { max-width: 560px; margin: 0 auto; }
.email-capture h2 {
  color: var(--white); margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.email-capture p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1rem; }

.email-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.email-input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body); font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(255,255,255,0.45); }
.email-input:focus { border-color: rgba(255,255,255,0.7); }
.email-submit {
  padding: 16px 28px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: all 0.2s;
}
.email-submit:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 80px 40px 40px;
  color: rgba(245,239,230,0.6);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--cream); margin-bottom: 16px;
}
.footer-brand-desc { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(245,239,230,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(245,239,230,0.6);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--terra); color: var(--terra); }

.footer-col h4 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.88rem; color: rgba(245,239,230,0.55);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--terra-light); }

.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 32px; border-top: 1px solid rgba(245,239,230,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: rgba(245,239,230,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(245,239,230,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,239,230,0.6); }

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  max-width: var(--max); margin: 0 auto;
  padding: 60px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.product-gallery { }
.product-gallery-main {
  background: var(--cream-dark);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  border-radius: 2px; overflow: hidden;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 8px; }
.product-gallery-thumb {
  width: 80px; height: 80px;
  background: var(--cream-dark);
  border: 2px solid transparent;
  cursor: pointer; border-radius: 2px; overflow: hidden;
  transition: border-color 0.2s;
}
.product-gallery-thumb.active, .product-gallery-thumb:hover { border-color: var(--forest); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { position: sticky; top: 100px; }
.product-info .tag { color: var(--terra); border-color: var(--terra); margin-bottom: 16px; }
.product-info h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--forest); margin-bottom: 12px;
}
.product-info-tagline { color: var(--mid); font-size: 1.05rem; margin-bottom: 28px; }

.product-info-price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px;
}
.product-info-price .price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--forest);
}
.product-info-price .per { font-size: 0.82rem; color: var(--mid); }

.product-variants { margin-bottom: 32px; }
.product-variants-label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px; }
.variant-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  padding: 10px 20px;
  font-family: var(--font-body); font-size: 0.85rem;
  border: 1.5px solid rgba(26,74,58,0.2);
  background: transparent; cursor: pointer;
  transition: all 0.2s; color: var(--charcoal);
}
.variant-btn:hover, .variant-btn.active {
  border-color: var(--forest); background: var(--forest); color: var(--white);
}

.product-add-to-cart {
  width: 100%; padding: 20px;
  background: var(--forest); color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s; margin-bottom: 12px;
}
.product-add-to-cart:hover { background: var(--terra); }

.product-buy-now {
  width: 100%; padding: 20px;
  background: var(--terra); color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s; margin-bottom: 32px;
}
.product-buy-now:hover { background: var(--terra-light); }

.product-benefits-mini { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.product-benefit-mini {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--mid);
}
.product-benefit-mini-icon { color: var(--forest); font-size: 1rem; }

.product-accordion { border-top: 1px solid rgba(26,74,58,0.12); }
.accordion-item { border-bottom: 1px solid rgba(26,74,58,0.12); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--charcoal); text-align: left;
}
.accordion-trigger span:last-child {
  font-size: 1.2rem; color: var(--forest);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-trigger span:last-child { transform: rotate(45deg); }
.accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.accordion-item.open .accordion-content { max-height: 400px; }
.accordion-content-inner { padding: 0 0 20px; color: var(--mid); font-size: 0.9rem; line-height: 1.75; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--forest);
  padding: 120px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,75,30,0.2) 0%, transparent 65%);
}
.about-hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
.about-hero .tag { color: rgba(245,239,230,0.5); border-color: rgba(245,239,230,0.3); margin-bottom: 24px; }
.about-hero h1 { color: var(--cream); margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 5rem); }
.about-hero p { color: rgba(245,239,230,0.7); font-size: 1.1rem; line-height: 1.8; }

.about-story {
  padding: var(--section-pad);
  background: var(--cream);
}
.about-story-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-story-content .tag { color: var(--terra); border-color: var(--terra); margin-bottom: 20px; }
.about-story-content h2 { color: var(--forest); margin-bottom: 24px; }
.about-story-content p { color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.about-story-image {
  background: var(--forest); aspect-ratio: 4/5; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }

.about-values {
  padding: var(--section-pad);
  background: var(--charcoal);
}
.about-values-inner { max-width: var(--max); margin: 0 auto; }
.about-values h2 { color: var(--cream); text-align: center; margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-card {
  background: rgba(245,239,230,0.04);
  padding: 48px 36px;
  border: 1px solid rgba(245,239,230,0.06);
}
.value-card-icon { font-size: 2rem; margin-bottom: 20px; }
.value-card h3 { color: var(--cream); margin-bottom: 12px; font-size: 1.3rem; }
.value-card p { color: rgba(245,239,230,0.55); font-size: 0.9rem; line-height: 1.75; }

/* ============================================
   CART
   ============================================ */
.cart-page {
  max-width: 900px; margin: 0 auto;
  padding: 60px 40px;
}
.cart-page h1 { color: var(--forest); margin-bottom: 48px; font-size: 2.5rem; }
.cart-empty {
  text-align: center; padding: 80px 0;
}
.cart-empty p { color: var(--mid); margin-bottom: 32px; }

.cart-items { margin-bottom: 48px; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid rgba(26,74,58,0.1);
}
.cart-item-image {
  background: var(--cream-dark); aspect-ratio: 1;
  border-radius: 2px; overflow: hidden;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--forest); margin-bottom: 6px; }
.cart-item-variant { font-size: 0.82rem; color: var(--mid); margin-bottom: 12px; }
.cart-item-quantity {
  display: flex; align-items: center; gap: 12px;
}
.qty-btn {
  width: 28px; height: 28px; border: 1px solid rgba(26,74,58,0.2);
  background: none; cursor: pointer; font-size: 1rem; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.qty-num { font-size: 0.9rem; font-weight: 500; min-width: 20px; text-align: center; }

.cart-item-price {
  text-align: right;
}
.cart-item-price .price {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest);
}
.cart-item-remove {
  font-size: 0.72rem; color: var(--mid); background: none; border: none;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px; display: block; transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--terra); }

.cart-summary {
  background: var(--cream-dark); padding: 40px;
}
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-summary-row.total {
  padding-top: 20px; margin-top: 8px; border-top: 1px solid rgba(26,74,58,0.15);
  font-family: var(--font-display); font-size: 1.3rem; color: var(--forest);
}
.cart-summary-label { color: var(--mid); font-size: 0.9rem; }
.cart-checkout-btn {
  width: 100%; margin-top: 24px;
}

/* ============================================
   PAGE (generic)
   ============================================ */
.page-content {
  max-width: 800px; margin: 0 auto;
  padding: 80px 40px;
}
.page-content h1 { color: var(--forest); margin-bottom: 40px; }
.page-content h2 { color: var(--forest); margin: 36px 0 16px; font-size: 1.6rem; }
.page-content p { color: var(--mid); line-height: 1.8; margin-bottom: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid, .reviews-grid { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 24px; order: 1; }
  .hero-right { min-height: 50vh; order: 0; }

  .product-feature-inner, .product-page, .about-story-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .product-info { position: static; }

  .ritual-steps { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .email-form { flex-direction: column; }
  .email-submit { padding: 16px; }
}

@media (max-width: 480px) {
  .ingredients-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 16px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { text-align: center; justify-content: center; }
}
