@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700;1,800;1,900&display=swap');

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

:root {
  /* Colors */
  --color-black: #0A0A0A;
  --color-dark: #1A1A1A;
  --color-darker: #111111;
  --color-dark-green: #1B3A12;
  --color-green: #2D5016;
  --color-green-light: #4A7C2E;
  --color-green-accent: #5A9A3A;
  --color-gold: #C8A45C;
  --color-gold-light: #D4B06A;
  --color-cream: #F5F0E8;
  --color-cream-dark: #E8DFD0;
  --color-white: #FAFAF5;
  --color-wine: #8B2252;
  --color-wine-subtle: rgba(139, 34, 82, 0.15);
  --color-text: #F5F0E8;
  --color-text-muted: #A89F8F;
  --color-text-dark: #2A2A2A;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  --color-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1400px;
  --card-radius: 16px;
  --btn-radius: 30px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: var(--btn-radius);
  padding: 16px 36px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 164, 92, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-cream);
  color: var(--color-cream);
}
.btn-secondary:hover {
  background: var(--color-cream);
  color: var(--color-black);
}

.btn-dark {
  background: transparent;
  border: 2px solid var(--color-text-dark);
  color: var(--color-text-dark);
}
.btn-dark:hover {
  background: var(--color-text-dark);
  color: var(--color-cream);
}

/* Animations */
@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(30px); } 
  to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}
@keyframes slideInLeft { 
  from { opacity: 0; transform: translateX(-50px); } 
  to { opacity: 1; transform: translateX(0); } 
}
@keyframes slideInRight { 
  from { opacity: 0; transform: translateX(50px); } 
  to { opacity: 1; transform: translateX(0); } 
}
@keyframes float { 
  0%, 100% { transform: translateY(0); } 
  50% { transform: translateY(-10px); } 
}
@keyframes shimmer { 
  0% { background-position: -200% center; } 
  100% { background-position: 200% center; } 
}
@keyframes pulse { 
  0%, 100% { transform: scale(1); } 
  50% { transform: scale(1.05); } 
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   1. NAVIGATION (.nav)
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-cream);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-gold);
}

.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-cart {
  position: relative;
  color: var(--color-cream);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cart:hover {
  color: var(--color-gold);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-gold);
  color: var(--color-black);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   2. HERO (.hero)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-black);
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  animation: slideInRight 1s ease both 0.3s;
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(45,80,22,0.3) 0%, rgba(200,164,92,0.1) 40%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-image {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.trust-item svg, .trust-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   3. SOCIAL PROOF BAR (.social-proof)
   ========================================================================== */
.social-proof {
  background: linear-gradient(135deg, var(--color-dark-green), var(--color-green));
  padding: 40px 0;
}

.social-proof-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.proof-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.proof-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
}

.proof-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ==========================================================================
   4. STORY SECTION (.story)
   ========================================================================== */
.story {
  background: var(--color-cream);
  padding: var(--section-padding) 0;
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.story-image-wrapper::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--color-gold);
  border-right: 4px solid var(--color-gold);
  z-index: 1;
}
.story-image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--color-gold);
  border-left: 4px solid var(--color-gold);
  z-index: 1;
}


.story-content {
  color: var(--color-text-dark);
}

.story-label {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-green);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.section-title-dark {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-signature {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-green);
  margin-top: 24px;
  display: block;
}

/* ==========================================================================
   5. PRODUCT SECTION (.product)
   ========================================================================== */
.product {
  background: var(--color-dark);
  padding: var(--section-padding) 0;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-image-main {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.product-info {
  color: var(--color-cream);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.product-tagline {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--color-gold);
  font-style: italic;
  display: block;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-price-original {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.meta-value {
  color: var(--color-cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.benefit-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.benefit-item svg, .benefit-item i {
  color: var(--color-green-accent);
  font-size: 1.1rem;
}
.benefit-item span {
  font-size: 0.9rem;
  color: var(--color-cream);
}

.product-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.quantity-btn {
  width: 40px;
  height: 44px;
  background: transparent;
  color: var(--color-cream);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.quantity-btn:hover {
  background: var(--color-bg-card);
}
.quantity-input {
  width: 50px;
  text-align: center;
  background: transparent;
  color: var(--color-cream);
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-weight: 600;
}
.quantity-input:focus {
  outline: none;
}

/* ==========================================================================
   6. INGREDIENTS SECTION (.ingredients)
   ========================================================================== */
.ingredients {
  background: var(--color-black);
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-style: italic;
  letter-spacing: 1px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-cream);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.ingredient-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ingredient-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 92, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ingredient-card-image {
  height: 200px;
  overflow: hidden;
}
.ingredient-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ingredient-card:hover .ingredient-card-image img {
  transform: scale(1.1);
}

.ingredient-card-content {
  padding: 24px;
}

.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.ingredient-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. USES/VERSATILITY SECTION (.uses)
   ========================================================================== */
.uses {
  background: var(--color-cream);
  padding: var(--section-padding) 0;
}

.uses .section-title-dark {
  text-align: center;
  margin-bottom: 60px;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.use-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.use-card:hover img {
  transform: scale(1.1);
}

.use-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.use-card:hover .use-card-overlay {
  background: linear-gradient(to top, rgba(45, 80, 22, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.use-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 600;
  margin: 0;
}

/* ==========================================================================
   8. DIFFERENTIATORS (.differentiators)
   ========================================================================== */
.differentiators {
  background: var(--color-dark);
  padding: var(--section-padding) 0;
}

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

.diff-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--card-radius);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}
.diff-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
}

.diff-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   9. GALLERY (.gallery)
   ========================================================================== */
.gallery {
  background: var(--color-black);
  padding: var(--section-padding) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:first-child,
.gallery-item:last-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(45, 80, 22, 0.4);
  opacity: 1;
}
.gallery-overlay i, .gallery-overlay svg {
  color: var(--color-white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.3s 0.1s;
}
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* ==========================================================================
   10. RECIPES (.recipes)
   ========================================================================== */
.recipes {
  background: var(--color-dark);
  padding: var(--section-padding) 0;
}

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

.recipe-card {
  background: var(--color-bg-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}
.recipe-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 92, 0.3);
}

.recipe-card-image {
  height: 220px;
  overflow: hidden;
}
.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.recipe-card:hover .recipe-card-image img {
  transform: scale(1.1);
}

.recipe-card-content {
  padding: 24px;
}

.recipe-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.recipe-card-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.recipe-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.recipe-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.recipe-link {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: gap 0.3s;
}
.recipe-link:hover {
  gap: 8px;
}

/* ==========================================================================
   11. TESTIMONIALS (.testimonials)
   ========================================================================== */
.testimonials {
  background: var(--color-black);
  padding: var(--section-padding) 0;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 6rem;
  color: rgba(200, 164, 92, 0.15);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-cream);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s;
}
.testimonial-nav:hover {
  opacity: 0.7;
}
.testimonial-prev {
  left: 0;
}
.testimonial-next {
  right: 0;
}

@media (min-width: 1024px) {
  .testimonial-prev { left: -60px; }
  .testimonial-next { right: -60px; }
}

/* ==========================================================================
   12. FAQ (.faq)
   ========================================================================== */
.faq {
  background: var(--color-dark);
  padding: var(--section-padding) 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 32px;
}

.faq-category-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cream);
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  transition: transform 0.3s, color 0.3s;
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust if content is very long */
}

.faq-answer-inner {
  padding: 0 0 20px 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   13. NEWSLETTER (.newsletter)
   ========================================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-green) 50%, var(--color-dark-green) 100%);
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 30px 0 0 30px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
  padding: 16px 32px;
  border-radius: 0 30px 30px 0;
  border: none;
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-btn:hover {
  background: var(--color-gold-light);
}

/* ==========================================================================
   14. FOOTER (.footer)
   ========================================================================== */
.footer {
  background: #050505;
  padding: 80px 0 24px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-cream);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  text-decoration: none;
}
.footer-logo span {
  color: var(--color-gold);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--color-cream);
}

/* ==========================================================================
   15. FLOATING CTA (.floating-cta) & BACK TO TOP
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-black);
  border-top: 1px solid var(--color-gold);
  padding: 12px 20px;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-cta.visible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .floating-cta.visible {
    display: none;
  }
}

.floating-cta-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
}
.floating-cta-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.back-to-top:hover {
  background: var(--color-green-light);
  transform: translateY(-3px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .back-to-top.visible {
    bottom: 80px; /* offset for floating CTA */
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }
  .hero-container {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-content {
    order: -1;
  }
  
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ingredients-grid, .diff-grid, .gallery-grid, .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .uses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    flex-direction: column;
    padding: 20px 40px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-subtitle {
    margin: 0 auto 36px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  
  .social-proof-container {
    gap: 30px;
  }
  .proof-stat:not(:last-child)::after {
    display: none;
  }
  
  .uses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .ingredients-grid, .diff-grid, .gallery-grid, .recipes-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-auto-rows: 250px;
  }
  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-row: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    border-radius: 30px;
    margin-bottom: 12px;
  }
  .newsletter-btn {
    border-radius: 30px;
  }
  
  .testimonial-card {
    padding: 48px 20px;
  }
  .testimonial-nav {
    display: none;
  }
}
