﻿/* ===== ROOT VARIABLES ===== */
:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --gold: #C9A84C;
  --gold-light: #E2C07A;
  --gold-dark: #A07830;
  --cream: #FDFAF2;
  --cream-dark: #F4EFE0;
  --bg-light: #F8F9FA;
  --text-dark: #1A1A1A;
  --text-mid: #1A1A1A;
  --text-light: #3D3D3D;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.15; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  display: none;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== PRELOADER ===== */

/* ===== CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.6;
}
.cursor.hovered { transform: translate(-50%, -50%) scale(1.8); background: var(--green-deep); }
.cursor-follower.hovered { width: 54px; height: 54px; opacity: 0.3; }
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.3s ease;
}
.nav-logo-text span { display: block; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.15em; color: var(--gold-light); font-family: 'Montserrat', sans-serif; }
.navbar.scrolled .nav-logo-text { color: var(--text-dark); }
.navbar.scrolled .nav-logo-text span { color: var(--gold-dark); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.3s ease;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--gold-dark); }

/* Collections Dropdown */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown::after {
  content: ''; position: absolute;
  left: 0; right: 0; top: 100%;
  height: 14px;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px; background: var(--white);
  border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  padding: 6px 0; z-index: 1001;
  border: 1px solid rgba(0,0,0,0.07);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown li:not(:last-child) a { border-bottom: 1px solid rgba(0,0,0,0.04); }
.nav-dropdown li a {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  font-family: 'Montserrat', sans-serif; font-size: 0.71rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none; position: static;
  transition: background 0.18s ease, color 0.18s ease; letter-spacing: 0.04em;
}
.nav-dropdown li a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0; transition: opacity 0.18s ease; }
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover { background: var(--cream); color: var(--gold-dark); }
.nav-dropdown li a:hover::before { opacity: 1; }
.nav-has-dropdown > a { cursor: pointer; }

/* Cart Icon */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
  text-decoration: none;
}
.navbar.scrolled .cart-icon-btn {
  background: var(--cream);
  border-color: var(--cream-dark);
  color: var(--text-dark);
}
.cart-icon-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  width: 18px; height: 18px;
  background: #e53935;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.cart-count.show { display: flex; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 40px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 9998;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  padding: 80px 32px 40px;
}
.mobile-nav.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s ease;
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a.mn-sub-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a.mn-sub-link:hover { color: var(--gold-light); }
.mobile-nav-close {
  position: fixed;
  top: 16px; right: 20px;
  width: 42px; height: 42px;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.22); }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green-deep);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast .toast-icon { font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(64,145,108,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #0d2b1f 0%, #1B4332 45%, #2D6A4F 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
  animation: float-particle linear infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero-heading {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-heading .highlight { color: var(--gold); display: block; }
.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(201,168,76,0.45); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn-primary .arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(5px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: all 0.4s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.06; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-item::after { content: '✦'; font-size: 0.55rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 100px 0; }
.text-center { text-align: center; }

/* ===== ABOUT STRIP ===== */
.about-strip { background: var(--white); padding: 100px 60px; }
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  border-radius: 24px;
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--cream);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}
.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--green-deep);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-float .num { font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-float .txt { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-top: 4px; }
.about-text .section-label { justify-content: flex-start; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.about-feat-item:hover { background: var(--cream-dark); transform: translateY(-2px); }
.feat-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.feat-info h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feat-info p { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ===== PRODUCTS SECTION ===== */
.products-section { background: var(--bg-light); padding: 100px 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.72);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}
.product-overlay-btn:hover { background: var(--gold-dark); }
.product-info { padding: 20px 22px 22px; }
.product-name { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 6px; }
.product-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
  gap: 10px;
  flex-wrap: wrap;
}
.product-btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-details {
  padding: 9px 16px;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-details:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27,67,50,0.25);
}
.product-price { font-size: 1.4rem; font-weight: 700; color: var(--gold-dark); }
.product-price span { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 400; color: var(--text-light); margin-right: 2px; }
.btn-cart {
  padding: 10px 20px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-cart:hover {
  background: var(--green-mid);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(27,67,50,0.35);
  border-color: rgba(255,255,255,0.15);
}
.btn-cart:hover::before { opacity: 1; }
.btn-cart:active { transform: translateY(0) scale(0.97); box-shadow: none; }
.btn-cart.added {
  background: #2D6A4F;
  border-color: #52B788;
  box-shadow: 0 0 0 3px rgba(82,183,136,0.25);
  transform: scale(1);
}
@keyframes cart-badge-bounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.85); }
  100% { transform: scale(1); }
}
.cart-count.bounce { animation: cart-badge-bounce 0.45s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes fly-to-cart {
  0%   { opacity:1; transform: scale(1) translate(0,0); }
  80%  { opacity:0.6; }
  100% { opacity:0; transform: scale(0.3) translate(var(--tx), var(--ty)); }
}
.cart-fly-dot {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  animation: fly-to-cart 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
}
.product-btn {
  padding: 9px 18px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}
.product-btn:hover { background: var(--green-mid); transform: scale(1.04); }

/* ===== PROCESS SECTION — LIGHTER ===== */
.process-section {
  background: var(--cream);
  padding: 100px 60px;
  overflow: hidden;
  position: relative;
}
.process-section .section-label { justify-content: center; }
.process-section .section-title { text-align: center; color: var(--text-dark); }
.process-section .section-subtitle { text-align: center; color: var(--text-light); margin: 0 auto; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.process-item { text-align: center; position: relative; }
.process-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process-item:hover .process-num {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(201,168,76,0.25);
}
.process-item h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 8px; }
.process-item p { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ===== INGREDIENTS ===== */
.ingredients-section { background: var(--white); padding: 100px 60px; }
.ingredients-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.ingredients-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.ingredient-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: var(--white);
}
.ingredient-item:hover { border-color: var(--gold); background: var(--cream); transform: translateX(6px); }
.ingredient-icon { font-size: 1.5rem; }
.ingredient-info h4 { font-size: 0.92rem; color: var(--text-dark); font-weight: 700; margin-bottom: 2px; }
.ingredient-info p { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--text-light); }
.ingredients-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ingr-card { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 1; }
.ingr-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.ingr-card-img {
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s ease;
}
.ingr-card:hover .ingr-card-img { transform: scale(1.05); }
.ingr-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(27,67,50,0.85), transparent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); padding: 100px 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 7rem;
  color: var(--cream-dark);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
.author-info h4 { font-size: 0.88rem; color: var(--text-dark); font-weight: 700; }
.author-info p { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0d2b1f 0%, var(--green-deep) 50%, var(--green-mid) 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
}
.cta-section .section-title { color: var(--white); margin-bottom: 16px; }
.cta-section .section-label { justify-content: center; }
.cta-section > div > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; position: relative; z-index: 1; }
.cta-input {
  flex: 1;
  padding: 15px 22px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.cta-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-input:focus { border-color: var(--gold); }
.cta-submit {
  padding: 15px 26px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.cta-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
  background: #111;
  padding: 72px 60px 32px;
  color: var(--white);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand .nav-logo-text { color: var(--white); margin-bottom: 14px; display: block; }
.footer-brand p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  max-width: 240px;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.social-btn.fb,
.social-btn.ig,
.social-btn.wa,
.social-btn.yt,
.social-btn.tt { background: var(--gold); border-color: var(--gold); color: var(--white); }
.social-btn:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); opacity: 1; transform: translateY(-3px); }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col .contact-item:hover { color: var(--gold); }
.contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  height: 380px;
  background: linear-gradient(135deg, #0d2b1f 0%, var(--green-deep) 60%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08), transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 12px; }
.breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 0.76rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }
.breadcrumb a { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== CART PAGE ===== */
.cart-page { background: var(--bg-light); min-height: 60vh; padding: 60px; }
.cart-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-items-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-items-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--cream-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: grid;
  grid-template-columns: 1fr 100px 100px 40px;
  gap: 16px;
}
.cart-item {
  padding: 22px 28px;
  border-bottom: 1px solid var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 100px 100px 40px;
  gap: 16px;
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: 10px;
  background: var(--cream);
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;
}
.cart-item-name { font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.cart-item-sub { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; color: var(--text-light); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s ease;
}
.qty-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.qty-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 24px;
  text-align: center;
}
.item-price { font-size: 1.1rem; font-weight: 700; color: var(--gold-dark); font-family: 'Montserrat', sans-serif; }
.item-remove { width: 32px; height: 32px; border-radius: 8px; background: #fee; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; color: #e53935; font-size: 1rem; transition: all 0.2s ease; }
.item-remove:hover { background: #e53935; color: white; }

.cart-empty { padding: 80px 28px; text-align: center; }
.cart-empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.3; }
.cart-empty h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 8px; }
.cart-empty p { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }

/* Order Summary */
.cart-summary { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--cream-dark); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--cream-dark);
}
.summary-row.total span:last-child { color: var(--gold-dark); font-size: 1.2rem; }
.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  margin-top: 22px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  text-decoration: none;
}
.checkout-btn:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.25); }
.continue-btn {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 14px;
  transition: color 0.2s ease;
}
.continue-btn:hover { color: var(--gold-dark); }

/* ===== CHECKOUT PAGE ===== */
.checkout-page { background: var(--bg-light); min-height: 60vh; padding: 60px; }
.checkout-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.checkout-form-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 36px; }
.checkout-form-wrap h2 { font-size: 1.6rem; color: var(--text-dark); margin-bottom: 28px; }
.checkout-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 28px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}
.checkout-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-form-wrap .form-group { margin-bottom: 16px; }
.checkout-form-wrap .form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.checkout-form-wrap .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: all 0.3s ease;
}
.checkout-form-wrap .form-control:focus { border-color: var(--green-light); background: var(--white); box-shadow: 0 0 0 3px rgba(64,145,108,0.1); }

/* Payment Methods */
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.payment-option { display: none; }
.payment-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}
.payment-label:hover { border-color: var(--gold); background: var(--cream); }
.payment-option:checked + .payment-label { border-color: var(--green-light); background: rgba(64,145,108,0.06); }
.payment-logo {
  width: 52px; height: 36px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--cream);
  padding: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.payment-info-text { flex: 1; }
.payment-info-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.payment-info-text span { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; color: var(--text-light); }
.payment-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.payment-option:checked ~ .payment-check { background: var(--green-light); border-color: var(--green-light); }
.payment-option:checked + .payment-label .payment-check { background: var(--green-light); border-color: var(--green-light); }

/* Payment sub-info box */
.payment-detail-box {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 10px;
  display: none;
}
.payment-detail-box.show { display: block; }
.payment-detail-box p { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; }
.payment-detail-box strong { color: var(--text-dark); }
.payment-detail-box input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  background: var(--white);
  outline: none;
  margin-top: 10px;
  transition: border-color 0.3s ease;
}
.payment-detail-box input:focus { border-color: var(--green-light); }

/* Checkout Summary */
.checkout-summary { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; position: sticky; top: 100px; }
.checkout-summary h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--cream-dark); }
.co-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.co-item-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: var(--cream);
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;
}
.co-item-details { flex: 1; }
.co-item-name { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.co-item-qty { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; color: var(--text-light); }
.co-item-price { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--gold-dark); flex-shrink: 0; }

.place-order-btn {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 22px;
}
.place-order-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(27,67,50,0.3); }
.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: var(--text-light);
}

/* Order Success */
.order-success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}
.order-success.show { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.order-success h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 12px; }
.order-success p { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--text-light); line-height: 1.7; max-width: 400px; margin: 0 auto 28px; }

/* ===== FORM STYLES (contact page) ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.cc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cc-text h4 { font-size: 0.88rem; color: var(--text-dark); font-weight: 700; margin-bottom: 3px; }
.cc-text p, .cc-text a { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: var(--text-light); text-decoration: none; transition: color 0.2s ease; }
.cc-text a:hover { color: var(--green-deep); }
.contact-socials { margin-top: 32px; }
.contact-socials h4 { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 14px; }
.social-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.04);
}
.social-link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-link-card .slc-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.slc-name { font-family: 'Montserrat', sans-serif; font-size: 0.73rem; font-weight: 600; color: var(--text-dark); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form-wrap h3 { font-size: 1.7rem; color: var(--text-dark); margin-bottom: 8px; }
.contact-form-wrap > p { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: all 0.3s ease;
}
.form-control:focus { border-color: var(--green-light); background: var(--white); box-shadow: 0 0 0 3px rgba(64,145,108,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  margin-top: 6px;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(27,67,50,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 16px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
  .hero-content { grid-template-columns: 1fr; padding: 120px 32px 60px; gap: 40px; }
  .hero-visual { display: none; }
  .about-inner, .ingredients-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-float { right: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
}
@media (max-width: 768px) {
  .about-strip, .products-section, .process-section, .ingredients-section, .testimonials-section, .cta-section { padding: 72px 24px; }
  footer { padding: 56px 24px 24px; }
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .cta-form { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .ingredients-visual { grid-template-columns: 1fr; }
  .ingr-card:first-child { grid-row: auto; }
  .cart-page, .checkout-page { padding: 32px 20px; }
  .cart-items-header { display: none; }
  .cart-item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 10px; }
  .contact-layout { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .social-links-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .checkout-form-wrap .form-row { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr !important; }
}

/* ===== CHECKOUT NEW CLASSES ===== */
.checkout-left-col { display: flex; flex-direction: column; gap: 0; }

.checkout-section-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 0;
}
.checkout-section-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.co-field { margin-bottom: 14px; }
.co-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.co-field input, .co-field select, .co-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.co-field input:focus, .co-field select:focus, .co-field textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.08);
}
.co-field textarea { resize: vertical; min-height: 80px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Payment card (radio inside label) */
.payment-label { display: block; cursor: pointer; }
.payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s ease;
}
.payment-card:hover { border-color: var(--gold); background: var(--cream); }
.payment-label:has(.payment-option:checked) .payment-card {
  border-color: var(--green-light);
  background: rgba(64,145,108,0.05);
}
.payment-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.payment-info { flex: 1; }
.payment-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.payment-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
}
.payment-card .payment-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.payment-label:has(.payment-option:checked) .payment-card .payment-check {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}

.payment-txn {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  margin-top: 6px;
}
.payment-txn:focus { border-color: var(--green-light); }

.detail-box-icon { font-size: 1.6rem; margin-bottom: 8px; }

/* Checkout right summary panel */
.co-summary-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(0,0,0,0.04);
}
.co-summary-wrap h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
}
.co-items-list { display: flex; flex-direction: column; gap: 14px; }
.summary-divider { height: 1px; background: var(--cream-dark); margin: 14px 0; }
.free-delivery-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: var(--green-mid);
  background: rgba(64,145,108,0.07);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .co-summary-wrap { position: static; }
}
@media (max-width: 768px) {
  .checkout-section-card { padding: 20px; }
  .form-2col { grid-template-columns: 1fr; }
}

/* ===== CUSTOM VIDEO PLAY BUTTON ===== */
.vid-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: all;
}
.vid-play-btn svg { width: 22px; height: 22px; fill: var(--white); margin-left: 4px; }
.vid-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--gold-dark); }
.vid-play-btn.hidden { opacity: 0; pointer-events: none; }

/* ===== REEL SLIDER MOBILE ===== */
@media (max-width: 768px) {
  #reelSlider { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  #reelSlider::-webkit-scrollbar { display: none; }
  .reel-card { flex: 0 0 80vw !important; min-width: 80vw !important; }
}

/* ===== CUSTOM VIDEO PLAYER CONTROLS ===== */
.vid-outer { position: relative; }
.vid-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 10px 12px 12px;
  display: flex; align-items: center; gap: 10px;
  z-index: 4; opacity: 0; transition: opacity 0.3s;
}
.vid-outer:hover .vid-controls,
.vid-outer.paused .vid-controls { opacity: 1; }
@media(max-width:768px) { .vid-controls { opacity: 1; } }
.vid-pp {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; color: var(--white);
  transition: background 0.2s;
}
.vid-pp:hover { background: var(--gold-dark); }
.vid-progress {
  flex: 1; height: 4px; background: rgba(255,255,255,0.3);
  border-radius: 4px; cursor: pointer; position: relative; touch-action: none;
}
.vid-fill { height: 100%; background: var(--gold); border-radius: 4px; width: 0%; pointer-events: none; }
.vid-time {
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem;
  color: rgba(255,255,255,0.85); white-space: nowrap; flex-shrink: 0;
}

/* ===== REVIEWS SLIDER ===== */
.rev-slider-wrap { position: relative; padding: 0 44px; }
.rev-slider { overflow: hidden; }
.rev-track {
  display: flex; gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}
.rev-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
}
@media(max-width:768px) {
  .rev-slider-wrap { padding: 0 0 44px; }
  .rev-card { flex: 0 0 100%; }
}
.rev-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: all 0.2s; font-size: 1.2rem;
  color: var(--text-dark);
}
.rev-nav-btn:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.rev-nav-btn:disabled { opacity: 0.3; cursor: default; }
.rev-prev { left: 0; }
.rev-next { right: 0; }
@media(max-width:768px) {
  .rev-nav-btn { top: auto; bottom: 0; transform: none; width: 36px; height: 36px; font-size: 1rem; }
  .rev-prev { left: calc(50% - 46px); }
  .rev-next { right: calc(50% - 46px); }
}

/* === REVIEWS GRID AUTO-SLIDER (product pages / reviews page) === */
.rs-wrap { position: relative; padding: 0 44px; }
.rs-slider { overflow: hidden; }
.rs-track {
  display: flex; gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}
.rs-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: all 0.2s; font-size: 1.2rem;
  color: var(--text-dark);
}
.rs-nav-btn:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.rs-prev { left: 0; }
.rs-next { right: 0; }
@media(max-width:768px) {
  .rs-wrap { padding: 0 0 48px; }
  .rs-nav-btn { top: auto; bottom: 4px; transform: none; width: 36px; height: 36px; font-size: 1rem; }
  .rs-prev { left: calc(50% - 46px); }
  .rs-next { right: calc(50% - 46px); }
}
