/* ====================================================
   Ganapathy Wood Press Oil – Main Stylesheet
   Color Theme: Dark Forest Green (#1a4a1a), Gold (#c9a227), Earthy Brown (#6b3a2a)
   ==================================================== */

/* --- CSS Variables --- */
:root {
  --green-dark: #1a4a1a;
  --green-mid: #2d6a2d;
  --green-light: #4a8c4a;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9e7d19;
  --brown: #6b3a2a;
  --brown-light: #8b5a3a;
  --cream: #fdf6e3;
  --cream-dark: #f5e6c8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-light: #666666;
  --border: #e0d5c0;
  --shadow: rgba(26, 74, 26, 0.12);
  --shadow-gold: rgba(201, 162, 39, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 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: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gold text utility --- */
.gold-text { color: var(--gold); }

/* ====================================================
   ANNOUNCEMENT BAR
   ==================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-dark));
  color: var(--gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  overflow: hidden;
}
.announcement-inner {
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* ====================================================
   HEADER / NAVBAR
   ==================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 246, 227, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px var(--shadow);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px var(--shadow-gold);
  transition: var(--transition);
}
.logo-img:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--shadow-gold); }

.nav-desktop { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 8px 18px;
  border-radius: 25px;
  color: var(--green-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-dark);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px var(--shadow);
}
.icon-btn:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-2px); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--brown);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

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

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
  gap: 4px;
}
.nav-mobile .nav-link {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1rem;
}
.nav-mobile.open { display: flex; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(26, 74, 26, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(253, 246, 227, 0.8);
  color: var(--cream);
}
.btn-outline:hover {
  background: rgba(253, 246, 227, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-add-cart {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 3px 10px var(--shadow);
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 10, 0.78) 0%,
    rgba(26, 74, 26, 0.65) 50%,
    rgba(10, 30, 10, 0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding-top: 40px;
  padding-bottom: 80px;
  animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  color: rgba(253, 246, 227, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(253, 246, 227, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(201, 162, 39, 0.4); }

/* ====================================================
   SECTION HEADER (Reusable)
   ==================================================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ====================================================
   FEATURES SECTION
   ==================================================== */
.features-section {
  padding: 90px 0;
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-gold);
  border-color: var(--gold);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
  box-shadow: 0 4px 15px var(--shadow);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ====================================================
   PRODUCTS SECTION
   ==================================================== */
.products-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f3e8 0%, var(--cream) 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--shadow-gold);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--cream-dark);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-dark);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 2;
}
.product-badge.popular { background: var(--brown); }
.product-badge.new { background: var(--gold-dark); color: white; }
.product-badge.pooja { background: linear-gradient(135deg, #7b4f2e, #c9a227); color: white; }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 74, 26, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add-btn {
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  transform: translateY(10px);
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.quick-add-btn:hover { background: white; }

.product-info { padding: 20px 20px 24px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.product-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.variant-btn {
  padding: 5px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.variant-btn:hover, .variant-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}
.price-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

/* View All Card */
.view-all-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
  cursor: pointer;
}
.view-all-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.view-all-link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--gold-light);
  text-decoration: none;
}
.view-all-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.view-all-inner i {
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}
.view-all-card:hover .view-all-inner i {
  background: var(--gold);
  color: var(--green-dark);
}
.view-all-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ====================================================
   BENEFITS BANNER
   ==================================================== */
.benefits-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 32px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
}
.benefit-item i {
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 32px;
}
.benefit-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.benefit-item span { font-size: 0.8rem; color: rgba(253, 246, 227, 0.75); }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-gold);
  border-color: var(--gold);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--gold-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.reviewer strong { display: block; color: var(--green-dark); font-size: 0.9rem; }
.reviewer span { color: var(--text-light); font-size: 0.8rem; }

/* ====================================================
   CTA SECTION
   ==================================================== */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 50%, var(--brown) 100%);
  text-align: center;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 14px;
}
.cta-content p {
  color: rgba(253, 246, 227, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { }
.footer-logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.contact-list li {
  display: flex;
  gap: 10px;
  color: rgba(253, 246, 227, 0.75);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-list li i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 14px;
}
.contact-list a { color: rgba(253, 246, 227, 0.75); }
.contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(253, 246, 227, 0.5);
  font-size: 0.82rem;
}

/* ====================================================
   CART TOAST
   ==================================================== */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green-dark);
  color: var(--gold-light);
  padding: 14px 24px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}
.cart-toast.show { transform: translateX(0); }
.cart-toast i { color: var(--gold); font-size: 1.1rem; }

/* ====================================================
   PAGE HERO (Inner Pages)
   ==================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::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='%23c9a227' fill-opacity='0.06'%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");
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 10px;
  position: relative;
}
.page-hero p {
  color: rgba(253, 246, 227, 0.8);
  font-size: 1rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(253, 246, 227, 0.6);
  font-size: 0.82rem;
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(253, 246, 227, 0.4); }

/* ====================================================
   POLICY PAGES
   ==================================================== */
.policy-section {
  padding: 70px 0;
  background: var(--cream);
}
.policy-container {
  max-width: 860px;
  margin: 0 auto;
}
.policy-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 30px var(--shadow);
}
.policy-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.policy-card h2:first-child { margin-top: 0; }
.policy-card p, .policy-card li {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-card ul, .policy-card ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.policy-card ul li { list-style: disc; }
.policy-card ol li { list-style: decimal; }
.policy-card strong { color: var(--green-dark); }
.policy-last-updated {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-section { padding: 80px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--cream);
  text-align: center;
}
.about-img-badge strong { display: block; font-size: 2rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.about-img-badge span { font-size: 0.8rem; color: rgba(253,246,227,0.8); }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-section { padding: 80px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--cream);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}
.contact-info-item strong { display: block; margin-bottom: 4px; color: var(--gold-light); font-size: 0.9rem; }
.contact-info-item span, .contact-info-item a {
  color: rgba(253, 246, 227, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--gold-light); }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26, 74, 26, 0.1);
  background: white;
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

/* ====================================================
   CART PAGE
   ==================================================== */
.cart-section { padding: 70px 0; background: var(--cream); }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}
.cart-items-box {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}
.cart-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.cart-item:hover { background: var(--cream); }
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.cart-item-price { color: var(--text-light); font-size: 0.88rem; }
.cart-qty {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  font-size: 1rem; font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-dark); color: var(--gold); }
.qty-value { min-width: 24px; text-align: center; font-weight: 600; }
.cart-item-total { font-weight: 700; color: var(--green-dark); font-size: 1rem; min-width: 70px; text-align: right; }
.cart-remove { color: #c0392b; font-size: 1rem; padding: 4px; transition: var(--transition); }
.cart-remove:hover { color: #922b21; transform: scale(1.1); }
.cart-empty { text-align: center; padding: 60px 28px; }
.cart-empty i { font-size: 3rem; color: var(--border); margin-bottom: 14px; }
.cart-empty p { color: var(--text-light); margin-bottom: 20px; }

.cart-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--text-mid);
  margin-bottom: 12px;
}
.summary-row.total {
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-dark);
  border-top: 1px solid var(--border);
  padding-top: 12px; margin-top: 4px;
}
.summary-row .free { color: #27ae60; font-weight: 600; }
.checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
}

/* ====================================================
   PRODUCTS PAGE
   ==================================================== */
.products-page { padding: 60px 0; background: var(--cream); }
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 22px;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap img { height: 320px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .policy-card { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
}
