/* ============================
   NUTRIR FRESH — STYLE.CSS
   Ghee-themed premium design
   ============================ */

:root {
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #A07810;
  --brown: #4A2C0A;
  --brown-light: #7A4A1C;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --green: #2D6A4F;
  --green-light: #40916C;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray: #666;
  --gray-light: #F4F4F4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 10px 40px rgba(212, 160, 23, 0.3);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } }
body * { cursor: none; }
a, button { cursor: none; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; color: var(--gold-light); }
.loader-inner p { font-family: var(--font-display); font-size: 2rem; margin-top: 20px; }
.ghee-drop {
  width: 50px; height: 70px;
  background: var(--gold-light);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  margin: 0 auto;
  animation: drip 1.5s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.2) translateY(-5px); }
}

/* ===== GLOBALS ===== */
.golden { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 160, 23, 0.5);
}

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 600;
  padding: 11px 20px;
  border: none;
  border-radius: 50px;
  width: 100%;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1aad55; transform: translateY(-2px); }

.btn-whatsapp-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  margin-top: 24px;
  transition: var(--transition);
}
.btn-whatsapp-big:hover { background: #1aad55; transform: translateY(-2px); }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
header.scrolled {
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
header.scrolled .brand-name,
header.scrolled .brand-tagline { color: var(--brown); }
header.scrolled nav a { color: var(--brown); }
header.scrolled .cart-btn { color: var(--brown); border-color: var(--brown); }
header.scrolled .hamburger span { background: var(--brown); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 8%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 2rem; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}
.desktop-nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.desktop-nav a:hover { color: var(--gold-light); }
.desktop-nav a:hover::after { transform: scaleX(1); }

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

.cart-btn {
  display: flex; align-items: center; gap: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-count {
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(-100%); opacity: 0;
  transition: var(--transition);
  z-index: 999;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  padding: 16px 8%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 500;
  color: var(--brown);
}

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 700px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(74,44,10,0.7) 0%, rgba(74,44,10,0.5) 60%, rgba(74,44,10,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title .line {
  display: block;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .golden { color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.7s ease forwards;
  opacity: 0;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.9s ease forwards;
  opacity: 0;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 30px;
  animation: fadeUp 0.8s 1.1s ease forwards;
  opacity: 0;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--gold-light); font-family: var(--font-display); }
.trust-item span { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.floating-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; font-size: 1.5rem;
  animation: floatParticle 8s ease-in-out infinite;
  opacity: 0.6;
}
.particle:nth-child(1) { top:15%; left:10%; animation-delay:0s; }
.particle:nth-child(2) { top:25%; right:12%; animation-delay:1.5s; }
.particle:nth-child(3) { top:65%; left:8%; animation-delay:3s; }
.particle:nth-child(4) { top:70%; right:10%; animation-delay:4.5s; }
.particle:nth-child(5) { top:45%; left:5%; animation-delay:2s; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.8rem;
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  display: inline-block;
  margin: 0 30px;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 8%;
  background: var(--cream);
}
.about-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-img-main img {
  width: 100%; height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.img-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-text { padding: 20px 0; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-lead { font-size: 1.15rem; font-weight: 500; color: var(--brown-light); margin-bottom: 16px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex; gap: 30px; margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.stat span:last-child { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ===== COW SECTION ===== */
.cow-section {
  position: relative;
  padding: 120px 8%;
  overflow: hidden;
}
.cow-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cow-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,106,79,0.92), rgba(64,145,108,0.85));
}
.cow-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  color: white;
}
.cow-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}
.cow-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.cow-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cow-feat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 30px 20px;
  transition: var(--transition);
}
.cow-feat:hover { background: rgba(255,255,255,0.18); transform: translateY(-6px); }
.feat-icon { font-size: 2rem; margin-bottom: 12px; }
.cow-feat strong { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.cow-feat p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== PROCESS ===== */
.process {
  padding: 120px 8%;
  background: var(--cream-dark);
}
.process-timeline {
  display: flex; align-items: stretch; flex-wrap: wrap; gap: 0;
  max-width: 1300px; margin: 0 auto 60px;
  justify-content: center;
}
.process-step {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212,160,23,0.2);
  border-top: 4px solid var(--gold);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  position: absolute; top: 10px; right: 14px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step-body h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--brown); margin-bottom: 8px; }
.step-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.step-detail {
  display: inline-block;
  background: var(--cream);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}
.process-connector {
  display: flex; align-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 10px;
  margin-top: 30px;
}
.process-visual {
  max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.process-visual img { width: 100%; height: 400px; object-fit: cover; }
.process-visual-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 40px 30px 24px;
  display: flex; align-items: center; gap: 16px;
}
.process-visual-caption span { font-size: 2rem; }
.process-visual-caption strong { display: block; font-size: 1.1rem; }
.process-visual-caption p { font-size: 0.85rem; opacity: 0.8; }

/* ===== BENEFITS ===== */
.benefits {
  padding: 120px 8%;
  background: var(--cream);
}
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-bottom-color: var(--gold);
}
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--brown); margin-bottom: 10px; }
.benefit-card p { color: var(--gray); line-height: 1.7; font-size: 0.95rem; }

/* ===== FACILITY ===== */
.facility {
  padding: 120px 8%;
  background: var(--brown);
}
.facility .section-header h2 { color: var(--cream); }
.facility .section-header p { color: rgba(255,248,231,0.7); }
.facility .section-label { background: rgba(212,160,23,0.15); }
.facility-gallery {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 300px;
  gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.facility-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.facility-card--tall { grid-row: span 1; height: 300px; }
.facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.facility-card:hover img { transform: scale(1.08); }
.facility-card-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  padding: 30px 20px 16px;
}
.facility-card-text h4 { font-size: 1rem; margin-bottom: 4px; }
.facility-card-text p { font-size: 0.8rem; opacity: 0.8; }

/* ===== SHOP ===== */
.shop {
  padding: 120px 8%;
  background: var(--cream-dark);
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.15); }
.product-card--featured { border: 3px solid var(--gold); }

.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--brown);
  color: var(--gold-light);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge--gold { background: var(--gold); color: var(--brown); }

.product-img-wrap {
  position: relative; overflow: hidden;
  height: 260px;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-img-glow {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, white);
}

.product-info { padding: 24px; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--brown);
  margin-bottom: 4px;
}
.product-size { color: var(--gray); font-size: 0.85rem; margin-bottom: 12px; }
.product-features {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.product-features span {
  background: var(--cream);
  color: var(--green);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
}
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.product-price { font-size: 1.8rem; font-weight: 700; color: var(--brown); font-family: var(--font-display); }
.product-mrp { font-size: 0.9rem; color: var(--gray); text-decoration: line-through; margin-left: 8px; }
.product-discount {
  background: #FEF3C7; color: #92400E;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.product-actions { display: flex; gap: 10px; }
.btn-add-cart {
  flex: 1;
  background: var(--cream);
  border: 2px solid var(--brown);
  color: var(--brown);
  padding: 11px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--brown); color: white; }
.btn-buy-now {
  flex: 1;
  background: var(--gold);
  border: none;
  color: var(--brown);
  padding: 11px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-buy-now:hover { background: var(--gold-dark); color: white; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 8%;
  background: var(--cream);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--cream-dark);
  position: absolute; top: 10px; right: 20px;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-card p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-author strong { display: block; color: var(--brown); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 8%;
  background: var(--brown);
}
.contact-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 30px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(212,160,23,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--gold-light); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span { color: rgba(255,248,231,0.8); font-size: 0.95rem; }

.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea,
.order-modal input,
.order-modal textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.order-modal input:focus,
.order-modal textarea:focus { border-color: var(--gold); background: white; }
.form-group textarea { min-height: 100px; }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 95vw;
  height: 100vh;
  background: white;
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown); }
.cart-close {
  background: none; border: none; font-size: 1.8rem;
  color: var(--gray); line-height: 1;
}
.cart-items {
  flex: 1; overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty { text-align: center; color: var(--gray); padding: 60px 0; font-size: 1rem; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.95rem; color: var(--brown); }
.cart-item-info span { font-size: 0.85rem; color: var(--gray); }
.cart-item-price { font-weight: 700; color: var(--gold-dark); }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--brown);
  transition: 0.2s;
}
.qty-btn:hover { background: var(--gold); color: white; }
.qty-num { font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-size: 1.1rem; margin-bottom: 16px;
}
.cart-total strong { font-size: 1.4rem; color: var(--brown); font-family: var(--font-display); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0; visibility: hidden;
  transition: 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

/* ===== ORDER MODAL ===== */
.order-modal {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transition: 0.3s;
  padding: 20px;
}
.order-modal.active { opacity: 1; visibility: visible; }
.order-modal-box {
  background: white;
  border-radius: 24px;
  padding: 36px;
  max-width: 480px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: translateY(30px);
  transition: transform 0.4s;
}
.order-modal.active .order-modal-box { transform: translateY(0); }
.order-modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--brown);
  margin-bottom: 20px;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--cream); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.3rem; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
}
.order-summary {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.order-price { font-weight: 700; font-size: 1.2rem; color: var(--gold-dark); font-family: var(--font-display); }
#orderStep1 .form-group { margin-bottom: 12px; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-opt {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--brown);
  transition: 0.2s;
}
.payment-opt.active { border-color: var(--gold); background: #FFF8E7; }
.payment-opt:hover { border-color: var(--gold); }

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: 0.3s;
}
.modal-backdrop.active { opacity: 1; visibility: visible; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 9000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ===== FOOTER ===== */
footer {
  background: #0D0905;
  padding: 40px 8%;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; }
.footer-brand strong { display: block; font-size: 1.2rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .about-container { grid-template-columns: 1fr; gap: 50px; }
  .about-img-secondary { display: none; }
  .contact-container { grid-template-columns: 1fr; }
  .facility-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .facility-card { height: 220px; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .header-inner { padding: 14px 5%; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .cart-sidebar { width: 100vw; }
  .about-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-cta { flex-direction: column; }
}
