/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Earthy Premium Palette */
  --color-bg-primary: #0f0f0f;
  --color-bg-secondary: #1a1a1a;
  --color-bg-card: #1e1e1e;
  --color-bg-card-hover: #252525;
  --color-bg-elevated: #2a2a2a;
  
  --color-gold: #c8a45c;
  --color-gold-light: #e0c882;
  --color-gold-dark: #9e7d3a;
  --color-gold-glow: rgba(200, 164, 92, 0.15);
  
  --color-green: #4a7c59;
  --color-green-light: #6b9e7a;
  --color-green-dark: #2d5a3a;
  
  --color-text-primary: #f5f0e8;
  --color-text-secondary: #b8b0a0;
  --color-text-muted: #7a7268;
  --color-text-accent: #c8a45c;
  
  --color-border: rgba(200, 164, 92, 0.12);
  --color-border-hover: rgba(200, 164, 92, 0.3);
  
  --color-success: #4a7c59;
  --color-error: #c45c5c;
  --color-whatsapp: #25D366;
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(200, 164, 92, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.logo-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: #f5f0e4;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(200, 164, 92, 0.2);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.1;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #f5f0e4;
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: 0 8px 40px rgba(200, 164, 92, 0.25), 0 0 0 1px rgba(200, 164, 92, 0.15);
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease;
}

.logo-text span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.cart-btn:hover {
  background: rgba(200, 164, 92, 0.2);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold);
}

.cart-btn .cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-gold);
  color: var(--color-bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  transform: scale(0);
}

.cart-count.show {
  transform: scale(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.5) 0%,
    rgba(15, 15, 15, 0.7) 50%,
    rgba(15, 15, 15, 1) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease;
}

.hero-badge .pin-icon {
  font-size: 1.1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-secondary);
}

.trust-item-icon {
  font-size: 1.8rem;
}

.trust-item-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item-text strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: var(--space-4xl) 0;
}

/* Category Filter */
.category-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.category-btn:hover {
  border-color: var(--color-border-hover);
  color: var(--color-gold);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
  border-color: transparent;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* Product Card */
.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

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

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-elevated);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  background: var(--color-gold);
  color: var(--color-bg-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.product-card-year {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Weight Selector */
.weight-selector {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.weight-btn {
  padding: 6px 12px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.weight-btn:hover {
  border-color: var(--color-border-hover);
  color: var(--color-gold);
}

.weight-btn.active {
  background: rgba(200, 164, 92, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Price Display */
.product-price-container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

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

.product-price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* Add to Cart */
.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.4);
}

.add-to-cart-btn.added {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.about-text h2 span {
  color: var(--color-gold);
}

.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.about-feature-icon {
  font-size: 1.5rem;
}

.about-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Location Badge */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.15), rgba(200, 164, 92, 0.05));
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-top: var(--space-lg);
}

.location-badge .location-pin {
  font-size: 1.3rem;
}

/* ===== SHIPPING SECTION ===== */
.shipping-section {
  padding: var(--space-4xl) 0;
}

.shipping-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.shipping-card {
  padding: var(--space-2xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
}

.shipping-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.shipping-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.shipping-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.shipping-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.shipping-notice {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(200, 164, 92, 0.08);
  border: 1px solid rgba(200, 164, 92, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--color-gold);
  font-weight: 500;
}

/* ===== WHOLESALE SECTION ===== */
.wholesale-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.05), rgba(74, 124, 89, 0.05));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.wholesale-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.wholesale-content p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 36px;
  background: var(--color-whatsapp);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--space-4xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
}

.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.footer-column a {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.payment-methods {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.payment-icon {
  padding: 6px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: whatsappPulse 2s ease infinite;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: white;
  color: #333;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -460px;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border);
  z-index: 2001;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.cart-close:hover {
  color: var(--color-error);
  border-color: var(--color-error);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-text-muted);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.cart-empty p {
  font-size: 1rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-weight {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-elevated);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-primary);
}

.cart-qty-value {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-bg-card);
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.9rem;
}

.cart-item-remove {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  transition: var(--transition-fast);
  padding: 4px;
}

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

/* Cart Footer */
.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-card);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.cart-total-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-total-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-gold);
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.checkout-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.checkout-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.checkout-overlay.open .checkout-modal {
  transform: translateY(0);
}

.checkout-modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.checkout-modal h2 span {
  color: var(--color-gold);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select option {
  background: var(--color-bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Payment Methods */
.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-sm);
}

.payment-option {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.payment-option:hover {
  border-color: var(--color-border-hover);
}

.payment-option.selected {
  border-color: var(--color-gold);
  background: rgba(200, 164, 92, 0.08);
}

.payment-option-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.payment-option-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.payment-option.selected .payment-option-text {
  color: var(--color-gold);
}

/* Delivery Option */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.delivery-option {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.delivery-option:hover {
  border-color: var(--color-border-hover);
}

.delivery-option.selected {
  border-color: var(--color-gold);
  background: rgba(200, 164, 92, 0.08);
}

.delivery-option-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.delivery-option-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.delivery-option.selected .delivery-option-text {
  color: var(--color-gold);
}

.delivery-notice {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(200, 164, 92, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-gold);
  text-align: center;
  display: none;
}

.delivery-notice.show {
  display: block;
}

.address-field {
  display: none;
}

.address-field.show {
  display: block;
}

.checkout-submit {
  width: 100%;
  padding: 16px;
  margin-top: var(--space-lg);
  background: var(--color-whatsapp);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.checkout-submit:hover {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.checkout-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
}

/* ===== ADDED TO CART NOTIFICATION ===== */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 5000;
  padding: 14px 24px;
  background: var(--color-green);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-notification.show {
  transform: translateX(0);
}

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

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

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .hero-stats {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .payment-options {
    grid-template-columns: 1fr;
  }
  
  .cart-sidebar {
    width: 100vw;
    right: -100vw;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .trust-items {
    gap: var(--space-xl);
  }
  
  .category-filter {
    gap: 4px;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .weight-selector {
    gap: 4px;
  }
  
  .weight-btn {
    padding: 5px 8px;
    font-size: 0.72rem;
  }
  
  .delivery-options {
    grid-template-columns: 1fr;
  }
  
  .hero-logo {
    width: 140px;
    height: 140px;
  }
  
  .logo-text {
    display: none;
  }
}

/* ===== RECIPES SECTION ===== */
.recipes-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.recipe-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-smooth);
}

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

.recipe-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.recipe-emoji {
  font-size: 2.2rem;
}

.recipe-time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg-elevated);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.recipe-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.recipe-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.recipe-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.recipe-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.recipe-tag {
  padding: 4px 12px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid rgba(200, 164, 92, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 500;
}

.recipe-body {
  display: none;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-md);
}

.recipe-body.open {
  display: block;
}

.recipe-body p {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.recipe-body p strong {
  color: var(--color-gold);
}

.recipe-toggle {
  width: 100%;
  padding: 10px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.recipe-toggle:hover {
  border-color: var(--color-border-hover);
  color: var(--color-gold);
}

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