/* ============================================================
   REBREW — Main Stylesheet
   Vintage Cinematic Handcrafted Luxury Brand
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,800&family=IM+Fell+English:ital@0;1&family=Jost:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Palette */
  --cream:        #F5EDD6;
  --aged-paper:   #EAD9B0;
  --warm-beige:   #D9C89A;
  --vintage-brown:#5C3D1E;
  --dark-brown:   #3B2410;
  --burgundy:     #6B2737;
  --deep-wine:    #4A1528;
  --olive:        #5C6B3A;
  --dark-olive:   #3D4A25;
  --dusty-gold:   #B8963E;
  --antique-gold: #9A7B2C;
  --warm-shadow:  rgba(60, 35, 15, 0.15);
  --ink:          #1C1008;
  
  /* Typography */
  --font-serif:      'Playfair Display', Georgia, serif;
  --font-fell:       'IM Fell English', serif;
  --font-body:       'Jost', sans-serif;
  --font-baskerville:'Libre Baskerville', serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark-brown);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--vintage-brown);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--vintage-brown);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: 0.15s var(--ease-cinematic);
  opacity: 0.6;
}

body:hover .cursor { opacity: 1; }

/* --- Film Grain Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  mix-blend-mode: multiply;
  animation: grain 0.8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -3%); }
  20%  { transform: translate(3%, 2%); }
  30%  { transform: translate(-1%, 4%); }
  40%  { transform: translate(4%, -1%); }
  50%  { transform: translate(-3%, 2%); }
  60%  { transform: translate(2%, -4%); }
  70%  { transform: translate(-2%, 3%); }
  80%  { transform: translate(3%, 1%); }
  90%  { transform: translate(-1%, -2%); }
}

/* --- Loading Screen --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-cinematic), visibility 0.8s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo{
    width:120px;
    height:120px;
    object-fit:contain;
} 


.loader-text {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--warm-beige);
  text-transform: uppercase;
  opacity: 0.7;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 32px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--dusty-gold);
  width: 0;
  animation: loadBar 2s var(--ease-cinematic) forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes loadBar {
  to { width: 100%; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-cinematic);
}

.navbar.scrolled {
  background: rgba(245, 237, 214, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  box-shadow: 0 2px 40px var(--warm-shadow);
  border-bottom: 1px solid rgba(92, 61, 30, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.4s var(--ease-cinematic);
}

.nav-logo:hover img { transform: rotate(-5deg) scale(1.05); }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-brown);
  letter-spacing: 0.08em;
}

.navbar:not(.scrolled) .nav-logo-text { color: var(--cream); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--dark-brown); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dusty-gold);
  transition: width 0.4s var(--ease-cinematic);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dusty-gold);
  color: var(--dark-brown) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cart-btn:hover {
  background: var(--vintage-brown);
  color: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-cart-btn::after { display: none !important; }

.cart-count {
  background: var(--burgundy);
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.4s var(--ease-cinematic);
}

.navbar.scrolled .nav-toggle span { background: var(--dark-brown); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-cinematic);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  padding: 12px 0;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active a {
  animation: menuItemReveal 0.5s var(--ease-cinematic) forwards;
}

.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu a:hover { color: var(--dusty-gold); }

@keyframes menuItemReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Containers & Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

section {
  position: relative;
}

/* --- Typography Utilities --- */
.headline-xl {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.headline-md {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dusty-gold);
}

.body-lg {
  font-family: var(--font-baskerville);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--vintage-brown);
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-cinematic);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--dusty-gold);
  color: var(--dark-brown);
}

.btn-primary::before { background: var(--vintage-brown); }
.btn-primary:hover { color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,237,214,0.5);
}

.btn-outline::before { background: var(--cream); }
.btn-outline:hover { color: var(--dark-brown); }

.btn-dark {
  background: var(--dark-brown);
  color: var(--cream);
}

.btn-dark::before { background: var(--burgundy); }

/* --- Section Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--dusty-gold);
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/* --- Vintage Texture Backgrounds --- */
.bg-cream    { background: var(--cream); }
.bg-paper    { background: var(--aged-paper); }
.bg-dark     { background: var(--dark-brown); }
.bg-burgundy { background: var(--burgundy); }
.bg-olive    { background: var(--dark-olive); }

.texture-paper {
  background-color: var(--aged-paper);
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-cinematic), transform 0.9s var(--ease-cinematic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-cinematic), transform 0.9s var(--ease-cinematic);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-cinematic), transform 0.9s var(--ease-cinematic);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.hero {
  min-height: 100vh;
  background: var(--dark-brown);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(184, 150, 62, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 39, 55, 0.2) 0%, transparent 50%),
    linear-gradient(160deg, #2a1a0a 0%, #3B2410 40%, #1C1008 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245,237,214,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,214,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 48px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  padding-right: 20px;
}

.hero-estd {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.5s forwards;
}

.hero-estd::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--dusty-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.7s forwards;
}

.hero-title span {
  display: block;
  color: var(--dusty-gold);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-baskerville);
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.55);
  margin-top: 32px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 0.9s forwards;
}

.hero-quote {
  font-family: var(--font-fell);
  font-size: clamp(17px, 2vw, 24px);
  font-style: italic;
  color: rgba(245, 237, 214, 0.75);
  line-height: 1.5;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 1.1s forwards;
  border-left: 2px solid var(--dusty-gold);
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinematic) 1.3s forwards;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  max-height: 700px;
}

.hero-bottle-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bottle-main {
  position: relative;
  z-index: 5;
  animation: bottleFloat 6s ease-in-out infinite, fadeIn 1.2s var(--ease-cinematic) 0.8s both;
}

.hero-bottle-main img {
  width: clamp(220px, 28vw, 360px);
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}

.hero-bottle-accent {
  position: absolute;
  z-index: 3;
  animation: bottleFloat 6s ease-in-out 2s infinite, fadeIn 1.2s var(--ease-cinematic) 1.2s both;
}

.hero-bottle-accent.left {
  left: -10%;
  bottom: 10%;
  transform: rotate(-15deg);
}

.hero-bottle-accent.right {
  right: -5%;
  top: 15%;
  transform: rotate(12deg);
}

.hero-bottle-accent img {
  width: clamp(100px, 14vw, 180px);
  object-fit: contain;
  opacity: 0.75;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.2) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.5);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,237,214,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BRAND INTRO STRIP
   ============================================================ */
.brand-strip {
  background: var(--dusty-gold);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(92, 61, 30, 0.2);
}

.brand-strip-inner {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark-brown);
  flex-shrink: 0;
}

.brand-strip-item::before {
  content: '✦';
  color: var(--vintage-brown);
  font-size: 10px;
}

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

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.about-intro {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.about-intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px solid var(--dusty-gold);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.about-intro-image img { position: relative; z-index: 1; }

.about-intro-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  z-index: 10;
}

.about-intro-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rotateBadge 20s linear infinite;
}

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

.about-intro-text .eyebrow { margin-bottom: 20px; }
.about-intro-text .headline-lg { color: var(--dark-brown); margin-bottom: 20px; }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-products {
  padding: var(--section-pad) 0;
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.featured-products::before {
  content: 'REBREW';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 28vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .headline-lg { color: var(--cream); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.product-card {
  background: rgba(245, 237, 214, 0.04);
  border: 1px solid rgba(245, 237, 214, 0.08);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.5s var(--ease-cinematic);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,62,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(184,150,62,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.product-card:hover::before { opacity: 1; }

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.product-card-image img {
  height: 180px;
  object-fit: contain;
  transition: transform 0.6s var(--ease-cinematic);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.product-card:hover .product-card-image img {
  transform: scale(1.08) translateY(-8px) rotate(2deg);
}

.product-flavor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.product-card-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.4);
  margin-bottom: 16px;
}

.product-card-note {
  font-family: var(--font-baskerville);
  font-size: 13px;
  font-style: italic;
  color: rgba(245,237,214,0.55);
  line-height: 1.5;
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dusty-gold);
  margin-top: 16px;
  margin-bottom: 16px;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 11px;
  padding: 12px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s, color 0.3s;
}

.product-card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Flavor Colors */
.flavor-grape { background: #8B4A9E; }
.flavor-apple { background: #C4593A; }
.flavor-ginger { background: #C4913A; }
.flavor-pineapple { background: #C4B83A; }
.flavor-mint { background: #3A8B6A; }

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder-story {
  padding: var(--section-pad) 0;
  background: var(--aged-paper);
  position: relative;
  overflow: hidden;
}

.founder-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.founder-image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(20%) contrast(1.05) brightness(0.95);
}

.founder-image-caption {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(59,36,16,0.85));
  padding: 60px 28px 28px;
}

.founder-image-caption p {
  font-family: var(--font-fell);
  font-size: 15px;
  font-style: italic;
  color: var(--warm-beige);
}

.founder-image-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1.5px solid var(--dusty-gold);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.founder-text .eyebrow { margin-bottom: 20px; }
.founder-text .headline-lg { color: var(--dark-brown); margin-bottom: 32px; }

.founder-story-text {
  font-family: var(--font-baskerville);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.9;
  color: var(--vintage-brown);
}

.founder-story-text p { margin-bottom: 20px; }
.founder-story-text strong { font-weight: 700; color: var(--dark-brown); }

.founder-pull-quote {
  font-family: var(--font-fell);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--dark-brown);
  line-height: 1.4;
  margin: 36px 0;
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--dusty-gold);
}

/* ============================================================
   FERMENTATION PROCESS
   ============================================================ */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--dark-olive);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(92,107,58,0.3) 0%, transparent 70%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,237,214,0.1);
  margin-top: 72px;
}

.process-step {
  background: var(--dark-olive);
  padding: 52px 36px;
  position: relative;
  transition: background 0.4s;
}

.process-step:hover { background: rgba(92,107,58,0.8); }

.process-number {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 900;
  color: rgba(245,237,214,0.06);
  line-height: 1;
  margin-bottom: -20px;
}

.process-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-step-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,237,214,0.6);
}

/* ============================================================
   WHY REBREW
   ============================================================ */
.why-rebrew {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .eyebrow { margin-bottom: 16px; }
.why-text .headline-lg { margin-bottom: 40px; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(92,61,30,0.1);
}

.why-point:last-child { border-bottom: none; }

.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--dusty-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-point-content h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 6px;
}

.why-point-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--vintage-brown);
}

.why-visual {
  position: relative;
}

.why-visual-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
}

.mosaic-item {
  overflow: hidden;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic);
  filter: sepia(15%);
}

.mosaic-item:hover img { transform: scale(1.06); }

.mosaic-item:first-child {
  grid-row: 1 / 3;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '"';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 40vw;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: -10%;
  left: -5%;
  line-height: 1;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.review-card {
  background: rgba(245,237,214,0.06);
  border: 1px solid rgba(245,237,214,0.1);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s var(--ease-cinematic), background 0.4s;
}

.review-card:hover {
  transform: translateY(-8px);
  background: rgba(245,237,214,0.1);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars span {
  color: var(--dusty-gold);
  font-size: 16px;
}

.review-text {
  font-family: var(--font-fell);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--dusty-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
}

.review-author-info h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.review-author-info span {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(245,237,214,0.45);
  letter-spacing: 0.1em;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-section {
  padding: var(--section-pad) 0;
  background: var(--aged-paper);
}

.events-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(92,61,30,0.12);
}

.event-item {
  background: var(--aged-paper);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 48px;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.event-item:hover {
  background: var(--cream);
  transform: translateX(8px);
}

.event-date {
  text-align: center;
}

.event-date-day {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--dark-brown);
  line-height: 1;
}

.event-date-month {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-gold);
}

.event-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 6px;
}

.event-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--vintage-brown);
  letter-spacing: 0.05em;
}

.event-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--dusty-gold);
  color: var(--dusty-gold);
}

/* ============================================================
   INSTAGRAM GALLERY
   ============================================================ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--dark-brown);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic);
  filter: sepia(20%) contrast(1.05);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,36,16,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner .headline-lg { margin-bottom: 16px; }
.newsletter-inner p {
  font-family: var(--font-baskerville);
  font-style: italic;
  color: var(--vintage-brown);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1.5px solid rgba(92,61,30,0.25);
  border-right: none;
  background: var(--aged-paper);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus { border-color: var(--dusty-gold); }
.newsletter-form input::placeholder { color: rgba(92,61,30,0.4); }

.newsletter-form .btn {
  border-radius: 0;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: 'REBREW';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 22vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,237,214,0.07);
}

.footer-brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font-baskerville);
  font-size: 14px;
  font-style: italic;
  color: rgba(245,237,214,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,237,214,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,237,214,0.4);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social:hover {
  border-color: var(--dusty-gold);
  color: var(--dusty-gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 24px;
}

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

.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245,237,214,0.45);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(245,237,214,0.25);
  letter-spacing: 0.05em;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-hero {
  height: 45vh;
  min-height: 360px;
  background: var(--dark-brown);
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,150,62,0.08) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero-content .headline-xl {
  color: var(--cream);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-family: var(--font-fell);
  font-style: italic;
  color: rgba(245,237,214,0.5);
  font-size: clamp(15px, 1.5vw, 18px);
}

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

.shop-card {
  background: var(--aged-paper);
  border: 1px solid rgba(92,61,30,0.12);
  overflow: hidden;
  transition: transform 0.4s var(--ease-cinematic), box-shadow 0.4s;
  cursor: pointer;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(92,61,30,0.15);
}

.shop-card-image {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--warm-beige), var(--aged-paper));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shop-card-image img {
  height: 240px;
  object-fit: contain;
  transition: transform 0.6s var(--ease-cinematic);
  filter: drop-shadow(0 10px 30px rgba(92,61,30,0.3));
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.08) translateY(-8px);
}

.shop-card-body {
  padding: 28px;
}

.shop-card-flavor {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 8px;
}

.shop-card-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.shop-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--vintage-brown);
  line-height: 1.6;
  margin-bottom: 20px;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-brown);
}

.shop-card-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--vintage-brown);
  font-family: var(--font-body);
}

/* Qty Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(92,61,30,0.2);
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-family: var(--font-body);
}

.qty-btn:hover { background: var(--warm-beige); }

.qty-input {
  width: 44px;
  height: 36px;
  border: none;
  border-left: 1.5px solid rgba(92,61,30,0.2);
  border-right: 1.5px solid rgba(92,61,30,0.2);
  background: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-brown);
  outline: none;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,16,8,0.6);
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(4px);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 5001;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-cinematic);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 80px rgba(28,16,8,0.3);
}

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

.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(92,61,30,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--vintage-brown);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.cart-close:hover { transform: rotate(90deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(92,61,30,0.08);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: var(--aged-paper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img img {
  height: 60px;
  object-fit: contain;
}

.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 4px;
}

.cart-item-info p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--vintage-brown);
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(92,61,30,0.35);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s;
  grid-column: 3;
  align-self: start;
}

.cart-item-remove:hover { color: var(--burgundy); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: rgba(92,61,30,0.35);
}

.cart-empty p {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 16px;
}

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(92,61,30,0.12);
}

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

.cart-total span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vintage-brown);
}

.cart-total strong {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-brown);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 60px 0;
  min-height: calc(100vh - 300px);
}

.checkout-form-section h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(92,61,30,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vintage-brown);
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid rgba(92,61,30,0.18);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--dusty-gold); }

.payment-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-icon {
  padding: 6px 14px;
  border: 1px solid rgba(92,61,30,0.15);
  background: var(--aged-paper);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--vintage-brown);
  letter-spacing: 0.05em;
}

.checkout-summary {
  background: var(--aged-paper);
  padding: 40px 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(92,61,30,0.12);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--vintage-brown);
  border-bottom: 1px solid rgba(92,61,30,0.06);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 8px;
}

.summary-total span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-brown);
}

.summary-total strong {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-brown);
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(92,61,30,0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-brown);
}

.faq-question:hover h3 { color: var(--burgundy); }

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(92,61,30,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vintage-brown);
  font-size: 18px;
  transition: all 0.4s var(--ease-cinematic);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--dark-brown);
  color: var(--cream);
  border-color: var(--dark-brown);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-cinematic);
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  font-family: var(--font-baskerville);
  font-size: 15px;
  line-height: 1.75;
  color: var(--vintage-brown);
  padding-bottom: 28px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 80px 0;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 24px;
  line-height: 1.05;
}

.contact-info p {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 16px;
  color: var(--vintage-brown);
  line-height: 1.75;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--dusty-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vintage-brown);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-brown);
  margin-bottom: 0;
  font-style: normal;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(92,61,30,0.18);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  min-height: 160px;
}

.contact-form textarea:focus { border-color: var(--dusty-gold); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}

.blog-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.blog-card-image {
  height: 240px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--warm-beige);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic);
  filter: sepia(15%);
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title { color: var(--burgundy); }

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--vintage-brown);
  margin-bottom: 16px;
}

.blog-card-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(92,61,30,0.4);
  letter-spacing: 0.1em;
}

/* ============================================================
   INGREDIENTS PAGE
   ============================================================ */
.ingredients-showcase {
  padding: var(--section-pad) 0;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.ingredient-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--aged-paper);
  border: 1px solid rgba(92,61,30,0.1);
  transition: transform 0.4s, box-shadow 0.4s;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(92,61,30,0.12);
}

.ingredient-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.ingredient-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.ingredient-latin {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 14px;
  color: var(--dusty-gold);
  margin-bottom: 16px;
}

.ingredient-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--vintage-brown);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  padding: 60px 0;
}

.cart-page-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-page-table th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vintage-brown);
  padding: 12px 0;
  border-bottom: 1.5px solid rgba(92,61,30,0.15);
  text-align: left;
}

.cart-page-table td {
  padding: 24px 0;
  border-bottom: 1px solid rgba(92,61,30,0.08);
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product-img {
  width: 80px;
  height: 80px;
  background: var(--aged-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-product-img img { height: 70px; object-fit: contain; }

.cart-product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-brown);
}

.cart-product-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--vintage-brown);
  margin-top: 4px;
}

.cart-page-summary {
  background: var(--aged-paper);
  padding: 40px;
  height: fit-content;
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(245,237,214,0.05);
  border: 1px solid rgba(245,237,214,0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--dusty-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.5);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline {
  position: relative;
  margin-top: 80px;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--dusty-gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--dusty-gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.timeline-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--vintage-brown);
}

/* ============================================================
   UTILITY & MISC
   ============================================================ */
.text-center { text-align: center; }
.text-cream   { color: var(--cream); }
.text-gold    { color: var(--dusty-gold); }
.text-brown   { color: var(--dark-brown); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.page-pad { padding: var(--section-pad) 0; }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-brown);
  color: var(--cream);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 9995;
  transition: transform 0.4s var(--ease-cinematic);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  justify-content: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--dusty-gold); font-size: 16px; }

/* ── Cart Item Side (drawer) — added by audit fix ── */
.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Mobile Menu Close Button ── */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1.5px solid rgba(245, 237, 214, 0.2);
  color: var(--cream);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: border-color 0.3s, transform 0.3s;
  border-radius: 2px;
}

.mobile-menu-close:hover {
  border-color: var(--dusty-gold);
  transform: rotate(90deg);
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   (Moved from inline <style> blocks — audit fix)
   ============================================================ */

/* ── PRODUCTS PAGE ───────────────────────────────────────── */
.product-detail-section { padding: 100px 0; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(92, 61, 30, 0.1);
}

.product-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.product-detail:nth-child(even) { direction: rtl; }
.product-detail:nth-child(even) > * { direction: ltr; }

.product-detail-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aged-paper);
  height: 500px;
  overflow: hidden;
}

.product-detail-img img {
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(92, 61, 30, 0.25));
  transition: transform 0.6s var(--ease-cinematic);
}

.product-detail-img:hover img { transform: scale(1.04) rotate(2deg); }

.product-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dark-brown);
  color: var(--cream);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-flavor-label {
  display: inline-block;
  padding: 6px 20px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.product-detail-name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--dark-brown);
  line-height: 0.95;
  margin-bottom: 8px;
}

.product-detail-latin {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 15px;
  color: var(--dusty-gold);
  margin-bottom: 24px;
}

.product-detail-desc {
  font-family: var(--font-baskerville);
  font-size: 15px;
  line-height: 1.8;
  color: var(--vintage-brown);
  font-style: italic;
  margin-bottom: 28px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.product-spec {
  background: var(--aged-paper);
  padding: 16px;
  border-left: 2px solid var(--dusty-gold);
}

.product-spec-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 4px;
}

.product-spec-value {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(92, 61, 30, 0.2);
  color: var(--vintage-brown);
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── SHOP PAGE ───────────────────────────────────────────── */
.shop-section { padding: 80px 0; }

.shipping-bar {
  background: var(--dark-olive);
  padding: 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.7);
}

.shipping-bar span { color: var(--dusty-gold); }

.shop-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid rgba(92, 61, 30, 0.2);
  background: none;
  color: var(--vintage-brown);
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark-brown);
  color: var(--cream);
  border-color: var(--dark-brown);
}

.pack-deal {
  background: var(--aged-paper);
  border: 1.5px solid var(--dusty-gold);
  padding: 40px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.pack-deal h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.pack-deal p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--vintage-brown);
}

.pack-deal-price { text-align: right; }

.pack-deal-price .price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--dark-brown);
  display: block;
}

.pack-deal-price .was {
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: line-through;
  color: rgba(92, 61, 30, 0.4);
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.value-card {
  padding: 48px 32px;
  background: var(--aged-paper);
  border-top: 3px solid var(--dusty-gold);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  margin: 16px 0 10px;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--vintage-brown);
}

.value-icon { font-size: 36px; }

.mission-block {
  background: var(--dark-brown);
  padding: 100px 0;
  text-align: center;
}

.mission-block blockquote {
  font-family: var(--font-fell);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.mission-block cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-gold);
}

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-page { padding: 80px 0 120px; }

.faq-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.faq-cat-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1.5px solid rgba(92, 61, 30, 0.2);
  background: none;
  color: var(--vintage-brown);
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--dark-brown);
  color: var(--cream);
  border-color: var(--dark-brown);
}

.faq-still-help {
  background: var(--dark-brown);
  padding: 80px;
  text-align: center;
  margin-top: 80px;
}

.faq-still-help h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.faq-still-help p {
  font-family: var(--font-fell);
  font-style: italic;
  color: rgba(245, 237, 214, 0.5);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page { padding-top: 100px; padding-bottom: 120px; }

/* ── EVENTS PAGE ─────────────────────────────────────────── */
.events-page { padding: 80px 0 120px; }

.events-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid rgba(92, 61, 30, 0.15);
  margin-bottom: 60px;
}

.events-tab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(92, 61, 30, 0.4);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.3s;
  min-height: 44px;
}

.events-tab.active,
.events-tab:hover {
  color: var(--dark-brown);
  border-bottom-color: var(--dusty-gold);
}

.event-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid rgba(92, 61, 30, 0.1);
  transition: padding-left 0.3s var(--ease-cinematic);
}

.event-card:last-child { border-bottom: none; }
.event-card:hover { padding-left: 8px; }

.event-month-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin-bottom: 6px;
}

.event-day-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 900;
  color: var(--dark-brown);
  line-height: 1;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--vintage-brown);
}

.event-desc {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 15px;
  color: var(--vintage-brown);
  line-height: 1.6;
}

.event-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.event-type-pill {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--dusty-gold);
  color: var(--dusty-gold);
}

.events-cta {
  background: var(--dark-olive);
  padding: 80px;
  text-align: center;
}

.events-cta h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}

.events-cta p {
  font-family: var(--font-fell);
  font-style: italic;
  color: rgba(245, 237, 214, 0.5);
  font-size: 17px;
  margin-bottom: 32px;
}

.past-events .event-day-num { color: rgba(92, 61, 30, 0.3); }
.past-events .event-title    { color: rgba(92, 61, 30, 0.5); }

/* ── REVIEWS PAGE ────────────────────────────────────────── */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.featured-review {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--aged-paper);
  padding: 60px;
  margin-bottom: 8px;
}

.featured-review blockquote {
  font-family: var(--font-fell);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: var(--dark-brown);
  line-height: 1.45;
}

.featured-review blockquote::before {
  content: '"';
  font-size: 80px;
  line-height: 0.5;
  color: var(--dusty-gold);
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.featured-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.featured-review-avatar {
  width: 56px;
  height: 56px;
  background: var(--dusty-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  flex-shrink: 0;
}

.featured-review-img {
  overflow: hidden;
}

.featured-review-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: sepia(20%) contrast(1.05);
}

.write-review { background: var(--cream); padding: 80px 0; }
.write-review-form { max-width: 600px; margin: 0 auto; }

.star-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.star-selector span {
  font-size: 28px;
  cursor: pointer;
  color: rgba(92, 61, 30, 0.2);
  transition: color 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-selector span.active,
.star-selector span:hover { color: var(--dusty-gold); }

.write-review input,
.write-review textarea,
.write-review select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(92, 61, 30, 0.18);
  background: var(--aged-paper);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 16px;
  appearance: none;
}

.write-review input:focus,
.write-review textarea:focus,
.write-review select:focus { border-color: var(--dusty-gold); }

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-page { padding: 80px 0 120px; }

.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(92, 61, 30, 0.1);
}

.blog-featured-img {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cinematic);
  filter: sepia(15%);
}

.blog-featured-img:hover img { transform: scale(1.05); }

.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--dusty-gold);
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark-brown);
}

.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-featured-excerpt {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 16px;
  color: var(--vintage-brown);
  line-height: 1.75;
  margin-bottom: 28px;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(92, 61, 30, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.blog-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid rgba(92, 61, 30, 0.18);
  background: none;
  color: var(--vintage-brown);
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px;
}

.blog-cat.active,
.blog-cat:hover {
  background: var(--dark-brown);
  color: var(--cream);
  border-color: var(--dark-brown);
}

/* ── INGREDIENTS PAGE ────────────────────────────────────── */
.ingredients-hero-quote {
  background: var(--dusty-gold);
  padding: 60px 0;
  text-align: center;
}

.ingredients-hero-quote blockquote {
  font-family: var(--font-fell);
  font-size: clamp(22px, 3vw, 40px);
  font-style: italic;
  color: var(--dark-brown);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.what-we-dont {
  background: var(--dark-brown);
  padding: 100px 0;
}

.dont-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.dont-item {
  border: 1px solid rgba(245, 237, 214, 0.07);
  padding: 32px 20px;
  text-align: center;
}

.dont-item .cross {
  font-size: 28px;
  color: var(--burgundy);
  margin-bottom: 12px;
  display: block;
}

.dont-item h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
}

.flavor-breakdown { padding: 100px 0; background: var(--cream); }

.flavor-tab-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1.5px solid rgba(92, 61, 30, 0.12);
  margin-bottom: 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.flavor-tab-nav::-webkit-scrollbar { display: none; }

.flavor-tab-btn {
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(92, 61, 30, 0.4);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
  min-height: 44px;
}

.flavor-tab-btn.active,
.flavor-tab-btn:hover {
  color: var(--dark-brown);
  border-bottom-color: var(--dusty-gold);
}

.flavor-panel { display: none; }

.flavor-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.flavor-panel-img {
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aged-paper);
}

.flavor-panel-img img {
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(92, 61, 30, 0.2));
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(92, 61, 30, 0.08);
}

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

.ingredient-item-icon {
  width: 40px;
  height: 40px;
  background: var(--aged-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ingredient-item-info h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 4px;
}

.ingredient-item-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--vintage-brown);
  line-height: 1.5;
}

.certifications { padding: 80px 0; background: var(--aged-paper); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.cert-card { text-align: center; padding: 36px 20px; }
.cert-icon { font-size: 44px; margin-bottom: 14px; }

.cert-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.cert-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--vintage-brown);
}

/* ── CART PAGE ───────────────────────────────────────────── */
.cart-page-section { padding: 80px 0; min-height: 60vh; }

.cart-page-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.cart-page-sub {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 16px;
  color: var(--vintage-brown);
  margin-bottom: 52px;
}

.promo-row { display: flex; gap: 0; margin: 20px 0; }

.promo-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(92, 61, 30, 0.2);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark-brown);
  outline: none;
  min-height: 44px;
}

.promo-row input:focus { border-color: var(--dusty-gold); }

.promo-row button {
  padding: 12px 20px;
  background: var(--dark-brown);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
  min-height: 44px;
}

.promo-row button:hover { background: var(--burgundy); }

.cart-also-love { padding: 80px 0; background: var(--aged-paper); }

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

.also-love-card {
  background: var(--cream);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease-cinematic);
}

.also-love-card:hover { transform: translateY(-6px); }

.also-love-card img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 20px rgba(92, 61, 30, 0.2));
}

.also-love-card h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 4px;
}

.also-love-card p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--vintage-brown);
  margin-bottom: 12px;
}

/* ── CHECKOUT PAGE ───────────────────────────────────────── */
.checkout-page { padding-top: 100px; padding-bottom: 80px; background: var(--cream); }

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkout-breadcrumb a { color: var(--dusty-gold); text-decoration: none; }
.checkout-breadcrumb span { color: rgba(92, 61, 30, 0.3); }
.checkout-breadcrumb strong { color: var(--dark-brown); }

.section-divider {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-gold);
  margin: 32px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(92, 61, 30, 0.12);
}

.payment-method { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid rgba(92, 61, 30, 0.15);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  min-height: 44px;
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--dusty-gold);
  background: rgba(184, 150, 62, 0.04);
}

.payment-option input[type="radio"] {
  accent-color: var(--dusty-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-option label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  cursor: pointer;
  flex: 1;
}

.payment-option-icon { font-size: 20px; }

.card-fields {
  display: none;
  padding: 16px;
  background: var(--aged-paper);
  margin-top: 8px;
}

.card-fields.visible { display: block; }

.stripe-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stripe-bar span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(92, 61, 30, 0.4);
}

.stripe-icon span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: #635bff;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(92, 61, 30, 0.4);
  margin-top: 12px;
}

.order-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
}

.order-success h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-brown);
  margin: 20px 0 12px;
}

.order-success p {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 18px;
  color: var(--vintage-brown);
  margin-bottom: 32px;
}

.success-icon { font-size: 64px; }

/* ── PARTNER SECTION (Contact) ───────────────────────────── */
.partner-section { padding: 100px 0; background: var(--dark-brown); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.partner-card {
  border: 1px solid rgba(245, 237, 214, 0.08);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.partner-card:hover {
  border-color: rgba(184, 150, 62, 0.3);
  transform: translateY(-6px);
}

.partner-icon { font-size: 40px; margin-bottom: 16px; }

.partner-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.partner-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 237, 214, 0.5);
}

.map-placeholder {
  background: var(--warm-beige);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: '📍 Coimbatore, Tamil Nadu, India';
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 20px;
  color: var(--dark-brown);
}

/* ============================================================
   REVIEWS PAGE CARD OVERRIDES
   ============================================================ */

.reviews-page-grid .review-card {
    background: #ffffff;
    border: 1px solid rgba(92, 61, 30, 0.12);
}

.reviews-page-grid .review-title {
    color: var(--dark-brown);
}

.reviews-page-grid .review-text {
    color: var(--vintage-brown);
}

.reviews-page-grid .review-author-info h5 {
    color: var(--dark-brown);
}

.reviews-page-grid .review-author-info span {
    color: var(--vintage-brown);
}
.review-success-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(5px);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99999;
}

.review-success-popup.show{
    opacity:1;
    visibility:visible;
}

.review-success-box{

    background:var(--cream);

    width:340px;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.3);
}

.success-bottle{

    width:120px;

    margin-bottom:20px;

    animation:bottlePop .6s ease;
}

.review-success-box h2{

    font-size:22px;

    color:var(--dark-brown);

    margin-bottom:12px;
}

.review-success-box p{

    color:var(--vintage-brown);

    margin-bottom:25px;

    line-height:1.6;
}

.review-success-box button{

    background:var(--dusty-gold);

    color:var(--dark-brown);

    border:none;

    padding:12px 28px;

    border-radius:40px;

    cursor:pointer;

    font-weight:600;
}

.review-success-box button:hover{

    transform:translateY(-2px);
}

@keyframes bottlePop{

    0%{
        opacity:0;
        transform:translateY(60px) scale(.5) rotate(-10deg);
    }

    60%{
        opacity:1;
        transform:translateY(-10px) scale(1.08) rotate(4deg);
    }

    80%{
        transform:translateY(5px) scale(.97);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1) rotate(0);
    }

}

@keyframes popupFade{

    from{
        opacity:0;
        transform:translateY(25px) scale(.95);
    }

    to{
        opacity:1;
        transform:none;
    }

}