/* ============================================================
   AGROBIUM.IN – Main Stylesheet
   Theme: Organic / Nature / Earthy
   Palette: Deep Green, Olive, Yellow, Orange, Light Green
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green-deep:    #1a5c38;
  --green-mid:     #2d7d52;
  --green-bright:  #40a96b;
  --green-light:   #d4edda;
  --green-xlight:  #f0faf3;
  --olive:         #6b7c41;
  --olive-light:   #a3b86a;
  --yellow:        #e9c46a;
  --yellow-dark:   #d4a820;
  --orange:        #f4a261;
  --orange-dark:   #e07c3a;
  --orange-deep:   #c25c1a;
  --brown:         #8b5e3c;
  --brown-light:   #c4956a;
  --white:         #ffffff;
  --off-white:     #f8fdf9;
  --text-dark:     #1c2b1e;
  --text-mid:      #3d5140;
  --text-light:    #6b8a6f;
  --border:        #cde8d4;
  --shadow-sm:     0 2px 8px rgba(26,92,56,0.10);
  --shadow-md:     0 6px 24px rgba(26,92,56,0.14);
  --shadow-lg:     0 16px 48px rgba(26,92,56,0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Nunito', 'Segoe UI', sans-serif;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ---------- Utility Classes ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.hidden { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,92,56,0.25);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,92,56,0.30);
}
.btn-secondary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,162,97,0.30);
}
.btn-secondary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(233,196,106,0.35);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-green  { background: var(--green-light); color: var(--green-deep); }
.tag-orange { background: #fde8d8; color: var(--orange-deep); }
.tag-yellow { background: #fdf5d8; color: #8a6a00; }
.tag-olive  { background: #e8eed8; color: var(--olive); }

.section-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 12px;
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 12px auto 0; }

/* ---------- Floating Leaves Animation ---------- */
@keyframes floatLeaf {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
  33%  { transform: translateY(-18px) rotate(8deg) scale(1.05); }
  66%  { transform: translateY(-8px) rotate(-4deg) scale(0.98); }
  100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-24px) rotate(6deg); }
}
.leaf-float { animation: floatLeaf 4s ease-in-out infinite; }
.leaf-float-2 { animation: floatLeaf 5.5s ease-in-out 1s infinite; }
.leaf-float-3 { animation: floatSlow 6s ease-in-out 2s infinite; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.logo-text span { color: var(--orange); }
.logo-tagline {
  font-size: 0.65rem;
  color: var(--olive);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  transition: var(--transition);
}
.nav-search:focus-within {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,125,82,0.12);
}
.nav-search input {
  border: none;
  background: none;
  outline: none;
  width: 140px;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.nav-search input::placeholder { color: var(--text-light); }
.nav-search svg { color: var(--text-light); flex-shrink: 0; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: white;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d3d22 0%, #1a5c38 40%, #2d7d52 75%, #4a9e6b 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(233,196,106,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244,162,97,0.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(64,169,107,0.08) 0%, transparent 60%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.hero-text { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,196,106,0.2);
  border: 1px solid rgba(233,196,106,0.4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .accent-orange { color: var(--orange); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-svg-wrap {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   FEATURED CATEGORIES
   ============================================================ */
.categories-section {
  padding: 80px 0;
  background: var(--off-white);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-card:hover::before { transform: scaleX(1); }
.category-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.category-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.category-count { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
  padding: 80px 0;
  background: linear-gradient(180deg, white 0%, var(--green-xlight) 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}
.product-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
}
.product-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-card-img svg,
.product-card-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.product-card:hover .product-card-img svg,
.product-card:hover .product-card-img img {
  transform: scale(1.08) translateY(-4px);
}
.product-card-wish {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.product-card-wish:hover, .product-card-wish.active { color: #e74c3c; }
.product-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--olive);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.size-chip {
  padding: 3px 10px;
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-deep);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 10px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
}
.product-price-sub { font-size: 0.72rem; color: var(--text-light); font-weight: 400; }
.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-deep);
  color: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.add-to-cart-btn:hover {
  background: var(--orange);
  transform: scale(1.05);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 80px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: rgba(233,196,106,0.08);
  border-radius: 50%;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: rgba(244,162,97,0.06);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text .section-label { color: var(--yellow); }
.why-text .section-title { color: white; }
.why-text .section-subtitle { color: rgba(255,255,255,0.7); }
.why-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.why-feature-title { font-weight: 700; color: white; margin-bottom: 4px; }
.why-feature-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-card-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.why-card-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--green-light);
  line-height: 1;
}
.testimonial-stars { color: var(--yellow-dark); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.92rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   NEWSLETTER / CTA BANNER
   ============================================================ */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a5c38, #2d7d52);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.03'%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");
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-sub { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: var(--yellow); background: rgba(255,255,255,0.18); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.footer-logo-text span { color: var(--orange); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--green-mid); color: white; }

.footer-col-title {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-contact-item svg { margin-top: 2px; flex-shrink: 0; color: var(--green-bright); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}
.shop-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.shop-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { opacity: 0.4; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 48px 0;
}

/* Sidebar Filters */
.shop-filters {
  position: sticky;
  top: 90px;
  height: fit-content;
}
.filter-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.filter-title {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: var(--transition);
}
.filter-option:hover .filter-label { color: var(--green-deep); }
.filter-checkbox {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.filter-option.checked .filter-checkbox {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.filter-option.checked .filter-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
}
.filter-label { font-size: 0.88rem; color: var(--text-mid); }
.filter-count { font-size: 0.75rem; color: var(--text-light); margin-left: auto; }

/* Shop Main */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-result-count { font-size: 0.88rem; color: var(--text-light); }
.shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-sort select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  background: white;
  outline: none;
  cursor: pointer;
}
.shop-view-btns { display: flex; gap: 6px; }
.view-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.view-btn.active, .view-btn:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  background: var(--green-xlight);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 100px 0 60px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-images {
  position: sticky;
  top: 90px;
}
.product-main-img {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  margin-bottom: 14px;
}
.product-main-img svg { max-height: 300px; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 72px; height: 72px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--green-mid); }
.product-thumb svg { max-height: 52px; }

.product-info { }
.product-info-cat {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--olive);
  margin-bottom: 8px;
}
.product-info-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-info-tagline {
  font-size: 0.95rem;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.stars { color: var(--yellow-dark); }
.rating-count { font-size: 0.82rem; color: var(--text-light); }
.product-price-block {
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.price-label { font-size: 0.8rem; color: var(--text-light); width: 80px; }
.price-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
}
.price-note { font-size: 0.78rem; color: var(--text-light); }

.variant-section { margin-bottom: 24px; }
.variant-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.variant-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip {
  padding: 7px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.variant-chip:hover { border-color: var(--green-mid); color: var(--green-deep); }
.variant-chip.active {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: white;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.qty-btn:hover { background: var(--green-xlight); color: var(--green-deep); }
.qty-num {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  border: none;
  outline: none;
  background: none;
}

.detail-actions { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

.product-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.product-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.product-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.product-highlight-item::before {
  content: '✓';
  color: var(--green-bright);
  font-weight: 900;
  margin-top: 1px;
  flex-shrink: 0;
}

.product-tabs {
  margin-top: 48px;
}
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn.active, .tab-btn:hover { color: var(--green-deep); border-bottom-color: var(--green-deep); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 0; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 600; color: var(--text-dark); width: 40%; }
.spec-table td:last-child { color: var(--text-mid); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-section { padding: 100px 0 60px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-header-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  gap: 16px;
  padding: 12px 20px;
  background: var(--green-xlight);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  align-items: center;
  margin-bottom: 12px;
  transition: var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item-product { display: flex; align-items: center; gap: 14px; }
.cart-item-img {
  width: 70px; height: 70px;
  background: var(--green-xlight);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-img svg { max-height: 54px; }
.cart-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.cart-item-variant { font-size: 0.78rem; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--text-dark); }
.cart-item-remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.cart-item-remove:hover { background: #fde8e8; color: #e74c3c; }

.cart-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.cart-summary-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.summary-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.summary-row.total span:last-child { color: var(--green-deep); }
.coupon-form {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-form input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
}
.coupon-form input:focus { border-color: var(--green-mid); }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-cart h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 8px; }
.empty-cart p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green-deep);
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #c0392b; }
.toast.warning { background: var(--orange-dark); }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-illustration { order: -1; }
  .hero-svg-wrap { max-width: 320px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .cart-header-row { display: none; }
  .cart-item { grid-template-columns: 1fr; }
  .product-highlights { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .detail-actions { flex-direction: column; }
  .why-cards { grid-template-columns: 1fr; }
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-mid); }

/* ---------- Selection Color ---------- */
::selection { background: var(--green-light); color: var(--green-deep); }
