/* ============================================================
   vibrant-overrides.css
   Vibrant, high-contrast, modern UI overrides for all pages.
   Applied AFTER premium-blend.css and style.css.
   ============================================================ */

/* ── Root tokens ─────────────────────────────────────────── */
:root {
  --green-deep  : #131921;
  --green-dark  : #1b212d;
  --green-rich  : #26a69a;
  --green-mid   : #26a69a;
  --green-bright: #26a69a;
  --green-light : #e6f5f3;
  --green-xlight: #f0fbf9;
  --gold        : #c8881a;
  --gold-mid    : #e09b20;
  --gold-light  : #fff3cd;
  --gold-xlight : #fffde7;
  --warm-white  : #fffef8;
  --off-white   : #f9f7f3;
  --text-dark   : #111827;
  --text-body   : #374151;
  --text-light  : #6b7280;
  --text-xlight : #9ca3af;
  --border      : #e6f5f3;
  --shadow-sm   : 0 2px 8px rgba(20,66,31,.1);
  --shadow-md   : 0 6px 24px rgba(20,66,31,.15);
  --shadow-lg   : 0 16px 48px rgba(20,66,31,.2);
  --radius-sm   : 8px;
  --radius-md   : 14px;
  --radius-lg   : 22px;
  --radius-xl   : 32px;
  --transition  : .22s ease;
}

/* ── Base reset for readability ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green-mid); }
img { max-width: 100%; height: auto; display: block; }

/* ── Announcement bar ────────────────────────────────────── */
.ann-bar {
  background: linear-gradient(90deg, #131921 0%, #26a69a 50%, #131921 100%);
  color: #fff;
  font-size: .82rem;
  padding: 9px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: .02em;
}
.ann-bar strong { color: #ffd54f; }
.ann-bar a { color: #e6f5f3; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 254, 248, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid #e6f5f3;
  box-shadow: var(--shadow-sm);
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tagline { font-size: .62rem; color: var(--text-xlight); letter-spacing: .06em; }
.main-nav a {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-mid);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--green-mid); }
.main-nav a:hover::after { width: 100%; }
.dropdown {
  background: #fff;
  border: 1px solid #e6f5f3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 210px;
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: .85rem;
  color: var(--text-body);
  transition: all .15s;
}
.dropdown a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  padding-left: 26px;
}
.cart-btn {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cart-count {
  background: #ff4444;
  color: #fff;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section, .hero {
  background: linear-gradient(135deg, #131921 0%, #1b212d 30%, #26a69a 65%, #1b212d 100%);
  color: #fff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before, .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255,215,80,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(45,138,64,.15) 0%, transparent 50%);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #ffd54f, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .88;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary, .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(20,66,31,.3);
}
.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20,66,31,.4);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .25s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── Trust strip ─────────────────────────────────────────── */
.trust-strip {
  background: linear-gradient(90deg, var(--green-dark), #26a69a, var(--green-dark));
  color: #fff;
  padding: 14px 20px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-strip span, .trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.trust-strip .sep { opacity: .35; }

/* ── Section headings ────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .kicker {
  display: inline-block;
  background: linear-gradient(135deg, #e6f5f3, #f0fbf9);
  color: var(--green-mid);
  border: 1px solid #e6f5f3;
  border-radius: 50px;
  padding: 5px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-head p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e6f5f3;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #e6f5f3;
}
.product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fbf9, #fffbf0);
  position: relative;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,59,31,.75) 100%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  background: #fff;
  color: var(--green-dark);
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .8rem;
}
.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-mid);
  margin-bottom: 6px;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.product-body h3 a:hover { color: var(--green-mid); }
.product-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.stars { color: #f59e0b; letter-spacing: 1px; font-size: .9rem; }
.variant-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.variant-btn {
  padding: 4px 10px;
  border: 1.5px solid #e6f5f3;
  border-radius: 6px;
  background: #fff;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all .15s;
}
.variant-btn.active, .variant-btn:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.price-now {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
}
.price-was {
  font-size: .88rem;
  color: #aaa;
  text-decoration: line-through;
}
.price-save {
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── ATC buttons ─────────────────────────────────────────── */
.atc-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--green-dark);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  min-width: 140px;
}
.qty-minus, .qty-plus {
  width: 38px;
  height: 42px;
  background: var(--green-xlight);
  border: none;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.qty-minus:hover, .qty-plus:hover { background: #e6f5f3; }
.qty-num {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: .9rem;
}
.add-label {
  flex: 1;
  height: 42px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: .85rem;
  cursor: pointer;
  letter-spacing: .06em;
  transition: all .2s;
  padding: 0 14px;
  min-width: 56px;
}
.add-label:hover { filter: brightness(1.12); }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-bestseller { background: linear-gradient(135deg,#1b212d,#26a69a); color: #fff; }
.badge-hot { background: linear-gradient(135deg,#ff6b35,#f59e0b); color: #fff; }
.badge-new { background: linear-gradient(135deg,#1565c0,#42a5f5); color: #fff; }

/* ── Section backgrounds ─────────────────────────────────── */
.section-green-dark {
  background: linear-gradient(135deg, #131921 0%, #1b212d 50%, #1b212d 100%);
  color: #fff;
  padding: 80px 20px;
}
.section-green-light {
  background: linear-gradient(135deg, #e6f5f3 0%, #f0fbf9 50%, #f0fbf9 100%);
  padding: 80px 20px;
}
.section-cream {
  background: linear-gradient(135deg, #fffef8 0%, #fdf8f0 50%, #f9f7f3 100%);
  padding: 80px 20px;
}
.section-gold {
  background: linear-gradient(135deg, #3d2000 0%, #7b4f1a 40%, #c8881a 100%);
  color: #fff;
  padding: 80px 20px;
}
.section-white { background: #fff; padding: 80px 20px; }
.section-white h2, .section-green-light h2, .section-cream h2 { color: var(--green-dark); }
.section-green-dark h2, .section-gold h2 { color: #fff; }
.section-green-dark p, .section-gold p { color: rgba(255,255,255,.85); }

/* ── Grid layouts ────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 28px; }
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 380px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Category pills ──────────────────────────────────────── */
.cat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.cat-pill {
  padding: 9px 22px;
  border: 2px solid #e6f5f3;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-body);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Feature cards ───────────────────────────────────────── */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid #e6f5f3;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #e6f5f3;
}
.feature-card .icon {
  width: 72px;
  height: 72px;
  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.8rem;
  box-shadow: 0 6px 20px rgba(20,66,31,.25);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ── Testimonial cards ───────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #e6f5f3;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #e6f5f3;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-text {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--green-dark); font-size: .9rem; }
.testimonial-city { font-size: .78rem; color: var(--text-xlight); }
.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 4px; }

/* ── Image gallery / lifestyle section ───────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.lifestyle-grid .img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.lifestyle-grid .img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lifestyle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.lifestyle-grid img:hover { transform: scale(1.04); }
@media (max-width: 700px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lifestyle-grid .img-main { grid-row: auto; aspect-ratio: 1; }
}

/* ── Stats / counter strip ───────────────────────────────── */
.stats-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, #131921, #1b212d);
  padding: 48px 20px;
}
.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffd54f;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ── WhatsApp floating button ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 50px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transition: all .25s;
  max-width: 230px;
}
.wa-float:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}
.wa-float-icon { font-size: 1.4rem; flex-shrink: 0; }
@media (max-width: 480px) {
  .wa-float { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; bottom: 20px; right: 16px; }
  .wa-float-label { display: none; }
  .wa-float-icon { font-size: 1.6rem; }
}

/* ── Email capture ───────────────────────────────────────── */
.email-capture {
  background: linear-gradient(135deg, #1b212d, #26a69a);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.email-capture h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  color: #fff;
}
.email-capture p { opacity: .88; margin-bottom: 28px; font-size: 1.05rem; }
.email-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  outline: none;
  font-family: inherit;
}
.email-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #c8881a, #e09b20);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  font-family: inherit;
}
.email-form button:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, #131921 0%, #131921 50%, #131921 100%);
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer-tagline { color: rgba(255,255,255,.65); font-size: .85rem; margin: 10px 0 16px; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 10px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .88rem;
  transition: color .15s;
}
.footer-col a:hover { color: #e6f5f3; }
.footer-col p { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  margin-top: 40px;
}

/* ── Mobile nav ──────────────────────────────────────────── */
.btn-menu {
  display: none;
  background: none;
  border: 2px solid #e6f5f3;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--green-dark);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid #e6f5f3;
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
}
.mobile-nav a {
  padding: 11px 24px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #f0fbf9;
  transition: all .15s;
}
.mobile-nav a:hover { background: var(--green-xlight); color: var(--green-dark); padding-left: 32px; }
.mobile-nav.open { display: flex; }
@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-menu { display: flex; align-items: center; }
}

/* ── Scarcity badge ──────────────────────────────────────── */
.scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff3e0;
  color: #e65100;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #ffcc80;
}

/* ── Social proof strip ──────────────────────────────────── */
.social-proof-strip {
  background: linear-gradient(90deg, #f0fbf9, #e6f5f3, #f0fbf9);
  border-top: 1px solid #e6f5f3;
  border-bottom: 1px solid #e6f5f3;
  padding: 16px 24px;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── Lifestyle image section ─────────────────────────────── */
.img-overlay-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.img-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.img-overlay-card:hover img { transform: scale(1.06); }
.img-overlay-card .img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(13,59,31,.85));
  color: #fff;
  padding: 24px 20px 20px;
}
.img-overlay-card .img-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.img-overlay-card .img-label p { font-size: .82rem; opacity: .85; margin: 0; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item {
  border: 1px solid #e6f5f3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
  transition: all .2s;
}
.faq-item[open] { border-color: #26a69a; box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green-mid);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--text-body); line-height: 1.7; font-size: .92rem; }

/* ── Mobile nav toggle script helper ─────────────────────── */
