/* ══════════════════════════════════════════════
   VALAISFLEURS.CH — Style v1.0
   Livraison fleurs Valais | Vert Alpin Design
   ══════════════════════════════════════════════ */

:root {
  /* Brand Colors – Vert Alpin */
  --green-900: #0b3322;
  --green-800: #144d35;
  --green-700: #1a6644;
  --green-600: #228055;
  --green-100: #e4f4ec;
  --green-50:  #f2faf6;

  --gold:      #c8922a;
  --gold-light:#f5c96e;

  --text-dark:  #0a2918;
  --text-mid:   #235038;
  --text-light: #4a7a60;

  --white: #ffffff;
  --off-white: #f7fcf9;
  --border: #b8d9c8;

  /* Spacing */
  --max-w: 1240px;
  --max-w-narrow: 800px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Motion */
  --fast: 0.18s ease;
  --smooth: 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(11,51,34,.07);
  --shadow-sm: 0 4px 16px rgba(11,51,34,.10);
  --shadow-md: 0 8px 30px rgba(11,51,34,.15);
  --shadow-lg: 0 16px 50px rgba(11,51,34,.20);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed; inset: 0 0 auto 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--smooth);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-content {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--green-700);
  letter-spacing: -0.01em;
}
.brand-link i { color: var(--gold); font-size: 1.4rem; }

.navbar-nav {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: all var(--fast);
}
.nav-link:hover { color: var(--green-700); background: var(--green-50); }

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem;
  transition: background var(--fast), transform var(--fast);
}
.nav-cta:hover { background: var(--green-800); transform: translateY(-1px); }

.navbar-toggle {
  display: none; flex-direction: column;
  background: none; border: none; cursor: pointer; padding: 0.5rem; gap: 5px;
}
.navbar-toggle span {
  width: 24px; height: 2px; background: var(--text-dark);
  transition: var(--fast); border-radius: 2px;
}
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-banner {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(11,51,34,0.92) 0%,
      rgba(11,51,34,0.80) 45%,
      rgba(11,51,34,0.45) 70%,
      rgba(11,51,34,0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5,25,15,0.30) 0%,
      transparent 40%,
      transparent 70%,
      rgba(5,25,15,0.35) 100%
    );
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  max-width: 860px;
  padding: 3.5rem 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(245,201,110,0.4);
  border-radius: var(--r-pill);
  background: rgba(245,201,110,0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-size: inherit;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  opacity: 1;
  max-width: 580px; margin: 0 auto 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 4px 32px rgba(0,0,0,0.85);
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 1rem;
  text-decoration: none;
  transition: all var(--smooth);
  box-shadow: 0 4px 20px rgba(200,146,42,0.4);
}
.btn-hero:hover { background: #b07c1e; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,146,42,0.5); }

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-weight: 500; font-size: 1rem;
  text-decoration: none;
  transition: all var(--smooth);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.hero-trust {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 500; opacity: 0.88;
}
.trust-item i { color: var(--gold-light); }

/* ══════════════════════════════════════════════
   SECTIONS — Common
   ══════════════════════════════════════════════ */
section {
  padding: 5rem 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
section.fade-in { opacity: 1; transform: translateY(0); }
.districts, .faq, .occasions {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 620px; margin: 0 auto;
}

p { color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════ */
.intro { background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.intro-text { display: flex; flex-direction: column; gap: 1rem; }
.intro-text h2 { margin-bottom: 0.5rem; }
.intro-text a { color: var(--green-700); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.intro-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.pillar {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pillar-icon {
  width: 42px; height: 42px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.products { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--smooth), transform var(--smooth);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card.featured { border-color: var(--green-600); box-shadow: var(--shadow-sm); }

.product-image {
  position: relative; overflow: hidden;
  background: var(--green-100);
  aspect-ratio: 1;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
}
.badge-top { background: var(--gold); }
.badge-love { background: #b04060; }

.product-content {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.25rem;
}
.product-content h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.product-description { font-size: 0.88rem; color: var(--text-light); flex: 1; margin-bottom: 1rem; }

.product-footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem;
}
.product-pricing { display: flex; flex-direction: column; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); font-family: var(--font-display); }
.delivery { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; margin-top: 0.2rem; }

.btn { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; border-radius: var(--r-sm); font-weight: 600; transition: all var(--fast); }
.btn-primary {
  background: var(--green-700); color: var(--white);
  padding: 0.6rem 1.1rem; font-size: 0.88rem;
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   OCCASIONS
   ══════════════════════════════════════════════ */
.occasions { background: var(--white); }
.occasions-tags {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem; margin-bottom: 3rem;
}
.occasion-tag {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--off-white); border: 1px solid var(--border);
  padding: 0.75rem 1rem; border-radius: var(--r-md);
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  cursor: default; transition: all var(--fast);
}
.occasion-tag:hover { border-color: var(--green-600); color: var(--green-700); background: var(--green-50); }
.occasion-tag i { color: var(--green-700); font-size: 0.95rem; }

.moment-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/3; background: var(--green-100);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════
   DISTRICTS / DELIVERY
   ══════════════════════════════════════════════ */
.districts { background: var(--off-white); }
.districts-tags {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem; margin-bottom: 3rem;
}
.district-tag {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 0.7rem 1rem; border-radius: var(--r-md);
  font-size: 0.88rem; color: var(--text-mid);
  transition: all var(--fast);
}
.district-tag:hover { border-color: var(--green-600); color: var(--green-700); }
.district-tag i { color: var(--green-600); font-size: 0.75rem; }

.districts-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.districts-image { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════════
   HOW-TO / STEPS
   ══════════════════════════════════════════════ */
.howto { background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; counter-reset: steps;
}
.step {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.75rem 1.5rem;
  counter-increment: steps; position: relative;
}
.step::before {
  content: counter(steps);
  position: absolute; top: -1px; left: -1px;
  width: 32px; height: 32px;
  background: var(--green-700); color: var(--white);
  border-radius: var(--r-sm) 0 var(--r-md) 0;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { color: var(--green-700); font-size: 1.5rem; margin-bottom: 0.75rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-list { max-width: var(--max-w-narrow); margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--fast);
}
.faq-item[open] { border-color: var(--green-600); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer; list-style: none; font-weight: 500;
  color: var(--text-dark); font-size: 0.95rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question i { color: var(--green-700); font-size: 0.8rem; flex-shrink: 0; transition: transform var(--fast); }
.faq-item[open] .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: 0.92rem; }

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  padding: 4rem 0;
  opacity: 1; transform: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.75); max-width: 520px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 1rem; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200,146,42,0.4);
  transition: all var(--smooth);
}
.btn-cta:hover { background: #b07c1e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,146,42,0.5); }

/* ══════════════════════════════════════════════
   FLORISTS SECTION
   ══════════════════════════════════════════════ */
.florists-section {
  padding: 5rem 0 4rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.florists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.florist-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--smooth), transform var(--smooth);
  cursor: default;
}
.florist-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.florist-image {
  width: 100%; aspect-ratio: 3 / 2; overflow: hidden;
  background: var(--green-100);
}
.florist-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease;
}
.florist-card:hover .florist-image img { transform: scale(1.04); }
.florist-info { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.9rem 1.1rem 1rem; }
.florist-icon {
  width: 28px; height: 28px;
  background: var(--green-100); color: var(--green-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-bottom: 0.1rem;
}
.florist-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.florist-location { display: flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; color: var(--text-light); }
.florist-location i { font-size: 0.7rem; }
.florist-card--more {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-100) 0%, #e8f7f0 100%);
  border: 1.5px dashed var(--green-600);
  min-height: 200px; cursor: default;
}
.florist-card--more:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.florist-more-inner { text-align: center; padding: 1.5rem 1rem; }
.florist-more-count { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--green-700); line-height: 1.2; margin-bottom: 0.5rem; font-style: italic; }
.florist-more-inner p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.4; margin-bottom: 0.75rem; }
.florists-note {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-top: 1.75rem; font-size: 0.83rem; color: var(--text-light);
  background: var(--green-50); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.florists-note i { margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--green-900); color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 0 1.5rem 3rem; max-width: var(--max-w); margin: 0 auto;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.footer-logo i { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; max-width: 300px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.footer-links h3, .footer-info h3 {
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-links ul, .footer-info ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li { color: rgba(255,255,255,0.75); }
.footer-links a, .footer-info a { text-decoration: none; font-size: 0.88rem; color: rgba(255,255,255,0.75); transition: color var(--fast); }
.footer-links a:hover, .footer-info a:hover { color: var(--white); }
.footer-info li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-info li span { color: rgba(255,255,255,0.75); }
.footer-info i { width: 14px; text-align: center; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer-bottom p { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════
   DELIVERY TOOLTIP
   ══════════════════════════════════════════════ */
.delivery {
  display: flex; align-items: center; gap: 0.35rem;
}
.delivery-info {
  position: relative;
  display: inline-flex; align-items: center;
  cursor: pointer;
  color: var(--green-700);
  border-radius: 50%;
  transition: color var(--fast);
}
.delivery-info:hover,
.delivery-info:focus { color: var(--green-800); outline: none; }
.delivery-info i { font-size: 0.85rem; }

.delivery-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-900);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 200;
  box-shadow: var(--shadow-md);
}
/* Arrow */
.delivery-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--green-900);
}
/* Prevent tooltip from overflowing left on first card */
.delivery-info:first-child .delivery-tooltip { left: 0; transform: none; }
.delivery-info:first-child .delivery-tooltip::after { left: 14px; transform: none; }

.delivery-info:hover .delivery-tooltip,
.delivery-info:focus .delivery-tooltip,
.delivery-info.active .delivery-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════════════
   ACCESSIBILITY FOCUS
   ══════════════════════════════════════════════ */
.focused {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-text h2 { text-align: center; }
  .intro-text { text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  section { padding: 3.5rem 0; }

  .navbar-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0; visibility: hidden;
    transition: all var(--smooth);
  }
  .navbar-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .navbar-nav { flex-direction: column; gap: 0; padding: 0.75rem; }
  .nav-link { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); display: block; }
  .nav-cta { margin: 0.75rem 0; border-radius: var(--r-sm); justify-content: center; }
  .navbar-toggle { display: flex; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-trust { gap: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .intro-pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-tags { grid-template-columns: 1fr 1fr; }
  .moment-gallery { grid-template-columns: 1fr 1fr; }
  .districts-tags { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .cta-inner { flex-direction: column; text-align: center; }
  .btn-cta { width: 100%; max-width: 320px; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .occasions-tags { grid-template-columns: 1fr; }
  .moment-gallery { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-trust { flex-direction: column; align-items: center; }
  .florists-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .florist-more-count { font-size: 2.25rem; }
  .florist-info h3 { font-size: 0.95rem; }
}

@media (max-width: 900px) {
  .florists-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
}

@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-brand p { max-width: 100%; }
}

/* ══════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ══════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--green-900);
  padding: 0.9rem 1.25rem;
  align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { display: flex; flex-direction: column; overflow: hidden; }
.sticky-cta-text strong { color: var(--white); font-size: 0.95rem; white-space: nowrap; }
.sticky-cta-text span { color: rgba(255,255,255,0.6); font-size: 0.76rem; }
.sticky-cta-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--white);
  padding: 0.72rem 1.35rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background var(--fast), transform var(--fast);
  box-shadow: 0 3px 12px rgba(200,146,42,0.4);
}
.sticky-cta-btn:hover { background: #b07c1e; transform: translateY(-1px); }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ══════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════ */
@media print {
  .navbar, .hero-overlay, .hero-actions, .btn, .cta-section { display: none !important; }
  * { box-shadow: none !important; }
}
