/* ===================================================
   NYVA FOODS — Premium Natural Food Website
   Color Scheme: Deep Green + Cream + Warm Accents
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --green-900: #0f3d0f;
  --green-800: #1a5c1a;
  --green-700: #2d7d2d;
  --green-600: #3a9e3a;
  --green-500: #4db84d;
  --green-400: #5cb85c;
  --green-300: #7bc96d;
  --green-200: #a8e6a0;
  --green-100: #d4f5d0;
  --green-50:  #f0fdf0;

  --cream-100: #faf7f2;
  --cream-200: #f5f0e8;
  --cream-300: #ede4d5;

  --brown-600: #8b5e3c;
  --brown-400: #c49a6c;

  --gold-500: #d4a017;
  --gold-400: #e8b828;

  --white: #ffffff;
  --text-dark: #1a2e1a;
  --text-mid: #3d5c3d;
  --text-light: #6b886b;
  --text-muted: #9aaa9a;

  --shadow-sm: 0 2px 8px rgba(45, 125, 45, 0.1);
  --shadow-md: 0 8px 24px rgba(45, 125, 45, 0.15);
  --shadow-lg: 0 20px 60px rgba(45, 125, 45, 0.2);
  --shadow-xl: 0 30px 80px rgba(45, 125, 45, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--cream-100);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; outline: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; outline: none; }
input, textarea { font-family: inherit; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-700); }

/* ===== SELECTION ===== */
::selection { background: var(--green-200); color: var(--green-900); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-800), var(--green-600), var(--green-800));
  background-size: 200% 100%;
  animation: shimmerBar 4s linear infinite;
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

.ann-close {
  position: absolute;
  right: 16px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
}

.ann-close:hover { background: rgba(255,255,255,0.3); }

@keyframes shimmerBar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(45, 125, 45, 0.12);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-icon.small { width: 32px; height: 32px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-n, .logo-y, .logo-va {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--green-800);
  display: inline;
}

.logo-y {
  color: var(--green-500);
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--green-600);
  margin-top: -2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--green-700);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 20px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search, .nav-cart {
  background: none;
  color: var(--text-mid);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  position: relative;
}

.nav-search:hover, .nav-cart:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--green-600);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(45, 125, 45, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 125, 45, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(45, 125, 45, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 125, 45, 0.4);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--green-700);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--green-300);
}

.btn-secondary:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-2px);
}

.btn-primary-inv {
  background: white;
  color: var(--green-800);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: none;
}

.btn-primary-inv:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-green { color: var(--green-600); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 40%, #1f5c1f 70%, var(--green-700) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(92, 184, 92, 0.15), transparent 70%);
  top: -200px; right: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 201, 109, 0.1), transparent 70%);
  bottom: -100px; left: -50px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  z-index: 1;
  position: relative;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-300);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-highlight {
  color: var(--green-300);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-badge-pill {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.hero-badge-pill:hover {
  background: rgba(255,255,255,0.2);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-buy {
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  color: var(--green-900);
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(92, 184, 92, 0.4);
}

.hero-buy:hover {
  background: linear-gradient(135deg, var(--green-300), #a0e090);
  box-shadow: 0 12px 36px rgba(92, 184, 92, 0.5);
}

.hero-learn {
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.hero-learn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-product-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.product-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(92, 184, 92, 0.3), rgba(45, 125, 45, 0.1));
  border-radius: var(--radius-xl);
  filter: blur(20px);
  z-index: -1;
}

.hero-product-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.floating-tag {
  position: absolute;
  background: white;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatTag 3s ease-in-out infinite;
}

.tag-1 { top: 16px; left: -20px; animation-delay: 0s; }
.tag-2 { bottom: 80px; left: -24px; animation-delay: -1s; }
.tag-3 { bottom: 16px; right: 16px; background: var(--green-800); color: white; animation-delay: -2s; }

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

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 10px); opacity: 0.3; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-300);
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}

.trust-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.trust-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 100px 0;
  background: var(--cream-100);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.product-card.product-card-hidden {
  display: none !important;
}

.product-card-img-wrap {
  flex-shrink: 0;
}

.product-card-info {
  flex: 1;
}

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

.product-featured {
  border: 2px solid var(--green-300);
  box-shadow: var(--shadow-md);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--green-700);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-green { background: var(--green-600); }
.badge-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--text-dark); }

.product-card-img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #faf7f2;
}

.product-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  display: block;
}

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

/* Floating Card Pills */
.card-pill {
  position: absolute;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.pill-top-left {
  top: 12px;
  left: 12px;
  background: white;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.04);
}

.pill-bottom-left {
  bottom: 12px;
  left: 12px;
  background: white;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.04);
}

.pill-bottom-right {
  bottom: 12px;
  right: 12px;
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
}

/* Coordinate color coding for the price pills */
.card-beetroot .pill-bottom-right {
  background: #7A0C2E;
  box-shadow: 0 4px 12px rgba(122, 12, 46, 0.3);
}
.card-abc .pill-bottom-right {
  background: #B03060;
  box-shadow: 0 4px 12px rgba(176, 48, 96, 0.3);
}
.card-moringa .pill-bottom-right {
  background: #2e6b2e;
  box-shadow: 0 4px 12px rgba(46, 107, 46, 0.3);
}
.card-banana .pill-bottom-right {
  background: #8A9A5B;
  box-shadow: 0 4px 12px rgba(138, 154, 91, 0.3);
}
.card-carrot .pill-bottom-right {
  background: #ED9121;
  box-shadow: 0 4px 12px rgba(237, 145, 33, 0.3);
}

/* Hover offset for pills */
.product-card:hover .card-pill {
  transform: translateY(-2px);
}
.product-card:hover .pill-bottom-right {
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 92, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.quick-add {
  background: white;
  color: var(--green-800);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--green-50);
}

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

.product-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ptag {
  background: var(--green-50);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--green-100);
}

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-meta { margin-bottom: 16px; }

.product-weight-opts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.weight-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  background: var(--cream-100);
  color: var(--text-dark);
  border: 1.5px solid var(--cream-300);
  transition: var(--transition);
  cursor: pointer;
  min-width: 75px;
}

.weight-btn strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.weight-btn .btn-subtext {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
  color: var(--text-mid);
  transition: var(--transition);
}

.weight-btn.active {
  background: var(--green-700);
  color: white;
  border-color: var(--green-700);
}

.weight-btn.active .btn-subtext {
  color: rgba(255, 255, 255, 0.85);
}

.weight-btn:hover:not(.active) {
  border-color: var(--green-500);
  background: var(--cream-50);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-300);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-curr {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-700);
}

.price-orig {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--green-50);
  color: var(--green-700);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(45, 125, 45, 0.3);
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 125, 45, 0.4);
}

.btn-add-cart.added {
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  animation: addedPop 0.3s ease;
}

@keyframes addedPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-200) 0%, var(--cream-100) 100%);
  position: relative;
  overflow: hidden;
}

.benefits-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(45, 125, 45, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.benefits-left .section-tag { margin-bottom: 1rem; }
.benefits-left .section-title { text-align: left; margin-bottom: 1rem; }
.benefits-left .section-desc { text-align: left; margin: 0; margin-bottom: 1.5rem; }

.nutrition-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.nutrition-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-700);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
}

/* ===== NUTRITION SELECTOR ===== */
.nutrition-selector-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}
.nutrition-selector-wrap label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.custom-select-container {
  position: relative;
  width: 100%;
  text-align: left;
}
.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid var(--green-600);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.custom-select-trigger:hover {
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
}
.custom-select-trigger .select-arrow {
  transition: transform 0.3s ease;
  color: var(--green-700);
}
.custom-select-container.open .select-arrow {
  transform: rotate(180deg);
}
.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: var(--white);
  border: 2px solid var(--green-600);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  overflow: hidden;
  animation: selectFadeIn 0.2s ease;
}
.custom-select-container.open .custom-select-options {
  display: block;
}
.custom-option {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  border-bottom: 1px solid var(--cream-100);
}
.custom-option:last-child {
  border-bottom: none;
}
.custom-option:hover {
  background: var(--green-50);
  color: var(--green-800);
  padding-left: 20px;
}
.custom-option.selected {
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
}
@keyframes selectFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.serving-info {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  background: var(--cream-100);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-500);
  text-align: left;
}
.nutrition-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.15s ease;
}
.nut-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--cream-300);
  font-size: 0.9rem;
  color: var(--text-dark);
}
.nut-row.indent {
  padding-left: 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.nut-row.highlight {
  border-bottom: none;
  font-weight: 600;
  color: var(--green-900);
  background: var(--green-50);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.nut-row.highlight-benefit {
  border-bottom: none;
  font-weight: 700;
  color: #7a5c00;
  background: #fffbe6;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border-left: 4px solid #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.nut-row.highlight-benefit .nut-label {
  color: #7a5c00;
  font-weight: 700;
  font-size: 0.88rem;
}
.nut-row.highlight-benefit .nut-value {
  color: #b38600;
  font-weight: 700;
  font-size: 0.88rem;
}
.nutrition-footer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.4;
  text-align: left;
}
.nut-val  { font-size: 0.82rem; font-weight: 700; color: var(--green-700); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  border: 1px solid var(--cream-300);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.benefit-card:hover::before {
  transform: scaleY(1);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== HOW TO USE ===== */
.howtouse-section {
  padding: 100px 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.howtouse-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235cb85c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.howtouse-section .section-header .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--green-300);
  border-color: rgba(255,255,255,0.15);
}

.howtouse-section .section-title { color: white; }
.howtouse-section .section-desc { color: rgba(255,255,255,0.65); }

.howto-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.howto-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  font-family: 'Playfair Display', serif;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}

.step-visual { position: relative; z-index: 1; margin-bottom: 16px; }

.step-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition);
}

.howto-step:hover .step-icon-wrap {
  background: var(--green-600);
  border-color: var(--green-400);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-tip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--green-300);
  border-radius: var(--radius-full);
}

.howto-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 184, 92, 0.3), rgba(92, 184, 92, 0.6), rgba(92, 184, 92, 0.3));
  flex-shrink: 0;
  position: relative;
}

.howto-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid rgba(92, 184, 92, 0.6);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Recipe Showcase */
.recipe-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.recipe-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
}

.recipe-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(92, 184, 92, 0.3);
  transform: translateY(-4px);
}

.recipe-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.recipe-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recipe-tag {
  display: inline-block;
  background: rgba(92, 184, 92, 0.2);
  color: var(--green-300);
  border: 1px solid rgba(92, 184, 92, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.recipe-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.recipe-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}

.recipe-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.recipe-meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

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

.testi-card {
  background: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--cream-300);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--green-100);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testi-featured {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-color: var(--green-600);
  color: white;
}

.testi-featured::before { color: rgba(255,255,255,0.1); }

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-featured .testi-text { color: rgba(255,255,255,0.85); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testi-featured .testi-author strong { color: white; }

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-featured .testi-author span { color: rgba(255,255,255,0.65); }

.testi-verified {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--green-600);
  font-weight: 600;
}

.testi-featured .testi-verified { color: var(--green-300); }

/* Rating Summary */
.testi-rating-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
}

.rating-big {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}

.rating-stars-big {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  max-width: 280px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.rbar {
  flex: 1;
  height: 6px;
  background: var(--cream-300);
  border-radius: 3px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  border-radius: 3px;
  transition: width 1s ease;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--cream-100);
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-icon { font-size: 2rem; }

.about-badge-float strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.about-badge-float span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.about-content .section-title { text-align: left; }
.about-content .section-tag { margin-bottom: 1rem; }

.about-content p {
  color: var(--text-light);
  line-height: 1.7;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}

.about-val {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-300);
  transition: var(--transition);
}

.about-val:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}

.val-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }

.about-val strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-val p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: floatTag 3s ease-in-out infinite;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-form { margin-bottom: 1.5rem; }

.cta-input-wrap {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 12px;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  outline: none;
  transition: var(--transition);
}

.cta-input::placeholder { color: rgba(255,255,255,0.5); }

.cta-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}

.cta-submit {
  background: white;
  color: var(--green-800);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.cta-quick-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-quick-buy span {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: var(--cream-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 0.9rem;
  color: var(--green-600);
  transition: var(--transition);
}

.contact-item a:hover { color: var(--green-800); }

.contact-social {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream-100);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.1);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
}

.footer-top { padding: 60px 0; }

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-certifications {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-300);
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--green-300);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: unset;
}

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

/* ===== TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: var(--green-800);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(45, 125, 45, 0.4);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.toast-icon { font-size: 1.1rem; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--green-700);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(45, 125, 45, 0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; }
  .hero-visual { order: -1; }
  .hero-product-img { height: auto; aspect-ratio: 3 / 4; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .benefits-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .recipe-showcase { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: fixed; 
    top: 130px; 
    left: 0; 
    right: 0; 
    height: calc(100vh - 130px); 
    background: var(--white); 
    flex-direction: column; 
    padding: 24px; 
    gap: 0; 
    z-index: 99999; 
    box-shadow: var(--shadow-lg); 
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link::after {
    display: none !important;
  }
  .nav-links .nav-link {
    font-size: 1.15rem;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--cream-200);
    border-radius: 0;
    color: var(--text-dark);
    font-weight: 500;
  }
  .nav-links .nav-link:last-child {
    border-bottom: none;
  }
  .nav-links .nav-link.active {
    color: var(--green-700);
    font-weight: 700;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-badges-row, .hero-cta-row, .hero-stats { justify-content: center; }
  .hero-desc { max-width: 100%; }
  .floating-tag { display: none; }

  .trust-container { grid-template-columns: 1fr 1fr; display: grid; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .howto-steps { flex-direction: column; }
  .howto-connector { width: 2px; height: 32px; }
  .howto-connector::after {
    right: unset; bottom: -4px; top: unset; left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid rgba(92, 184, 92, 0.6);
    border-bottom: none;
  }

  .recipe-card { flex-direction: column; }
  .recipe-img { width: 100%; height: 200px; }

  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-certifications { justify-content: center; }
  .footer-links-col { text-align: center; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .testi-rating-summary { flex-direction: column; text-align: center; }

  .cta-input-wrap { flex-direction: column; }
  .announcement-inner { flex-direction: column; gap: 4px; }
  .sep { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .trust-container { grid-template-columns: 1fr; }
}

/* ===== NIVA LOGO STYLING ===== */
.logo-wrapper {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 110px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-img {
  transform: scale(1.05);
}
.footer-logo .logo-img {
  height: 180px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-logo:hover .logo-img {
  opacity: 1;
  transform: scale(1.03);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: relative;
  width: 100%;
}
.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 100%;
}
.hero-slide.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45, 125, 45, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--green-700);
  transform: scale(1.2);
  width: 24px;
  border-radius: 5px;
}

/* ===== PRODUCT COLOR SCHEMES ===== */
.text-beetroot { color: #7A0C2E !important; }
.text-abc { color: #B03060 !important; }
.text-moringa { color: #2e6b2e !important; }
.text-banana { color: #8A9A5B !important; }
.text-carrot { color: #ED9121 !important; }
.text-amla { color: #4f7942 !important; }

.bg-beetroot { background: #7A0C2E !important; }
.bg-abc { background: #B03060 !important; }
.bg-moringa { background: #2e6b2e !important; }
.bg-banana { background: #8A9A5B !important; }
.bg-carrot { background: #ED9121 !important; }
.bg-amla { background: #4f7942 !important; }

.badge-rose { background: #B03060 !important; color: white !important; }
.badge-orange { background: #ED9121 !important; color: white !important; }

.card-beetroot:hover { border-color: #7A0C2E; box-shadow: 0 10px 30px rgba(122,12,46,0.15); }
.card-abc:hover { border-color: #B03060; box-shadow: 0 10px 30px rgba(176,48,96,0.15); }
.card-moringa:hover { border-color: #2e6b2e; box-shadow: 0 10px 30px rgba(46,107,46,0.15); }
.card-banana:hover { border-color: #8A9A5B; box-shadow: 0 10px 30px rgba(138,154,91,0.15); }
.card-carrot:hover { border-color: #ED9121; box-shadow: 0 10px 30px rgba(237,145,33,0.15); }
.card-amla:hover { border-color: #4f7942; box-shadow: 0 10px 30px rgba(79,121,66,0.15); }

/* ===== FILTER TABS ===== */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--cream-200);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(45, 125, 45, 0.1);
  transition: var(--transition);
}
.filter-tab:hover {
  background: var(--green-100);
  color: var(--green-900);
}
.filter-tab.active {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1002;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cart-drawer.open {
  visibility: visible;
}
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}
.cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open .cart-drawer-content {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-header h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--green-900);
  font-size: 1.25rem;
}
.cart-drawer-close {
  background: none;
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1;
  transition: var(--transition);
}
.cart-drawer-close:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}
.cart-drawer-items {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-empty-msg {
  text-align: center;
  color: var(--text-light);
  margin-top: 60px;
  font-size: 0.95rem;
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(45, 125, 45, 0.05);
}
.cart-item-img {
  width: 60px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid rgba(45, 125, 45, 0.08);
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.cart-item-weight {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}
.cart-item-price-qty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.cart-item-price {
  font-weight: 800;
  color: var(--green-800);
  font-size: 1rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-200);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.qty-btn {
  background: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-800);
  padding: 0 4px;
}
.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
}
.cart-item-remove {
  background: none;
  color: #e53e3e;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(45, 125, 45, 0.1);
  background: var(--cream-50);
}
.cart-summary {
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.subtotal-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-900);
}
.shipping-row {
  color: var(--text-light);
  font-size: 0.9rem;
}
.btn-checkout-whatsapp {
  width: 100%;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}
.btn-checkout-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .slider-dots { bottom: 20px; }
  .cart-drawer-content { max-width: 100%; }
}

/* ===== LEGAL MODALS ===== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.legal-modal.open {
  opacity: 1;
  visibility: visible;
}
.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.legal-modal-container {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(45, 125, 45, 0.1);
  overflow: hidden;
}
.legal-modal.open .legal-modal-container {
  transform: scale(1);
}
.legal-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-100);
}
.legal-modal-header h3 {
  color: var(--green-900);
  font-size: 1.3rem;
  font-weight: 700;
}
.legal-modal-close {
  font-size: 2rem;
  color: var(--text-light);
  background: none;
  border: none;
  line-height: 1;
  padding: 0 4px;
  transition: var(--transition);
}
.legal-modal-close:hover {
  color: var(--green-700);
  transform: scale(1.1);
}
.legal-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.legal-modal-body p {
  margin-bottom: 16px;
}
.legal-modal-body h4 {
  color: var(--green-800);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.legal-modal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-modal-body li {
  margin-bottom: 8px;
}

/* ===== PROMO CODE BLOCK ===== */
.promo-code-wrap {
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-200);
  margin-bottom: 16px;
}
.promo-input-group {
  display: flex;
  gap: 8px;
}
.promo-input-group input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: var(--transition);
}
.promo-input-group input:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
}
.promo-input-group button {
  background: var(--green-800);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.promo-input-group button:hover {
  background: var(--green-900);
}
.promo-feedback {
  font-size: 0.82rem;
  margin-top: 6px;
  font-weight: 500;
}
.promo-feedback.success {
  color: #2d7d2d;
}
.promo-feedback.error {
  color: #c9302c;
}

/* ===== CHECKOUT DRAWER ===== */
.checkout-drawer {
  position: fixed;
  inset: 0;
  z-index: 10005;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.checkout-drawer.open {
  visibility: visible;
}
.checkout-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.checkout-drawer.open .checkout-drawer-overlay {
  opacity: 1;
}
.checkout-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-drawer.open .checkout-drawer-content {
  transform: translateX(0);
}
.checkout-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-drawer-header h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--green-900);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.checkout-drawer-close {
  background: none;
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}
.checkout-drawer-close:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}
.checkout-drawer-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-800);
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  padding-bottom: 4px;
  margin-top: 8px;
  margin-bottom: 4px;
  font-weight: 700;
}
.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.checkout-form-group input,
.checkout-form-group select,
.checkout-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(45, 125, 45, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--text-dark);
}
.checkout-form-group input:focus,
.checkout-form-group select:focus,
.checkout-form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(58, 158, 58, 0.1);
}
.checkout-form-group select {
  cursor: pointer;
}
.checkout-row-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.shipping-badge-info {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--green-50);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(45, 125, 45, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.checkout-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(45, 125, 45, 0.1);
  background: var(--cream-50);
}
.btn-checkout-confirm {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.btn-checkout-confirm:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
@media (max-width: 480px) {
  .checkout-drawer-content {
    max-width: 100%;
  }
}

/* ===== FEEDBACK MODAL ===== */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 10010;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
}
.feedback-modal.open {
  visibility: visible;
  opacity: 1;
}
.feedback-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.6);
  backdrop-filter: blur(4px);
}
.feedback-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.feedback-modal.open .feedback-modal-content {
  transform: scale(1);
}
.feedback-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(45, 125, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feedback-modal-header h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--green-900);
  font-size: 1.2rem;
  margin: 0;
}
.feedback-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.feedback-modal-close:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}
.feedback-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feedback-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feedback-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.feedback-form-group input,
.feedback-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(45, 125, 45, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--text-dark);
}
.feedback-form-group input:focus,
.feedback-form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(58, 158, 58, 0.1);
}
.star-rating-input {
  display: flex;
  gap: 6px;
  font-size: 1.8rem;
  color: #ddd;
}
.star-rating-input span {
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.star-rating-input span.active,
.star-rating-input span.hover {
  color: #ffb703;
}
.feedback-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(45, 125, 45, 0.1);
  background: var(--cream-50);
}
.btn-submit-review {
  width: 100%;
  background: var(--green-800);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit-review:hover {
  background: var(--green-900);
}
