
:root {
  --red: #d31d1f;
  --red-dark: #a01517;
  --red-light: #e83335;
  --orange: #e67e22;
  --gold: #ffd700;
  --yellow: #ffef00;
  --cream: #fdf6ee;
  --cream-dark: #f5ebe0;
  --brown: #1a1a1a;
  --brown-light: #3d2314;
  --text: #1a1a1a;
  --text-muted: #5c4a42;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(211, 29, 31, 0.15);
  --header-h: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img, svg { display: block; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.header.scrolled {
  border-bottom-color: rgba(61, 35, 20, 0.08);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s;
}

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

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: 0.25s;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

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

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(230, 126, 34, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(192, 57, 43, 0.1) 0%, transparent 50%),
    var(--cream);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.highlight {
  color: var(--red);
  font-style: italic;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red);
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== Hero Bottle ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.45);
  box-shadow:
    0 0 18px 4px rgba(211,29,31,0.25),
    0 0 40px 10px rgba(255,215,0,0.12),
    0 8px 32px rgba(26,26,26,0.08);

}


  50% {
    box-shadow:
      0 0 28px 8px rgba(211,29,31,0.4),
      0 0 60px 18px rgba(255,215,0,0.2),
      0 8px 32px rgba(26,26,26,0.08);
  }
}

.hero-bottle-glow {
  position: absolute;
  inset: 5% 0;
  background: radial-gradient(circle, rgba(211, 29, 31, 0.15) 0%, rgba(255, 215, 0, 0.06) 45%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: min(340px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(26, 26, 26, 0.2));
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--red);
  color: var(--white);
  padding: 0.875rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
}

.marquee-track span:not(:nth-child(even)) {
  padding: 0 0.25rem;
}

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

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-warm {
  background: var(--cream-dark);
}

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

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow { color: var(--gold); }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-head-light h2 { color: var(--cream); }
.section-head-light p { color: rgba(253, 246, 238, 0.7); }

/* ===== Story ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.story-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.story-stat-card {
  position: relative;
  margin-top: -3rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.story-content blockquote {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
}

.story-content cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-featured {
  border: 2px solid var(--red);
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 999px;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 1rem;
}

.product-image img {
  max-height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.product-image-case {
  height: 200px;
}

.case-stack {
  position: relative;
  width: 180px;
  height: 180px;
}

.case-bottle {
  position: absolute;
  object-fit: contain;
}

.case-bottle-back {
  width: 100px;
  left: 0;
  top: 10px;
  opacity: 0.85;
  transform: rotate(-8deg);
}

.case-bottle-front {
  width: 80px;
  right: 10px;
  bottom: 0;
  transform: rotate(6deg);
}

.product-badge-alt {
  background: var(--gold);
  color: var(--brown);
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: #000000;
  border: 2px solid #000000;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.product-tag-light {
  background: var(--yellow);
  color: #000000;
  border: 2px solid #000000;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.product-card > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.heat-meter {
  margin-bottom: 1.25rem;
}

.heat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.heat-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.25rem;
}

.heat-bars span {
  flex: 1;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
}

.heat-bars span.active {
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.heat-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
}

.size {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== Ingredients ===== */
.ingredients {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
}

.ingredients h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.ingredients-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
  margin-bottom: 1rem;
}

.ingredients-split h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.shrimp-free-label {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--yellow);
  color: #000000;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  vertical-align: middle;
  letter-spacing: 0.06em;
  border: 2px solid #000000;
  display: inline-block;
  margin-top: 0.25rem;
}

.ingredients-split .ingredient-list {
  justify-content: flex-start;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.ingredient-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.ingredient-list li::before {
  content: '•';
  color: var(--red);
  margin-right: 0.5rem;
}

.ingredients-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Uses ===== */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.use-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.25s;
}

.use-card:hover { transform: translateY(-4px); }

.use-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.use-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--brown);
  margin-bottom: 0.375rem;
}

.use-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Stockists ===== */
.stockists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stockist {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stockist h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.375rem;
}

.stockist p {
  font-size: 0.9375rem;
  color: rgba(253, 246, 238, 0.75);
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial footer {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== Order Section ===== */
.order-head .eyebrow { color: var(--gold); }

.order-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.order-head p {
  color: rgba(253, 246, 238, 0.85);
}

.order-phone {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-phone:hover {
  color: var(--white);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.order-card.selected {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
}

.order-card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.order-card-image img {
  max-height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.order-card-image-case {
  gap: 0.75rem;
}

.case-option-img {
  max-width: 90px !important;
}

.case-or {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.order-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--brown);
  margin-bottom: 0.375rem;
}

.order-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.case-buttons {
  display: flex;
  gap: 0.5rem;
}

.case-buttons .btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--text);
}

.cta-section .order-form {
  max-width: 640px;
  margin: 0 auto;
}

.order-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(61, 35, 20, 0.15);
  border-radius: var(--radius);
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.order-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(61, 35, 20, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.order-form .btn-primary {
  width: 100%;
}

.form-success {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--red);
}

/* ===== Footer ===== */
.footer {
  background: var(--brown);
  color: rgba(253, 246, 238, 0.7);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

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

.footer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}

.made-in { color: var(--gold); }


/* ===== Image blend fix ===== */
.hero-bottle,
.product-image img,
.order-card-image img,
.case-bottle {
  mix-blend-mode: multiply;
}





/* ===== Accordion Stockists ===== */
.accordion-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.accordion-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: border-color 0.25s;
}

.accordion-item.active {
  border-color: var(--white);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  text-align: left;
}

.accordion-header:hover {
  background: rgba(255,215,0,0.12);
}

.accordion-item.active .accordion-header {
  background: rgba(255,215,0,0.15);
}

.accordion-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-pin {
  font-size: 1.1rem;
}

.accordion-city {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

.accordion-count {
  font-size: 0.75rem;
  color: rgba(253,246,238,0.55);
  background: rgba(255,255,255,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 500;
}

.accordion-icon {
  font-size: 1.375rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, background 0.3s ease;
  padding: 0 1.5rem;
  background: rgba(0,0,0,0.2);
}

.accordion-body.open {
  max-height: 800px;
  padding: 1rem 1.5rem;
  background: var(--white);
}

.accordion-stores {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-store {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}

.accordion-store:last-child {
  border-bottom: none;
}

.accordion-store-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown);
}

.accordion-store-address {
  font-size: 0.8125rem;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  line-height: 1.5;
}

.accordion-store-address:hover {
  color: var(--red-dark);
}

@media (max-width: 600px) {
  .accordion-header { padding: 0.875rem 1rem; }
  .accordion-body.open { padding: 0.875rem 1rem; }
  .accordion-city { font-size: 0.9375rem; }
}

/* ===== Dropdown Stockists ===== */
.stockists-dropdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dropdown-city {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}

.dropdown-city:hover .dropdown-trigger {
  background: rgba(255,215,0,0.15);
  border-color: var(--gold);
}

.dropdown-city-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dropdown-city-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.dropdown-city-count {
  font-size: 0.75rem;
  color: rgba(253,246,238,0.6);
  font-weight: 500;
}

.dropdown-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.dropdown-city:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-stores {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #2a1a0e;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  min-width: 100%;
}

.dropdown-city:hover .dropdown-stores {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.store-item {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 0.2rem;
}

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

.store-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
}

.store-address {
  font-size: 0.775rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
  line-height: 1.4;
}

.store-address:hover {
  color: var(--white);
}

@media (max-width: 968px) {
  .stockists-dropdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .stockists-dropdown {
    grid-template-columns: 1fr;
  }
}

/* ===== Store items ===== */
.stockists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.store-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.store-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.store-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.store-address {
  font-size: 0.8125rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  line-height: 1.4;
}

.store-address:hover {
  color: var(--white);
}

@media (max-width: 968px) {
  .stockists {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== Metrics ===== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  transition: transform 0.25s;
}

.metric-card:hover { transform: translateY(-4px); }

.metric-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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





.ingr-track {
  display: flex;
  gap: 0.75rem;
  animation: slide-ingredients 10s linear infinite;
  width: max-content;
}

.ingr-track:hover {
  animation-play-state: paused;
}

.ingr-slide-img {
  height: 75px;
  width: 75px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(26,26,26,0.12);
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

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


  100% { transform: translateX(-50%); }
}


/* ===== Ingredient Marquee ===== */
.ingr-marquee {
  width: 100%;
  background: var(--cream-dark);
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ingr-marquee-inner {
  width: 60%;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.ingr-marquee-track {
  display: flex;
  gap: 0.4rem;
  width: max-content;
  animation: ingr-scroll 18s linear infinite;
  align-items: center;
}

.ingr-marquee-track:hover {
  animation-play-state: paused;
}

.ingr-slide-img {
  height: 65px;
  width: 65px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(26,26,26,0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ingr-slide-img:hover {
  transform: none;
}

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





/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-bottle-wrap {
    max-width: 260px;
    margin: 0 auto;
  }
  .badge {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .order-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .accordion-list {
    max-width: 100%;
  }
  .ingr-marquee-inner {
    width: 90%;
  }
  #whatsappBtn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2 {
    font-size: 1.5rem;
  }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-bottle { width: min(260px, 65vw); }

  .ingredients-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ingredients-split .ingredient-list {
    justify-content: center;
  }

  .order-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .stockists { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 35, 20, 0.08);
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 1.5rem; }
  .nav-links .btn { margin: 0.5rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 1rem; align-items: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

