﻿/* ═══════════════════════════════════════════════════════════════
   Lola in Bloom — Design Polish Layer
   Loaded after style.css  |  Cart & PayPal untouched
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Root overrides ─────────────────────────────────────────── */
:root {
  --bg:            #fffdf9;
  --fg:            #18211e;
  --muted:         #687870;
  --primary:       #2a7a5e;
  --primary-dark:  #1a5c42;
  --primary-light: rgba(42,122,94,.08);
  --gold:          #c9974a;
  --radius:        16px;
  --shadow-sm:     0 2px 14px rgba(26,74,53,.07);
  --shadow-md:     0 10px 34px rgba(26,74,53,.11);
  --shadow-lg:     0 22px 56px rgba(26,74,53,.15);
  --transition:    .3s cubic-bezier(.25,.46,.45,.94);
}

/* ── Typography ─────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { letter-spacing: -.3px; }
h1 { font-weight: 700; }
h2 { font-weight: 700; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: rgba(255,253,249,.97);
  border-bottom: 1px solid rgba(42,122,94,.1);
  box-shadow: 0 1px 18px rgba(26,74,53,.06);
}
.logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--primary-dark);
}
.nav a:not(.btn) { font-weight: 500; color: #2a3830; border-radius: 10px; }
.nav a:not(.btn):hover { background: var(--primary-light); color: var(--primary); }
.nav a:not(.btn)::after { background: var(--primary); }

/* ── Mobile nav toggle ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(42,122,94,.3);
  border-radius: 10px;
  padding: .5rem .85rem;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  line-height: 1;
}
.nav-toggle:hover { background: var(--primary-light); border-color: var(--primary); }
.nav-toggle[aria-expanded="true"] { background: var(--primary-light); border-color: var(--primary); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .4rem; }
  .nav {
    display: none;
    flex-direction: column;
    background: rgba(255,253,249,.99);
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: .75rem 1rem 1rem;
    border-bottom: 1px solid rgba(42,122,94,.1);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 36px rgba(26,74,53,.1);
    gap: .2rem;
    z-index: 999;
  }
  .nav.nav-open { display: flex; }
  .nav a:not(.btn) { padding: .75rem 1rem; border-radius: 12px; }
  .nav .btn { margin-top: .4rem; text-align: center; }
}

/* ── Sticky CTA ─────────────────────────────────────────────── */
.sticky-cta {
  background: rgba(255,253,249,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,122,94,.08);
  box-shadow: 0 2px 10px rgba(26,74,53,.05);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  font-family: 'DM Sans', inherit;
  font-weight: 600;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), filter var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, #30896a 0%, #1e6b50 100%);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(42,122,94,.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #38a07e 0%, #2a7a5e 100%);
  box-shadow: 0 8px 26px rgba(42,122,94,.42);
  transform: translateY(-2px);
  filter: none;
}
.btn.outline {
  border: 1.5px solid rgba(42,122,94,.35);
  color: var(--primary);
  background: transparent;
}
.btn.outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #18211e 0%, #2a7a5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 960px) {
  .hero-text h1 { -webkit-text-fill-color: #18211e; }
}
.section-kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .18em;
}

/* ── Product / shop cards ────────────────────────────────────── */
.product, .card {
  border: 1px solid rgba(42,122,94,.09);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}
.product:hover, .card:hover {
  box-shadow: 0 16px 42px rgba(26,74,53,.14);
  border-color: rgba(42,122,94,.22);
  transform: translateY(-7px);
}
.product .price {
  color: var(--primary-dark);
  font-size: 1.45rem;
  font-weight: 700;
}
.product h3 {
  color: #18211e;
  font-weight: 700;
}

/* ── Concierge / feature cards ───────────────────────────────── */
.concierge-entry-card,
.shop-guide {
  border: 1px solid rgba(42,122,94,.1);
  box-shadow: 0 20px 52px rgba(26,74,53,.07);
}
.entry-stat, .delivery-proof-item {
  border: 1px solid rgba(42,122,94,.08);
}
.journey-pill, .shop-guide-link {
  font-weight: 600;
}

/* ── CTA wide ────────────────────────────────────────────────── */
.cta-wide {
  background: linear-gradient(135deg, #f2f9f6 0%, #eaf4ef 100%);
  border: 1px solid rgba(42,122,94,.1);
  border-radius: var(--radius);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq details { border-color: rgba(42,122,94,.1); border-radius: var(--radius); }
.faq details[open] { border-color: var(--primary); }
.faq summary { font-weight: 600; }
.faq summary::after { color: var(--primary); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #f5f2ed;
  border-top: 1px solid rgba(42,122,94,.1);
}
.site-footer h4 { color: var(--primary-dark); }

/* ── Scroll reveal smoother ──────────────────────────────────── */
.reveal { transition: opacity .55s ease, transform .55s ease; }

/* ── Trust badges ────────────────────────────────────────────── */
.trust-badges li { font-size: .92rem; }

/* ── Quote block ─────────────────────────────────────────────── */
.quote { border-left: 3px solid var(--gold); }

/* ── Image border radius ─────────────────────────────────────── */
.delivery-proof-media img { border-radius: 22px; }

/* ── Shop filter tabs ────────────────────────────────────────── */
.filter-tab {
  border-radius: 999px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42,122,94,.3);
  transform: translateY(-1px);
}

/* ── Mobile global cleanup ───────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 1rem; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .cta-wide { padding: 2rem 1.25rem; }
  .site-footer .legal { flex-direction: column; gap: .5rem; font-size: .85rem; }
}
