/* ===================================================
   SHREEJA LAKSHMI — Premium Makhana Brand
   Design System & Complete Styles
   =================================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --gold:            #C8922A;
  --gold-light:      #D9A84A;
  --deep-gold:       #A67521;
  --cream:           #FFF8EE;
  --warm-ivory:      #F5E6CC;
  --dark-brown:      #3B2415;
  --brown:           #5C3D2E;
  --maroon:          #5E1A2B;
  --soft-white:      #FFFDF9;
  --makhana-light:   #F0DDB8;
  --makhana-mid:     #E8CFA0;
  --text-muted:      #7A6552;
  --border-light:    rgba(200, 146, 42, 0.15);
  --shadow-warm:     rgba(59, 36, 21, 0.08);
  --overlay-dark:    rgba(59, 36, 21, 0.55);
  --overlay-gold:    rgba(200, 146, 42, 0.08);

  /* Typography */
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Lato', 'Segoe UI', sans-serif;
  --font-accent:     'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-pad:     100px;
  --container-max:   1200px;

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

  /* Border radius */
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       30px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark-brown);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-brown);
}

p {
  color: var(--brown);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  font-style: italic;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--deep-gold));
  border: none;
  border-radius: 2px;
  margin: 20px 0;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: white;
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 146, 42, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 36, 21, 0.3);
}

.btn-amazon {
  background: #FF9900;
  color: #232F3E;
  font-weight: 900;
}

.btn-amazon:hover {
  background: #FFB347;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 153, 0, 0.4);
}

.btn-flipkart {
  background: #2874F0;
  color: white;
  font-weight: 900;
}

.btn-flipkart:hover {
  background: #4A90E2;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40, 116, 240, 0.4);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-icon {
  font-size: 1.2em;
  line-height: 1;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 248, 238, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 40px var(--shadow-warm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.3s var(--ease-out);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  transition: color 0.4s var(--ease-out);
}

.navbar.scrolled .nav-logo-text {
  color: var(--dark-brown);
}

.nav-logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s var(--ease-out);
}

.navbar.scrolled .nav-logo-tagline {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease-out);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease-out), background 0.4s var(--ease-out);
  border-radius: 1px;
}

.navbar.scrolled .nav-links a::after {
  background: var(--gold);
}

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

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

.navbar.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(255, 248, 238, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-brown);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(
      to right,
      rgba(30, 15, 5, 0.92) 0%,
      rgba(40, 22, 10, 0.82) 35%,
      rgba(50, 28, 12, 0.7) 60%,
      rgba(59, 36, 21, 0.6) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(30, 15, 5, 0.3) 0%,
      transparent 30%,
      transparent 70%,
      rgba(30, 15, 5, 0.4) 100%
    );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 42, 0.2);
  border: 1px solid rgba(200, 146, 42, 0.45);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: #F0C050;
  position: relative;
  text-shadow: 0 2px 10px rgba(200, 146, 42, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(200, 146, 42, 0.2);
  border: 1px solid rgba(200, 146, 42, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

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

.hero-btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
}

/* Floating makhana decorations */
.hero-floater {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,248,220,0.3), rgba(240,221,184,0.1));
  z-index: 1;
  animation: float-up 15s infinite;
  pointer-events: none;
}

.hero-floater:nth-child(1) { width: 80px; height: 80px; right: 8%; top: 25%; animation-delay: 0s; animation-duration: 18s; }
.hero-floater:nth-child(2) { width: 50px; height: 50px; right: 15%; top: 60%; animation-delay: 3s; animation-duration: 14s; }
.hero-floater:nth-child(3) { width: 35px; height: 35px; right: 25%; top: 40%; animation-delay: 7s; animation-duration: 20s; }

@keyframes float-up {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateY(-20px) rotate(90deg); opacity: 0.7; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.4; }
  75% { transform: translateY(-20px) rotate(270deg); opacity: 0.7; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: var(--section-pad) 0;
  background: var(--soft-white);
  position: relative;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(59, 36, 21, 0.85);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.about-image-badge span {
  color: var(--gold-light);
  font-size: 1.4rem;
  display: block;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.why-card {
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--deep-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-warm);
  border-color: rgba(200, 146, 42, 0.25);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12), rgba(200,146,42,0.05));
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-color: var(--gold);
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--soft-white) 0%, var(--warm-ivory) 100%);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.product-card {
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 36, 21, 0.12);
}

.product-card-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(145deg, #F7EDE0 0%, #EDE0CC 50%, #E8D8C0 100%);
}

.product-card-image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(59, 36, 21, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(200,146,42,0.3);
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.product-sutta {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.product-card-body p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

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

.product-tag {
  background: rgba(200,146,42,0.08);
  border: 1px solid rgba(200,146,42,0.15);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* =============================================
   WHO WE SERVE
   ============================================= */
.serve {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.serve-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 40px auto 0;
  background: var(--warm-ivory);
  padding: 5px;
  border-radius: var(--radius-xl);
  max-width: 400px;
}

.serve-tab {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-out);
}

.serve-tab.active {
  background: var(--soft-white);
  color: var(--dark-brown);
  box-shadow: 0 2px 12px var(--shadow-warm);
}

.serve-content {
  margin-top: 40px;
}

.serve-panel {
  display: none;
  animation: fadeSlideUp 0.5s var(--ease-out);
}

.serve-panel.active {
  display: block;
}

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

.serve-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.serve-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.serve-item:hover {
  border-color: rgba(200,146,42,0.3);
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.serve-item-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12), rgba(200,146,42,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.serve-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.serve-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================
   MARKETPLACE SECTION
   ============================================= */
.marketplace {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--dark-brown), #2A1A0E);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.marketplace::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.marketplace h2,
.marketplace p {
  color: var(--cream);
}

.marketplace-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.marketplace-card {
  background: rgba(255,248,238,0.06);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.marketplace-card:hover {
  background: rgba(255,248,238,0.1);
  border-color: rgba(200,146,42,0.4);
  transform: translateY(-4px);
}

.marketplace-card-logo {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.marketplace-card h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.marketplace-card p {
  color: rgba(255,248,238,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* =============================================
   BULK ORDERS / CONTACT
   ============================================= */
.bulk-orders {
  padding: var(--section-pad) 0;
  background: var(--soft-white);
}

.bulk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

.bulk-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.bulk-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.bulk-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.bulk-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.bulk-info-card-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bulk-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.bulk-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-brown);
  background: var(--soft-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.1);
}

.form-control::placeholder {
  color: rgba(122, 101, 82, 0.5);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6552' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeSlideUp 0.5s var(--ease-out);
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--gold);
}

/* =============================================
   OUR PROMISE
   ============================================= */
.promise {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-ivory) 0%, var(--cream) 100%);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.promise-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.promise-item:hover {
  background: var(--soft-white);
  box-shadow: 0 8px 40px var(--shadow-warm);
}

.promise-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200,146,42,0.15), rgba(200,146,42,0.05));
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s var(--ease-out);
}

.promise-item:hover .promise-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-color: var(--gold);
}

.promise-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.promise-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
  padding: var(--section-pad) 0;
  background: var(--soft-white);
}

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

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(200,146,42,0.25);
}

.faq-item.active {
  border-color: rgba(200,146,42,0.35);
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-brown);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(200,146,42,0.04);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,146,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  font-size: 0.9rem;
  color: var(--gold);
}

.faq-item.active .faq-toggle {
  background: var(--gold);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s var(--ease-out);
}

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

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

.faq-answer-inner ul {
  margin: 8px 0;
  padding-left: 20px;
}

.faq-answer-inner li {
  margin-bottom: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-brown);
  color: var(--cream);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(200,146,42,0.15);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,248,238,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,248,238,0.6);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item p {
  color: rgba(255,248,238,0.6);
  font-size: 0.9rem;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,248,238,0.4);
  font-size: 0.82rem;
}

.footer-seo {
  padding: 24px 0;
  border-top: 1px solid rgba(200,146,42,0.1);
}

.footer-seo p {
  color: rgba(255,248,238,0.3);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 900px;
}

/* =============================================
   WHATSAPP WIDGET
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--dark-brown);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--shadow-warm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: white;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  z-index: 997;
  box-shadow: 0 4px 15px rgba(200, 146, 42, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--deep-gold);
  transform: translateY(-3px);
}

/* =============================================
   LOADING OVERLAY
   ============================================= */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: loader-breathe 2s ease-in-out infinite;
}

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

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-inner {
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loader-slide 1.5s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 350px; }

  .bulk-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero .container { padding-top: 100px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-features { flex-direction: column; gap: 12px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .hero-floater { display: none; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-number { font-size: 1.6rem; }

  .why-us-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .marketplace-cards { grid-template-columns: 1fr; }

  .serve-list { grid-template-columns: 1fr; }

  .promise-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.5rem; }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --section-pad: 50px;
  }

  .container { padding: 0 16px; }

  .section-title { font-size: 1.7rem; }

  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .product-card-image { height: 300px; }

  .contact-form { padding: 24px; }

  .promise-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* =============================================
   INNER PAGES — Shared Styles
   ============================================= */

/* Page Hero */
.page-hero {
  padding: 160px 0 70px;
  background: linear-gradient(135deg, var(--dark-brown) 0%, #1E0F05 60%, #2A1A0E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-label { color: var(--gold-light); }

.page-hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero .hero-desc {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold-light); transition: color 0.3s; }
.breadcrumb a:hover { color: #FFFFFF; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* Content Sections */
.content-section { padding: var(--section-pad) 0; }
.content-section.bg-cream { background: var(--cream); }
.content-section.bg-white { background: var(--soft-white); }
.content-section.bg-warm { background: linear-gradient(180deg, var(--warm-ivory) 0%, var(--cream) 100%); }

.content-section.bg-dark {
  background: linear-gradient(135deg, var(--dark-brown), #2A1A0E);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.content-section.bg-dark::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.content-section.bg-dark h2,
.content-section.bg-dark h3 { color: var(--cream); }
.content-section.bg-dark p { color: rgba(255,248,238,0.7); }
.content-section.bg-dark .section-label { color: var(--gold-light); }

/* Content Grid (2-col text+image) */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--deep-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-warm);
  border-color: rgba(200,146,42,0.25);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12), rgba(200,146,42,0.05));
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out);
}

.feature-card:hover .feature-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-color: var(--gold);
  transform: scale(1.05);
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); }

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--deep-gold));
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(200,146,42,0.3);
}

.process-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Recipe Cards */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.recipe-card {
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-warm);
}

.recipe-card-header {
  background: linear-gradient(135deg, rgba(200,146,42,0.1), rgba(200,146,42,0.05));
  padding: 28px;
  border-bottom: 1px solid var(--border-light);
}

.recipe-card-header h3 { font-size: 1.3rem; margin-bottom: 8px; }

.recipe-meta {
  display: flex; gap: 20px;
  font-size: 0.82rem; color: var(--text-muted); font-weight: 600;
}

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

.recipe-card-body h4 {
  font-size: 0.9rem; color: var(--gold);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.ingredient-list { list-style: none; margin-bottom: 24px; }

.ingredient-list li {
  padding: 6px 0; font-size: 0.9rem; color: var(--brown);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}

.ingredient-list li::before { content: '•'; color: var(--gold); font-weight: 700; }

.step-list { list-style: none; counter-reset: step; }

.step-list li {
  padding: 8px 0; font-size: 0.9rem; color: var(--brown);
  counter-increment: step;
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.6;
}

.step-list li::before {
  content: counter(step);
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* Styled Tables */
.styled-table {
  width: 100%; border-collapse: collapse;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.styled-table thead {
  background: linear-gradient(135deg, var(--dark-brown), #2A1A0E);
}

.styled-table thead th {
  color: var(--cream); padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 600; text-align: left;
}

.styled-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}

.styled-table tbody tr:nth-child(even) { background: rgba(200,146,42,0.03); }
.styled-table tbody tr:hover { background: rgba(200,146,42,0.08); }

.styled-table tbody td {
  padding: 14px 20px; font-size: 0.92rem; color: var(--brown);
}

.styled-table tbody td:first-child { font-weight: 700; color: var(--dark-brown); }

.styled-table .highlight-row { background: rgba(200,146,42,0.08) !important; }
.styled-table .highlight-row td { color: var(--dark-brown); font-weight: 600; }

/* Grading Cards */
.grading-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.grading-card {
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.grading-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-warm);
  border-color: rgba(200,146,42,0.3);
}

.grading-card .grade-size {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}

.grading-card .grade-label {
  font-family: var(--font-accent);
  font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}

.grading-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.grading-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

.contact-methods { display: grid; gap: 20px; }

.contact-method {
  display: flex; align-items: center; gap: 18px;
  padding: 24px;
  background: var(--soft-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.contact-method:hover {
  border-color: rgba(200,146,42,0.3);
  box-shadow: 0 4px 20px var(--shadow-warm);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(200,146,42,0.12), rgba(200,146,42,0.05));
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}

.contact-method h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-method p,
.contact-method a { font-size: 0.9rem; color: var(--text-muted); }
.contact-method a:hover { color: var(--gold); }

/* Quality Checklist */
.quality-checklist { list-style: none; margin-top: 24px; }

.quality-checklist li {
  padding: 12px 0; font-size: 1rem; color: var(--brown);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

.quality-checklist li .check-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; flex-shrink: 0;
}

/* Inner page CTA banner */
.page-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-brown), #2A1A0E);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-cta h2 { color: var(--cream); margin-bottom: 16px; }

.page-cta p {
  color: rgba(255,248,238,0.7);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.page-cta .cta-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
}

/* Inner page responsive */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .grading-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; }
  .grading-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .page-cta .cta-buttons { flex-direction: column; align-items: center; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
