:root {
  --cream: #fdf8f0;
  --warm-brown: #5c3d1e;
  --olive: #5a7a3a;
  --olive-light: #7a9f55;
  --gold: #c9963b;
  --text: #2c1a0e;
  --text-light: #6b4c2a;
  --shadow: 0 4px 24px rgba(92,61,30,0.10);
  --radius: 18px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: linear-gradient(90deg, var(--olive) 0%, #3d5e22 100%);
  color: #fff; text-align: center; padding: 9px 5vw;
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0.3px;
  position: relative; overflow: hidden;
}
.announce-bar span {
  display: none;
  animation: fadeUp .5s ease both;
}
.announce-bar span.active { display: inline; }
.announce-dot {
  display: flex; justify-content: center; gap: 6px; margin-top: 5px;
}
.announce-dot i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); display: inline-block; cursor: pointer; transition: background .2s;
}
.announce-dot i.active { background: #fff; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,248,240,0.97); backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(90,122,58,0.13);
  padding: 0 3vw;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 12px;
  height: 75px; box-shadow: 0 2px 12px rgba(92,61,30,0.07);
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
}
nav.transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.nav-logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; }
.nav-brand-name {
  font-family: 'Playfair Display', serif; font-size: 0.65rem; font-weight: 700;
  color: var(--warm-brown); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px;
}
.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(90,122,58,0.07); border: 1.5px solid rgba(90,122,58,0.15);
  border-radius: 22px; padding: 7px 14px; cursor: text; transition: border-color .2s;
}
.nav-search:focus-within { border-color: var(--olive); }
.nav-search span { color: var(--text-light); font-size: 0.85rem; flex-shrink: 0; }
.nav-search input {
  border: none; background: none; font-family: 'Nunito', sans-serif;
  font-size: 0.83rem; color: var(--text); outline: none; width: 130px;
}
.nav-search input::placeholder { color: var(--text-light); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 0.88rem;
  color: var(--text-light); transition: color .2s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--olive); border-radius: 2px; transition: width .25s;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-decoration: none;
  white-space: nowrap; display: flex; align-items: center; gap: 4px; transition: color .2s;
}
.nav-phone:hover { color: var(--olive); }
.nav-wa {
  background: #25d366; color: #fff; padding: 8px 16px; border-radius: 25px;
  font-weight: 700; font-size: 0.83rem; text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3); transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(37,211,102,0.4); }
.nav-cart-btn {
  position: relative; background: none; border: 1.5px solid rgba(90,122,58,0.22);
  border-radius: 50%; width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: border-color .2s;
}
.nav-cart-btn:hover { border-color: var(--olive); }
.nav-cart-btn .cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e53935; color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: 0.65rem; font-weight: 700;
  display: none; align-items: center; justify-content: center; border: 2px solid #fff;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2.5px; background: var(--warm-brown); border-radius: 2px; }

/* Nav transparent state */
nav.transparent .nav-links a { color: rgba(255,255,255,0.92); }
nav.transparent .nav-links a:hover { color: #fff; }
nav.transparent .nav-links a::after { background: #fff; }
nav.transparent .nav-brand-name { color: #fff; }
nav.transparent .nav-phone { color: rgba(255,255,255,0.88); }
nav.transparent .nav-phone:hover { color: #fff; }
nav.transparent .nav-search { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.30); }
nav.transparent .nav-search span { color: rgba(255,255,255,0.70); }
nav.transparent .nav-search input { color: #fff; }
nav.transparent .nav-search input::placeholder { color: rgba(255,255,255,0.50); }
nav.transparent .nav-cart-btn { border-color: rgba(255,255,255,0.35); color: #fff; }
nav.transparent .hamburger span { background: #fff; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; top: 75px; left: 0; right: 0; z-index: 99;
  background: var(--cream); padding: 24px 6vw 28px;
  border-bottom: 1px solid rgba(90,122,58,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-nav ul li a { font-weight: 700; font-size: 1.05rem; color: var(--text-light); text-decoration: none; }
.mobile-nav ul li a:hover { color: var(--olive); }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  margin-top: -75px;
  min-height: 100vh;
  background-image: url('../images/vitatiny-hero.png');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,7,3,0.78) 0%, rgba(15,7,3,0.55) 45%, rgba(0,0,0,0.10) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 580px; text-align: left;
  padding: 130px 5vw 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.28);
  padding: 6px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 700;
  color: #fde89a; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.18;
  color: #fff; margin-bottom: 20px;
}
.hero h1 em { color: #fde89a; font-style: italic; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  color: #fff; padding: 14px 32px; border-radius: 35px; font-weight: 700; font-size: 1rem;
  text-decoration: none; box-shadow: 0 5px 20px rgba(90,122,58,0.45); transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(90,122,58,0.55); }
.btn-wa {
  background: #25d366; color: #fff; padding: 14px 30px; border-radius: 35px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 5px 20px rgba(37,211,102,0.3);
  display: flex; align-items: center; gap: 8px; transition: transform .2s;
}
.btn-wa:hover { transform: translateY(-3px); }
.hero-stats { display: flex; gap: 32px; justify-content: flex-start; margin-top: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #fde89a; font-weight: 700; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.70); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTION COMMONS ── */
section { padding: 80px 5vw; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: rgba(90,122,58,0.10); color: var(--olive);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
}
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--warm-brown); line-height: 1.2; }
.section-header p { color: var(--text-light); font-size: 1.02rem; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1.5px solid rgba(90,122,58,0.08); transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(92,61,30,0.13); }
.why-icon { font-size: 2.6rem; margin-bottom: 14px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--warm-brown); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ── PRODUCT CARDS ── */
.products-bg { background: linear-gradient(180deg, var(--cream) 0%, #f5f0e8 100%); }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1.5px solid rgba(90,122,58,0.08);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-7px); box-shadow: 0 14px 40px rgba(92,61,30,0.15); }
.prod-img-wrap {
  height: 240px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fdf0e0, #f0ede8);
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block; transition: transform .4s ease;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.07); }
.prod-img-wrap .prod-emoji {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 5rem;
}
.prod-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--olive); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 4px 11px;
  border-radius: 20px; letter-spacing: 0.5px; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.prod-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--warm-brown); margin-bottom: 6px; line-height: 1.3; }
.prod-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.prod-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.weight-select {
  flex: 1; min-width: 0;
  background: var(--cream); border: 1.5px solid rgba(90,122,58,0.28);
  border-radius: 10px; padding: 8px 10px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.83rem;
  color: var(--olive); cursor: pointer; transition: border-color .2s;
}
.weight-select:focus { outline: none; border-color: var(--olive); }
.add-to-cart-btn {
  background: var(--olive); color: #fff; border: none; padding: 9px 14px;
  border-radius: 22px; font-size: 0.82rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 5px; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: #3d5e22; transform: translateY(-1px); }
.add-to-cart-btn.added { background: #2d7a3a; }

/* ── CART ── */
.cart-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--olive); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(90,122,58,0.45);
  transition: transform .2s, box-shadow .2s;
}
.cart-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(90,122,58,0.55); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e53935; color: #fff; border-radius: 50%;
  width: 22px; height: 22px; font-size: 0.72rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1001; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: #fff; z-index: 1002; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px; border-bottom: 1.5px solid rgba(90,122,58,0.12);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream); flex-shrink: 0;
}
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--warm-brown); }
.cart-header-right { display: flex; align-items: center; gap: 12px; }
.cart-count-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.cart-close {
  background: none; border: none; cursor: pointer; font-size: 1.3rem;
  color: var(--text-light); width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.cart-close:hover { background: rgba(0,0,0,0.07); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; color: var(--text-light); text-align: center; padding: 40px;
}
.cart-empty .cart-empty-icon { font-size: 3.5rem; margin-bottom: 14px; }
.cart-empty p { font-size: 0.95rem; margin-bottom: 4px; font-weight: 600; }
.cart-empty span { font-size: 0.82rem; opacity: 0.6; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(90,122,58,0.08);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 58px; height: 70px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg, #fdf0e0, #f0ede8);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.88rem; color: var(--warm-brown); line-height: 1.3; margin-bottom: 2px; }
.cart-item-weight { font-size: 0.76rem; color: var(--text-light); margin-bottom: 8px; }
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(90,122,58,0.25); border-radius: 8px; overflow: hidden;
}
.qty-stepper button {
  background: none; border: none; width: 28px; height: 28px; cursor: pointer;
  font-size: 1.1rem; font-weight: 700; color: var(--olive);
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.qty-stepper button:hover { background: rgba(90,122,58,0.08); }
.qty-stepper span { font-size: 0.88rem; font-weight: 700; color: var(--text); min-width: 28px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.cart-item-subtotal { font-weight: 700; font-size: 0.95rem; color: var(--warm-brown); }
.cart-remove {
  background: none; border: none; cursor: pointer; color: #bbb; font-size: 0.85rem;
  padding: 3px 5px; border-radius: 4px; transition: color .15s; line-height: 1;
}
.cart-remove:hover { color: #e53935; }
.cart-footer {
  padding: 20px 24px; border-top: 1.5px solid rgba(90,122,58,0.12);
  background: var(--cream); flex-shrink: 0;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px;
}
.cart-total-label { font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--warm-brown); font-weight: 700; }
.cart-order-btn {
  width: 100%; background: #25d366; color: #fff; border: none;
  padding: 15px; border-radius: 30px; font-weight: 700; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: background .2s, transform .2s;
  margin-bottom: 10px;
}
.cart-order-btn:hover { background: #1da851; transform: translateY(-2px); }
.cart-order-btn:disabled { background: #aaa; box-shadow: none; transform: none; cursor: not-allowed; }
.cart-clear {
  text-align: center; font-size: 0.8rem; color: var(--text-light);
  cursor: pointer; background: none; border: none; width: 100%;
  text-decoration: underline; padding: 0;
}
.cart-clear:hover { color: #e53935; }
@keyframes cartBump { 0%,100%{transform:scale(1)} 40%{transform:scale(1.25)} }
.cart-fab.bump { animation: cartBump .35s ease; }

/* ── TESTIMONIALS ── */
.testi-section { background: linear-gradient(135deg, #2c1a0e 0%, #5c3d1e 100%); color: #fff; }
.testi-section .section-header h2 { color: #fff; }
.testi-section .section-tag { background: rgba(255,255,255,0.15); color: #fde89a; }
.testi-section .section-header p { color: rgba(255,255,255,0.7); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px);
}
.testi-stars { color: #ffd700; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.93rem; line-height: 1.65; color: rgba(255,255,255,0.88); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,var(--olive),var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--olive) 0%, #3d5e22 100%); color: #fff; text-align: center; padding: 70px 5vw; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3.5vw,2.5rem); margin-bottom: 14px; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--olive); padding: 13px 30px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: .2s; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-wa-light { background: #25d366; color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: .2s; }
.btn-wa-light:hover { background: #1da851; transform: translateY(-2px); }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, #f5f0e8, var(--cream));
  padding: 70px 5vw 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img-box { border-radius: 24px; overflow: hidden; box-shadow: 0 12px 48px rgba(92,61,30,0.18); }
.about-img-box img { width: 100%; display: block; }
.about-content h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--warm-brown); margin-bottom: 16px; }
.about-content p { color: var(--text-light); line-height: 1.78; margin-bottom: 18px; font-size: 0.97rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { background: rgba(90,122,58,0.10); border: 1.5px solid rgba(90,122,58,0.22); color: var(--olive); padding: 7px 18px; border-radius: 25px; font-size: 0.83rem; font-weight: 700; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; padding: 50px 5vw; }
.val-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.val-card .val-icon { font-size: 2.4rem; margin-bottom: 12px; }
.val-card h3 { font-family: 'Playfair Display', serif; color: var(--warm-brown); margin-bottom: 8px; }
.val-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 20px 5vw;
  border-top: 1px solid rgba(90,122,58,0.10);
  border-bottom: 1px solid rgba(90,122,58,0.10);
}
.trust-item { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; padding: 0 16px; }
.trust-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-item-text { font-weight: 700; font-size: 0.85rem; color: var(--text-light); }
.trust-divider { width: 1px; height: 36px; background: rgba(90,122,58,0.15); flex-shrink: 0; }

/* ── BEST SELLERS CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.feat-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1.5px solid rgba(90,122,58,0.07);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.feat-card:hover { transform: translateY(-7px); box-shadow: 0 18px 48px rgba(92,61,30,0.15); }
.feat-img-wrap {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fdf0e0, #f0ede8);
}
.feat-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s; }
.feat-card:hover .feat-img-wrap img { transform: scale(1.05); }
.feat-body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.feat-name { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--warm-brown); font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.feat-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.feat-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 18px; }
.feat-count { color: var(--text-light); font-size: 0.75rem; }
.feat-shop-btn {
  display: inline-block; background: var(--olive); color: #fff;
  padding: 11px 28px; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; text-align: center;
  transition: background .2s, transform .2s; align-self: flex-start;
}
.feat-shop-btn:hover { background: #3d5e22; transform: translateY(-2px); }

/* ── PRODUCTS FULL PAGE ── */
.products-page-hero { text-align: center; padding: 60px 5vw 20px; background: linear-gradient(135deg, #f5f0e8, var(--cream)); }
.products-page-hero h1 { font-family:'Playfair Display',serif; font-size: 2.5rem; color: var(--warm-brown); }
.products-page-hero p { color: var(--text-light); margin-top: 10px; }

/* ── CATEGORY FILTER TABS ── */
.cat-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 24px 5vw 0; justify-content: center;
}
.cat-tab {
  background: #fff; border: 1.5px solid rgba(90,122,58,0.25);
  color: var(--text-light); padding: 9px 22px; border-radius: 30px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.cat-tab:hover { border-color: var(--olive); color: var(--olive); }
.cat-tab.active {
  background: var(--olive); border-color: var(--olive);
  color: #fff; box-shadow: 0 4px 14px rgba(90,122,58,0.30);
}

/* ── CONTACT PAGE ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 70px 5vw; align-items: start; }
.contact-info h1 { font-family:'Playfair Display',serif; font-size: 2.3rem; color: var(--warm-brown); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 16px; display: flex; align-items: center; gap: 18px; }
.contact-icon { font-size: 1.8rem; background: rgba(90,122,58,0.10); width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h3 { font-weight: 700; color: var(--warm-brown); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.93rem; color: var(--text-light); text-decoration: none; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form h2 { font-family:'Playfair Display',serif; font-size: 1.6rem; color: var(--warm-brown); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-light); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(90,122,58,0.20);
  border-radius: 10px; font-family: 'Nunito', sans-serif;
  font-size: 0.93rem; color: var(--text); background: var(--cream); transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--olive); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; background: var(--olive); color: #fff; border: none; padding: 14px; border-radius: 30px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .2s, transform .2s; }
.btn-submit:hover { background: #3d5e22; transform: translateY(-2px); }
.wa-primary-btn {
  width: 100%; background: #25d366; color: #fff; border: none; padding: 16px; border-radius: 30px;
  font-weight: 700; font-size: 1.05rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 5px 20px rgba(37,211,102,0.35); margin-bottom: 14px; text-decoration: none; transition: transform .2s;
}
.wa-primary-btn:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
footer { background: var(--warm-brown); color: #fff; padding: 50px 5vw 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo { height: 44px; width: 44px; object-fit: cover; background: #fff; border-radius: 50%; padding: 3px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.75; line-height: 1.7; }
.footer-col h4 { font-weight: 700; margin-bottom: 14px; font-size: 0.92rem; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; opacity: 0.65; }
.fssai { background: rgba(255,255,255,0.10); padding: 4px 12px; border-radius: 8px; font-size: 0.8rem; }

/* ── MILESTONES ── */
.milestones {
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2e12 50%, #3d5e22 100%);
  padding: 70px 5vw; text-align: center;
}
.milestones-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: rgba(255,255,255,0.55); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 48px;
}
.milestones-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; max-width: 900px; margin: 0 auto 52px;
}
.milestone-item { position: relative; }
.milestone-item + .milestone-item::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.milestone-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700;
  color: #fde89a; line-height: 1; margin-bottom: 8px;
}
.milestone-label {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.milestone-sub { font-size: 0.75rem; color: rgba(255,255,255,0.38); margin-top: 4px; }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.80); padding: 8px 20px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(6px);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { grid-template-columns: 1fr auto 1fr; padding: 0 4vw; }
  .nav-left { gap: 0; }
  .nav-search { display: none; }
  .nav-left .nav-links { display: none; }
  .nav-right .nav-links { display: none; }
  .nav-right .nav-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .hero-content { text-align: center; max-width: 100%; padding: 50px 6vw; }
  .hero-btns { justify-content: center; }
  .hero-stats { gap: 20px; justify-content: center; margin-top: 32px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .about-hero { grid-template-columns: 1fr; }
  .about-img-box { display: none; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .milestone-item + .milestone-item::before { display: none; }
  .cart-drawer { width: 100vw; }
  .cart-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
  .cat-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .trust-strip { flex-direction: column; gap: 14px; padding: 20px 5vw; }
  .trust-divider { width: 60px; height: 1px; }
  .feat-grid { grid-template-columns: 1fr; }
  .nav-wa { padding: 7px 12px; font-size: 0.78rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-content > * { animation: fadeUp .65s ease both; }
.hero-content > *:nth-child(2) { animation-delay:.1s; }
.hero-content > *:nth-child(3) { animation-delay:.2s; }
.hero-content > *:nth-child(4) { animation-delay:.3s; }
.hero-content > *:nth-child(5) { animation-delay:.4s; }
