/* ============================================================
   OASIS ORGANICS — Global Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --forest:      #1B2A6B;
  --forest-deep: #0F1A4A;
  --ivory:       #F5F5FA;
  --ivory-dark:  #E8E8F4;
  --terracotta:  #C0193A;
  --gold:        #9B1D3C;
  --blush:       #E8A0B0;
  --sage:        #6B7AB5;
  --charcoal:    #1A1A2E;
  --white:       #FFFFFF;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 2px;
  --tr: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--charcoal); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--forest); color: var(--ivory);
  text-align: center; padding: 10px 20px;
  font-size: 13px; letter-spacing: 0.08em;
}
.announcement-bar span { color: var(--gold); font-weight: 600; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--ivory);
  border-bottom: 1px solid var(--ivory-dark);
  transition: box-shadow var(--tr);
}
header.scrolled { box-shadow: 0 2px 20px rgba(45,81,67,0.08); }

nav {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--forest); letter-spacing: 0.04em; }
.nav-logo .logo-sub  { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-top: 2px; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; padding-bottom: 2px; transition: color var(--tr);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--terracotta); transition: width var(--tr);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after { width: 100%; background: var(--forest); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-icon-btn {
  background: none; border: none; color: var(--charcoal);
  display: flex; align-items: center; padding: 6px;
  border-radius: 50%; transition: background var(--tr), color var(--tr);
  position: relative;
}
.nav-icon-btn:hover { background: var(--ivory-dark); color: var(--forest); }

.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--terracotta); color: white;
  border-radius: 50%; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: var(--tr); }

/* ── SEARCH BAR ── */
.search-bar {
  background: var(--white);
  border-top: 1px solid var(--ivory-dark);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.search-bar.open { max-height: 400px; }
.search-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 12px;
}
.search-inner svg { color: var(--sage); flex-shrink: 0; }
.search-inner input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body); font-size: 16px;
  background: transparent; color: var(--charcoal);
}
.search-inner button { background: none; border: none; font-size: 22px; color: var(--sage); line-height: 1; }
.search-results { max-width: var(--max-w); margin: 0 auto; padding: 0 24px 16px; display: flex; flex-direction: column; gap: 2px; }
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 4px;
  transition: background var(--tr);
}
.search-result-item:hover { background: var(--ivory); }
.search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; background: var(--ivory-dark); }
.sr-name { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--forest-deep); }
.sr-price { font-size: 13px; color: var(--sage); }
.search-empty { padding: 10px 12px; font-size: 14px; color: var(--sage); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,26,74,0.55); backdrop-filter: blur(4px);
}
.mobile-nav.open { display: flex; justify-content: flex-end; }
.mobile-nav-panel {
  background: var(--ivory); width: 280px; height: 100%;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 4px;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 28px; color: var(--charcoal); margin-bottom: 20px; line-height: 1; }
.mobile-nav-panel a {
  font-size: 20px; font-family: var(--font-display); font-weight: 500;
  color: var(--forest); padding: 14px 0;
  border-bottom: 1px solid var(--ivory-dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: all var(--tr); white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-deep); border-color: var(--forest-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,81,67,0.2); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--ivory); transform: translateY(-1px); }
.btn-gold { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-gold:hover { background: #9e0f2e; border-color: #9e0f2e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,25,58,0.35); }
.btn-terracotta { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-terracotta:hover { background: #b05e39; transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 11px; }

/* ── SECTION COMMONS ── */
section { padding: 80px 24px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px,5vw,52px); font-weight: 400; line-height: 1.15; color: var(--forest-deep); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--terracotta); }
.section-body { font-size: 16px; color: #555; line-height: 1.75; max-width: 580px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #08091f;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B2A6B 0%, #C0193A 100%);
}
.hero-content { position: relative; z-index: 3; max-width: var(--max-w); margin: 0 auto; padding: 80px 24px; color: var(--ivory); }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: #f5c518; margin-bottom: 20px; display: block; }
.hero-title { font-family: var(--font-display); font-size: clamp(52px,8vw,96px); font-weight: 300; line-height: 1.05; margin-bottom: 10px; color: var(--ivory); }
.hero-title em { font-style: italic; font-weight: 400; color: var(--blush); display: block; }
.hero-tagline { font-family: var(--font-display); font-size: clamp(18px,3vw,26px); font-weight: 300; color: rgba(247,243,236,0.8); margin-bottom: 40px; font-style: italic; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(27,42,107,0.5); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(27,42,107,0.5)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--forest-deep); overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.marquee-track { display: flex; animation: marquee 28s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 32px; font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,243,236,0.75); }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(45,81,67,0.12); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ivory-dark); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--forest); color: var(--ivory); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.product-badge.new { background: var(--terracotta); }
.product-wishlist { position: absolute; top: 12px; right: 12px; background: white; border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr), transform var(--tr); box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: var(--charcoal); }
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { transform: scale(1.1); color: var(--terracotta); }
.product-info { padding: 18px 16px 20px; }
.product-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--forest-deep); margin-bottom: 4px; line-height: 1.3; }
.product-volume { font-size: 12px; color: var(--sage); margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 18px; font-weight: 600; color: var(--forest); font-family: var(--font-display); }
.add-to-cart { background: var(--forest); color: var(--ivory); border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--tr), transform var(--tr); }
.add-to-cart:hover { background: var(--terracotta); transform: scale(1.1); }

/* ── SECTION HEADER ── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 16px; flex-wrap: wrap; }

/* ── CATEGORIES ── */
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.category-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; cursor: pointer; display: block; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,26,74,0.82) 0%, rgba(15,26,74,0.1) 60%); display: flex; align-items: flex-end; padding: 28px; }
.category-label { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--ivory); display: flex; flex-direction: column; gap: 6px; }
.category-label span { font-size: 11px; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

/* ── STORY ── */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-stack { position: relative; height: 520px; }
.story-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 90%; object-fit: cover; border-radius: 4px; }
.story-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; object-fit: cover; border-radius: 4px; border: 6px solid var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.story-quote { font-family: var(--font-display); font-size: clamp(18px,2.5vw,24px); font-style: italic; color: var(--terracotta); line-height: 1.4; margin: 28px 0; padding-left: 20px; border-left: 2px solid var(--terracotta); }
.story-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.value-item { display: flex; flex-direction: column; gap: 6px; }
.value-icon { width: 40px; height: 40px; background: var(--ivory); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 4px; }
.value-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--forest-deep); }
.value-desc { font-size: 13px; color: #777; line-height: 1.6; }

/* ── INGREDIENTS ── */
.ingredients { background: var(--forest-deep); color: var(--ivory); }
.ingredients .section-eyebrow { color: var(--gold); }
.ingredients .section-title { color: var(--ivory); }
.ingredients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; }
.ingredient-tile { background: rgba(255,255,255,0.04); padding: 36px 28px; border: 1px solid rgba(255,255,255,0.07); transition: background var(--tr); text-align: center; }
.ingredient-tile:hover { background: rgba(255,255,255,0.09); }
.ingredient-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.ingredient-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin-bottom: 8px; color: var(--blush); }
.ingredient-desc { font-size: 13px; line-height: 1.65; color: rgba(247,243,236,0.6); }

/* ── INSTAGRAM ── */
.instagram { background: var(--ivory-dark); text-align: center; }
.instagram-handle { font-size: 15px; color: var(--sage); margin-bottom: 36px; display: inline-flex; align-items: center; gap: 8px; }
.instagram-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-bottom: 32px; }
.instagram-tile { aspect-ratio: 1; overflow: hidden; border-radius: 4px; position: relative; cursor: pointer; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-overlay { position: absolute; inset: 0; background: rgba(45,81,67,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr); }
.instagram-tile:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { color: white; width: 28px; height: 28px; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--terracotta); padding: 72px 24px; text-align: center; }
.newsletter .section-title { color: var(--white); }
.newsletter .section-body { color: rgba(255,255,255,0.85); margin: 0 auto 36px; text-align: center; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; overflow: hidden; border-radius: 2px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.newsletter-form input { flex: 1; padding: 16px 20px; border: none; font-family: var(--font-body); font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button { padding: 16px 24px; background: var(--forest); color: var(--ivory); border: none; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background var(--tr); }
.newsletter-form button:hover { background: var(--forest-deep); }
.newsletter-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.65); }

/* ── FOOTER ── */
footer { background: #0a1130; color: rgba(247,243,236,0.7); padding: 64px 24px 32px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand .logo-name { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--ivory); display: block; margin-bottom: 6px; }
.footer-brand .logo-sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(247,243,236,0.7); transition: all var(--tr); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,155,94,0.1); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(247,243,236,0.6); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact a { color: rgba(247,243,236,0.6); transition: color var(--tr); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(247,243,236,0.4); }
.footer-bottom a { color: rgba(247,243,236,0.4); transition: color var(--tr); }
.footer-bottom a:hover { color: var(--gold); }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); display: none; }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 380px; max-width: 100vw; height: 100%; background: var(--ivory); z-index: 3001; transform: translateX(100%); transition: transform 0.35s ease; display: flex; flex-direction: column; box-shadow: -8px 0 48px rgba(0,0,0,0.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid var(--ivory-dark); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--forest-deep); }
.cart-close { background: none; border: none; color: var(--charcoal); padding: 6px; border-radius: 50%; display: flex; transition: background var(--tr); }
.cart-close:hover { background: var(--ivory-dark); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; color: var(--sage); text-align: center; }
.cart-empty svg { opacity: 0.3; width: 56px; height: 56px; }
.cart-empty p { font-size: 15px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--ivory-dark); align-items: start; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 4px; background: var(--ivory-dark); }
.cart-item-name { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--forest-deep); margin-bottom: 4px; }
.cart-item-volume { font-size: 12px; color: var(--sage); margin-bottom: 10px; }
.qty-control { display: flex; align-items: center; gap: 12px; }
.qty-btn { background: var(--ivory-dark); border: none; width: 26px; height: 26px; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background var(--tr); }
.qty-btn:hover { background: var(--ivory-dark); color: var(--forest); }
.qty-num { font-size: 14px; font-weight: 500; width: 20px; text-align: center; }
.cart-item-price { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--forest); white-space: nowrap; }
.cart-remove-btn { background: none; border: none; color: #ccc; font-size: 20px; line-height: 1; transition: color var(--tr); display: block; margin-left: auto; }
.cart-remove-btn:hover { color: var(--terracotta); }
.cart-footer { padding: 20px 24px 28px; border-top: 1px solid var(--ivory-dark); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; color: #666; margin-bottom: 8px; }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--forest-deep); margin-bottom: 20px; }
.free-shipping-bar { background: var(--ivory-dark); border-radius: 2px; padding: 10px 14px; font-size: 12px; color: var(--sage); margin-bottom: 16px; text-align: center; }
.free-shipping-bar span { color: var(--forest); font-weight: 600; }
.shipping-note { font-size: 12px; color: var(--sage); text-align: center; margin-top: 10px; }

/* ── SHOP PAGE ── */
.shop-hero { background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--terracotta) 100%); padding: 80px 24px; text-align: center; color: var(--ivory); }
.shop-hero .section-title { color: var(--ivory); }
.shop-hero .section-body { color: rgba(247,243,236,0.75); margin: 0 auto; text-align: center; }
.shop-controls { max-width: var(--max-w); margin: 0 auto; padding: 32px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--ivory-dark); }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab { padding: 8px 18px; border: 1.5px solid var(--ivory-dark); background: transparent; border-radius: 40px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: #888; transition: all var(--tr); }
.filter-tab.active, .filter-tab:hover { border-color: var(--forest); background: var(--forest); color: var(--ivory); }
.shop-grid-section { max-width: var(--max-w); margin: 0 auto; padding: 48px 24px 80px; }
.shop-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

/* ── PRODUCT DETAIL PAGE ── */
.pd-hero { background: var(--ivory-dark); padding: 16px 24px; }
.breadcrumb { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sage); }
.breadcrumb a { color: var(--sage); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--charcoal); font-weight: 500; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

.pd-section { padding: 56px 24px 80px; }
.pd-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

/* Gallery */
.pd-gallery { position: sticky; top: 96px; }
.pd-main-img-wrap { aspect-ratio: 1; overflow: hidden; border-radius: 4px; background: var(--ivory-dark); margin-bottom: 12px; }
.pd-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pd-main-img-wrap:hover img { transform: scale(1.04); }
.pd-thumbs { display: flex; gap: 10px; }
.thumb-btn { width: 72px; height: 72px; border: 2px solid transparent; border-radius: 4px; overflow: hidden; background: var(--ivory-dark); padding: 0; cursor: pointer; transition: border-color var(--tr); flex-shrink: 0; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn.active { border-color: var(--forest); }
.thumb-btn:hover { border-color: var(--sage); }

/* Info panel */
.pd-info { display: flex; flex-direction: column; gap: 0; }
.pd-badge-name { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pd-name { font-family: var(--font-display); font-size: clamp(28px,4vw,40px); font-weight: 400; line-height: 1.15; color: var(--forest-deep); margin-bottom: 10px; }
.pd-price { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--forest); margin-bottom: 16px; }
.pd-short-desc { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--ivory-dark); }
.pd-tag { font-size: 12px; color: var(--sage); letter-spacing: 0.06em; margin-bottom: 28px; display: flex; align-items: center; gap: 6px; }
.pd-tag::before { content: '✦'; font-size: 10px; color: var(--gold); }

/* Qty + CTA */
.pd-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--ivory-dark); border-radius: 2px; overflow: hidden; }
.pd-qty-btn { background: var(--ivory-dark); border: none; width: 40px; height: 48px; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background var(--tr); }
.pd-qty-btn:hover { background: #ddd; }
.pd-qty-num { min-width: 44px; text-align: center; font-size: 16px; font-weight: 500; padding: 0 8px; }
.pd-add-cart { flex: 1; min-width: 160px; }
.pd-wishlist { background: none; border: 1.5px solid var(--ivory-dark); width: 48px; height: 48px; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--charcoal); transition: all var(--tr); }
.pd-wishlist:hover { border-color: var(--terracotta); color: var(--terracotta); }

.pd-guarantee { background: var(--ivory-dark); border-radius: 4px; padding: 14px 18px; font-size: 13px; color: var(--sage); display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }

/* Accordions */
.pd-accordion { border-top: 1px solid var(--ivory-dark); }
.pd-accordion-item { border-bottom: 1px solid var(--ivory-dark); }
.pd-accordion-toggle {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 0; font-family: var(--font-body); font-size: 14px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: color var(--tr);
}
.pd-accordion-toggle:hover { color: var(--forest); }
.pd-accordion-toggle svg { transition: transform var(--tr); flex-shrink: 0; }
.pd-accordion-toggle.open svg { transform: rotate(180deg); }
.pd-accordion-body { display: none; padding: 0 0 20px; font-size: 14px; color: #666; line-height: 1.75; }
.pd-accordion-body.open { display: block; }
.pd-accordion-body ul { display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.pd-accordion-body ul li { display: flex; align-items: flex-start; gap: 10px; }
.pd-accordion-body ul li::before { content: '—'; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }

/* Related */
.related-section { background: var(--ivory-dark); }
.related-section .section-header { margin-bottom: 40px; }

/* ── ABOUT PAGE ── */
.about-hero { background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--terracotta) 100%); padding: 100px 24px; text-align: center; color: var(--ivory); }
.about-hero .section-title { color: var(--ivory); }
.about-hero .section-body { color: rgba(247,243,236,0.8); margin: 0 auto; text-align: center; max-width: 560px; }
.stats-band { background: var(--ivory); padding: 64px 24px; border-top: 1px solid var(--ivory-dark); border-bottom: 1px solid var(--ivory-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 400; color: var(--forest); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--sage); letter-spacing: 0.06em; }
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-img { width: 100%; border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; }
.trenitions-section { background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%); padding: 80px 24px; color: var(--ivory); text-align: center; }
.trenitions-section .section-title { color: var(--ivory); }
.trenitions-section .section-body { color: rgba(247,243,236,0.8); margin: 0 auto 48px; text-align: center; max-width: 560px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.pillar { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 40px 28px; border-radius: 4px; text-align: center; transition: background var(--tr); }
.pillar:hover { background: rgba(255,255,255,0.1); }
.pillar-icon { font-size: 40px; margin-bottom: 16px; }
.pillar-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--blush); margin-bottom: 12px; }
.pillar-text { font-size: 14px; color: rgba(247,243,236,0.65); line-height: 1.75; }

/* ── BLOG ── */
.blog-hero { background: var(--ivory-dark); padding: 80px 24px; text-align: center; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: var(--max-w); margin: 0 auto; padding: 64px 24px 80px; }
.blog-card { background: var(--white); border-radius: 4px; overflow: hidden; cursor: pointer; transition: transform var(--tr), box-shadow var(--tr); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(45,81,67,0.1); }
.blog-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; display: block; }
.blog-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--forest-deep); line-height: 1.3; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: #777; line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #aaa; }
.blog-read-more { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--tr); }
.blog-card:hover .blog-read-more { gap: 10px; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 28px; right: 28px; background: var(--forest); color: var(--ivory); padding: 14px 20px; border-radius: 4px; font-size: 14px; display: flex; align-items: center; gap: 10px; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.2); max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .shop-product-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-gallery { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 52px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-img-stack { height: 360px; }
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .category-card { aspect-ratio: 16/9; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .instagram-grid { grid-template-columns: repeat(2,1fr); }
  .shop-product-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  section { padding: 60px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pd-actions { flex-direction: column; align-items: stretch; }
  .pd-qty { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
