/* ============================================================
   SLP EXPRESS — DEFERRED CSS
   Loads asynchronously — does NOT block first paint.
   Contains all below-the-fold styles:
   cards · components · footer · sections · testimonials

   Load with the preload trick (no render-blocking):
     <link rel="preload" href="css/slp-deferred.css" as="style"
           onload="this.onload=null;this.rel='stylesheet'">
     <noscript><link rel="stylesheet" href="css/slp-deferred.css"></noscript>
   ============================================================ */


/* ============================================================
   04. CARDS — .card, .card-dark, .grid-3, .doc-card, .country-card
   ============================================================ */
/* Fixed 3 columns on desktop — auto-fit left the 3rd card alone on row 2 (looked off-center). */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}
.grid-3 > figure,
.grid-3 > .card {
  min-width: 0;
}
.grid-3 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.card {
  background: var(--white);
  padding: 45px;
  border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 18px 50px rgba(74, 0, 114, 0.10); }
.card i, .card .icon { font-size: 45px; color: var(--primary); display: block; margin-bottom: 25px; line-height: 1; }
.card h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 15px; line-height: 1.25; }
.card p { font-size: 15px; color: var(--muted-2); line-height: 1.85; }

.card-dark { background: var(--primary); color: var(--white); border: 1px solid rgba(255,255,255,0.05); border-top: 4px solid var(--accent); }
.card-dark h3, .card-dark .icon, .card-dark i { color: var(--accent); }
.card-dark p { color: rgba(255, 255, 255, 0.85); }
.card-dark:hover { border-color: var(--accent); }

.doc-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.doc-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.doc-card .doc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74, 0, 114, 0.08); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.doc-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 14px; font-weight: 800; line-height: 1.3; }
.doc-card ul { padding-left: 22px; color: var(--muted-2); line-height: 1.85; }
.doc-card li { margin-bottom: 6px; }

.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.country-card {
  display: block; background: var(--white);
  border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center; text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.country-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.country-card .flag { font-size: 40px; display: block; margin-bottom: 10px; line-height: 1; }
.country-card .cname { font-size: 18px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 6px; }
.country-card .days { font-size: 13px; color: var(--muted); display: block; margin-bottom: 16px; }
.country-card .view-btn {
  display: inline-block; background: var(--accent); color: var(--primary);
  font-weight: 600; font-size: 13px; padding: 8px 20px; border-radius: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.country-card:hover .view-btn { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

@media (max-width: 900px) {
  .grid-3, .doc-grid-2 { grid-template-columns: 1fr; }
  .card { padding: 32px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}


/* ============================================================
   05. COMPONENTS — steps, FAQ, rates box, CTA strips, pickup areas
   ============================================================ */
.steps-ol { max-width: 920px; margin: 0 auto; counter-reset: sstep; list-style: none; padding: 0; }
.steps-ol li { position: relative; padding-left: 68px; margin-bottom: 28px; min-height: 52px; counter-increment: sstep; }
.steps-ol li::before {
  content: counter(sstep);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(74, 0, 114, 0.25);
}
.steps-ol li h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.steps-ol li p { color: var(--muted-2); font-size: 15px; line-height: 1.8; }

.rates-quote-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white); padding: 40px 28px;
  border-radius: var(--r-lg); border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md); text-align: center;
}
.rates-quote-box h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.rate-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid var(--hairline); border-top-color: var(--primary);
  margin: 20px auto; animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--hairline);
  font-size: 15px; color: var(--muted-2); text-align: left;
}
.rate-row:last-of-type { border-bottom: 0; }
.rate-row strong { color: var(--primary); font-weight: 800; }
.rate-row .row-carrier { font-weight: 600; color: var(--text); }
.rate-row .row-note { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; }
.rate-amount { font-size: 38px; font-weight: 800; color: var(--primary); line-height: 1; }
.rate-amount .unit { font-size: 14px; color: var(--muted); font-weight: 600; }
.rate-meta { font-size: 12px; color: var(--muted); margin-top: 10px; }
[data-rate-state="success"] .rate-spinner,
[data-rate-state="fallback"] .rate-spinner { display: none; }
[data-rate-state="loading"] .rate-rows,
[data-rate-state="loading"] .rate-cta { display: none; }

.faq-wrap { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(74,0,114,0.25); box-shadow: 0 6px 24px rgba(74,0,114,0.08); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px;
  font-weight: 700; color: var(--primary); font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--primary); transition: transform 0.25s ease; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-a { padding: 0 22px 18px; color: #555; font-size: 15px; line-height: 1.8; }

.section-cta-quick {
  padding: 56px 0;
  background: rgba(106, 0, 153, 0.06);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.section-cta-quick h3 { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }

.section-cta-gold-strip {
  padding: 48px 0;
  background: var(--grad-gold-strip);
  border-top: 1px solid rgba(74,0,114,0.08); border-bottom: 1px solid rgba(74,0,114,0.08);
  text-align: center;
}
.section-cta-gold-strip h3 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.3; }
.section-cta-gold-strip p { font-size: 16px; color: var(--muted-2); max-width: 720px; margin: 0 auto 18px; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.pickup-areas { column-count: 3; column-gap: 36px; max-width: 900px; margin: 0 auto; list-style: none; padding: 0; }
.pickup-areas li {
  break-inside: avoid; padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 10px;
}
.pickup-areas li::before { content: '📍'; font-size: 14px; flex-shrink: 0; }

@media (max-width: 900px) { .pickup-areas { column-count: 2; } }
@media (max-width: 480px) { .pickup-areas { column-count: 1; } }


/* ============================================================
   06. FOOTER — .footer, .footer-cols, .wa-float
   ============================================================ */
.footer { background: #111; color: #aaa; padding: 60px 0 20px; font-size: 13px; line-height: 1.8; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; text-align: left; margin-bottom: 40px; }
.footer-cols h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: #aaa; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; color: #666; text-align: center; }
.footer-bottom .phone { color: var(--accent); font-weight: 700; }

/* Legal links in the bottom bar. Added 2026-09-21 with the canonical footer
   (scripts/_footer.py), which puts Privacy / Terms / Refund on every page --
   they used to be on 26 of 865, and only there via inline styles on index.html. */
.footer-legal { margin: 0 0 8px; font-size: 13px; }
.footer-legal a { color: inherit; text-decoration: underline; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--accent); }

/* ---- Shared components for the bare-<footer> + .f-grid convention and
   .features-grid feature cards. These rules previously lived ONLY in
   index.css / about.css / contact.css, so every hub / guide / corridor
   page that did not load those files rendered its footer and feature
   cards unstyled. Consolidated here (deferred = loaded site-wide).
   footer:has(.f-grid) scopes the dark bg to the real page footer and
   never to <footer> testimonial attributions inside deep blocks. */
footer:has(.f-grid) { background: #111; color: #fff; padding: 60px 0 20px 0; font-size: 14px; }
.f-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-bottom: 40px; }
.f-head { color: var(--accent); font-weight: 700; margin-bottom: 18px; font-size: 16px; text-transform: uppercase; letter-spacing: 0.4px; }
.f-links a { display: block; color: #aaa; text-decoration: none; margin-bottom: 10px; transition: 0.2s; }
.f-links a:hover { color: #fff; padding-left: 5px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.feature-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card h3 { margin: 6px 0 10px; font-size: 18px; color: var(--primary); }
.feature-card p { color: var(--muted); line-height: 1.6; margin: 0; }
.feature-icon { font-size: 30px; margin-bottom: 10px; display: block; }

/* ---- Site-wide "Pricing & Service" trust FAQ (injected before promise) ---- */
.slp-trust-faq { padding: 44px 0 8px; }
.slp-trust-faq .container { max-width: 880px; }
.slp-trust-faq h2 { text-align: center; color: var(--primary); font-size: clamp(1.3rem, 3.2vw, 1.7rem); font-weight: 800; margin: 0 0 6px; }
.slp-trust-faq__sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.slp-trust-faq__list { display: block; }
/* FIX: native <details class="faq-item"> answers were clipped to ~1 line by
   pickles.css `.faq-item .faq-a{max-height:0}` (meant for its JS accordion).
   Higher specificity (0,3,0) wins regardless of stylesheet order. */
.faq-item[open] > .faq-a,
details.faq-item[open] .faq-a { max-height: none !important; overflow: visible !important; }

/* ---- Site-wide "SLP Promise" trust strip (injected before footer) ---- */
.slp-promise { background: var(--light); border-top: 3px solid var(--accent); padding: 40px 0 36px; }
.slp-promise .container { max-width: 1100px; }
.slp-promise h2 { text-align: center; color: var(--primary); font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 800; margin: 0 0 6px; }
.slp-promise__sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 26px; }
.slp-promise__sub strong { color: var(--primary); }
.slp-promise__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.slp-promise__item { background: var(--white); border: 1px solid var(--hairline); border-left: 4px solid var(--accent); border-radius: 12px; padding: 18px 18px; box-shadow: var(--shadow-sm); }
.slp-promise__item .ic { font-size: 26px; display: block; margin-bottom: 8px; }
.slp-promise__item h3 { color: var(--primary); font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.slp-promise__item p { color: #555; font-size: 13.5px; line-height: 1.6; margin: 0; }
.slp-promise__note { color: var(--muted); font-size: 12.5px; line-height: 1.65; text-align: center; max-width: 820px; margin: 22px auto 0; }

/* ============================================================
   CONSOLIDATED SHARED COMPONENTS (audit 2026-05-30)
   Buttons, CTA bars, cards and FAQ blocks previously lived ONLY in
   page-specific CSS (about.css / services.css / help-center.css) so
   content pages (medicine, documents, guides, corridor, blog) that
   don't load those files rendered them unstyled. Consolidated here.
   SAFE for anchor pages: their page CSS is linked AFTER css/slp-deferred.css,
   so it still wins at equal specificity.
   ============================================================ */

/* Hero CTA buttons (services.css convention) */
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; border: none; cursor: pointer; }
.btn-cta:hover { transform: translateY(-2px); }
.btn-cta.btn-primary { background: var(--accent); color: var(--primary); box-shadow: 0 8px 24px rgba(255,213,79,.35); }
.btn-cta.btn-orange { background: #ff9800; color: #fff; }
.btn-cta.btn-secondary { background: var(--whatsapp); color: #fff; }

/* Big CTA bar + buttons (about.css convention) */
.cta-bar { background: var(--accent); padding: 40px 0; text-align: center; }
.cta-bar h2 { color: var(--primary); margin-bottom: 20px; font-size: clamp(1.25rem,3vw,1.75rem); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-call-big { display: inline-block; background: var(--primary); color: #fff; padding: 15px 40px; font-weight: 700; border-radius: 50px; text-decoration: none; font-size: 18px; box-shadow: 0 5px 15px rgba(74,0,114,.3); transition: transform .2s; }
.btn-call-big:hover { transform: translateY(-3px); }
.btn-wa-big { display: inline-block; background: var(--whatsapp); color: #fff; padding: 15px 40px; font-weight: 700; border-radius: 50px; text-decoration: none; font-size: 18px; box-shadow: 0 5px 15px rgba(37,211,102,.35); transition: transform .2s; }
.btn-wa-big:hover { transform: translateY(-3px); }

/* Ship / why / customs cards (light, self-contained) */
.ship-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.ship-card { display: block; background: var(--white); border-radius: 14px; padding: 26px 22px; text-decoration: none; color: var(--text); transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow-sm); border-bottom: 4px solid var(--accent); }
.ship-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ship-card .ship-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.ship-card h3 { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.ship-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.ship-card .ship-link { font-size: 13px; font-weight: 700; color: var(--secondary); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.why-card { background: var(--white); border-radius: 12px; padding: 24px; border-left: 4px solid var(--secondary); box-shadow: var(--shadow-sm); }
.why-card .why-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.why-card h3 { color: var(--primary); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: #555; font-size: 14px; line-height: 1.65; }
.customs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.customs-card { background: var(--white); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px 22px; box-shadow: var(--shadow-sm); }
.customs-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.customs-card ul { margin: 0; padding-left: 1.2em; font-size: 14px; color: #555; line-height: 1.75; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; counter-reset: step; }
.steps-grid .step-card { background: var(--white); border: 1px solid var(--hairline); border-radius: 14px; padding: 26px 22px; position: relative; counter-increment: step; box-shadow: var(--shadow-sm); }
.steps-grid .step-card::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--accent); color: var(--primary); font-weight: 800; border-radius: 50%; margin-bottom: 14px; }
.steps-grid .step-card h3 { color: var(--primary); font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.steps-grid .step-card p { color: #555; font-size: 14px; line-height: 1.6; }

/* FAQ — div convention (documents/vertical pages, no JS → answers stay visible) */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-container .faq-item { background: var(--white); border: 1px solid var(--hairline); border-left: 4px solid var(--accent); border-radius: 10px; margin-bottom: 12px; padding: 6px 20px 4px; box-shadow: var(--shadow-sm); }
.faq-container .faq-question { font-weight: 700; color: var(--primary); font-size: 16px; padding: 12px 0 6px; }
.faq-container .faq-answer p { color: var(--text); font-size: 14px; line-height: 1.7; margin: 0 0 12px; }

/* FAQ — native <details class="gfaq"> (help-center, guides) */
.gfaq { background: var(--white); border: 1px solid var(--hairline); border-left: 4px solid var(--accent); border-radius: 10px; margin-bottom: 12px; padding: 0 20px; box-shadow: var(--shadow-sm); overflow: hidden; }
.gfaq > summary { font-weight: 700; color: var(--primary); font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; }
.gfaq > summary::-webkit-details-marker { display: none; }
.gfaq .faq-arrow { color: var(--accent); font-size: 14px; transition: transform .2s; flex-shrink: 0; }
.gfaq[open] .faq-arrow { transform: rotate(180deg); }
.gfaq .ga { padding: 0 0 16px; }
.gfaq .ga p { color: var(--text); font-size: 14px; line-height: 1.7; margin: 0 0 8px; }

.wa-float {
  position: fixed; right: 22px; bottom: 80px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 900; transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-cols h4 { text-align: center; }
  .wa-float { width: 54px; height: 54px; font-size: 26px; bottom: 72px; }
}
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }


/* ============================================================
   Sticky "Book pickup" bar — appears on all pages
   ============================================================ */
.slp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: var(--z-sticky-bar, 800);
  background: linear-gradient(90deg, #4a0072 0%, #6a0099 55%, #7b1fa2 100%);
  border-top: 1px solid rgba(255, 213, 79, 0.45);
  box-shadow: 0 -4px 24px rgba(74, 0, 114, 0.4);
  padding: 0;
  height: 58px;
  display: flex;
  align-items: center;
}
/* Keep page content from sitting under the sticky bar (desktop + mobile) */
body:has(.slp-sticky-bar) {
  padding-bottom: 72px;
}
.slp-sticky-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.slp-sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}
.slp-sticky-bar__badge {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.slp-sticky-bar__copy {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slp-sticky-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(18, 140, 126, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.slp-sticky-bar__wa-icon {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
}
.slp-sticky-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(18, 140, 126, 0.55);
  color: #fff;
}

@media (max-width: 700px) {
  body:has(.slp-sticky-bar) { padding-bottom: 64px; }
  .slp-sticky-bar__left { display: none; }
  .slp-sticky-bar__row {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .slp-sticky-bar__btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    border-radius: 0;
    padding: 18px 16px;
    font-size: 15px;
    box-shadow: none;
  }
  .slp-sticky-bar__btn:hover { transform: none; }
  .slp-sticky-bar {
    height: auto;
    min-height: 54px;
    padding: 0;
    left: 0;
    right: 0;
  }
}


/* ============================================================
   10. SECTIONS — .section-light/grey/dark, .section-head, .intro-grid, .prose-narrow
   ============================================================ */
section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-grey  { background: var(--light); }
.section-dark  { background: var(--primary); color: var(--white); }

.section-head {
  text-align: center; margin-bottom: 60px;
  max-width: 820px; margin-left: auto; margin-right: auto; padding: 0 16px;
}
.section-head h2 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 15px; line-height: 1.2; text-wrap: pretty; }
.section-head p { font-size: 17px; color: var(--muted-2); line-height: 1.7; }
.section-dark .section-head h2 { color: var(--accent); }
.section-dark .section-head p  { color: rgba(255, 255, 255, 0.85); }

.intro-grid { display: grid; grid-template-columns: minmax(260px, 400px) 1fr; gap: 36px; align-items: start; margin-bottom: 28px; }
.intro-grid-photo { width: 100%; border-radius: var(--r-lg); object-fit: cover; box-shadow: 0 10px 34px rgba(0,0,0,0.08); aspect-ratio: 11/8; }

.prose-narrow { max-width: 950px; margin: 0 auto; font-size: 17px; line-height: 2; color: var(--muted-2); }
.prose-narrow p { margin-bottom: 26px; }
.prose-narrow strong { color: var(--text); font-weight: 700; }
.prose-narrow a { color: var(--secondary); font-weight: 600; border-bottom: 1px solid rgba(106,0,153,0.25); }
.prose-narrow ul, .prose-narrow ol { padding-left: 22px; margin-bottom: 26px; }
.prose-narrow li { margin-bottom: 8px; }
.section-dark .prose-narrow, .section-dark .prose-narrow p { color: rgba(255,255,255,0.85); }
.section-dark .prose-narrow strong { color: var(--white); }

.meds-h3, .section-subh3 { font-size: 22px; font-weight: 800; color: var(--primary); margin: 36px 0 14px; line-height: 1.3; }
.section-dark .meds-h3, .section-dark .section-subh3 { color: var(--accent); }

.image-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 40px auto 0; }
.image-row img { width: 100%; border-radius: var(--r-lg); box-shadow: 0 10px 34px rgba(0,0,0,0.08); object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 900px) {
  section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .image-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .section-head h2 { font-size: 24px; } }


/* ============================================================
   11. TESTIMONIALS — .testimonial, .carousel, .google-rating, .filter-chip
   ============================================================ */
.testimonial .stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; line-height: 1; margin-bottom: 16px; }
.testimonial .review { font-size: 15px; color: var(--muted-2); line-height: 1.85; margin-bottom: 22px; }
.testimonial .reviewer { font-weight: 800; color: var(--primary); font-size: 15px; }
.testimonial .review-loc { font-size: 14px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.testimonial .review-service {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--secondary); background: rgba(106,0,153,0.08);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; margin-right: 12px; vertical-align: middle;
}
.testimonial .reviewer-row { display: flex; align-items: center; gap: 12px; }

.testimonial-grid[data-density="compact"] .card,
.testimonial-grid[data-density="compact"] .testimonial { padding: 30px; }
.testimonial-grid[data-density="compact"] .review { font-size: 14px; }
.testimonial-grid[data-density="cozy"] .card,
.testimonial-grid[data-density="cozy"] .testimonial { padding: 45px; }
.testimonial-grid[data-density="spacious"] .card,
.testimonial-grid[data-density="spacious"] .testimonial { padding: 56px; }
.testimonial-grid[data-cols="2"] { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.testimonial-grid[data-cols="3"] { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.testimonial-grid[data-cols="4"] { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--r-xl); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1); will-change: transform; }
.carousel-slide {
  min-width: 100%; padding: 60px 80px;
  background: var(--white); border: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center; text-align: center; position: relative;
}
.carousel-slide .quote-mark { font-size: 80px; line-height: 1; color: var(--accent); font-family: Georgia,serif; margin-bottom: -20px; margin-top: -10px; }
.carousel-slide .stars { margin-bottom: 22px; font-size: 22px; letter-spacing: 3px; }
.carousel-slide .review { font-size: 22px; line-height: 1.6; color: var(--text); font-weight: 500; max-width: 760px; margin-bottom: 30px; text-wrap: pretty; }
.carousel-slide .reviewer { font-size: 18px; color: var(--primary); font-weight: 800; }
.carousel-slide .review-loc { font-size: 14px; color: var(--muted); margin-top: 2px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--hairline);
  color: var(--primary); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, transform 0.25s ease; z-index: 2;
}
.carousel-arrow:hover { background: var(--accent); transform: translateY(-50%) scale(1.05); }
.carousel-arrow-prev { left: -26px; }
.carousel-arrow-next { right: -26px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(74,0,114,0.2); border: 0; padding: 0; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.carousel-dot[aria-current="true"] { background: var(--primary); transform: scale(1.4); }

.google-rating { display: inline-flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 18px 28px; box-shadow: var(--shadow-sm); text-align: left; }
.google-rating .g-logo { font-size: 28px; font-weight: 800; line-height: 1; }
.google-rating .g-logo .b { color: #4285F4; }
.google-rating .g-logo .r { color: #EA4335; }
.google-rating .g-logo .y { color: #FBBC05; }
.google-rating .g-logo .g { color: #34A853; }
.google-rating .g-score { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.google-rating .g-stars { color: #fbbc05; font-size: 16px; letter-spacing: 1px; }
.google-rating .g-count { font-size: 13px; color: var(--muted); margin-top: 2px; }

.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 50px; }
.filter-chip { background: var(--white); border: 1px solid var(--hairline); color: var(--text); padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s ease; }
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip[aria-pressed="true"] { background: var(--primary); color: var(--white); border-color: var(--primary); }

@media (max-width: 900px) {
  .carousel-slide { padding: 40px 30px; }
  .carousel-slide .review { font-size: 17px; }
  .carousel-arrow-prev { left: 8px; }
  .carousel-arrow-next { right: 8px; }
  .carousel-arrow { width: 42px; height: 42px; }
}

/* Site-wide breadcrumb (pairs with JSON-LD BreadcrumbList on LP + hubs) */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.breadcrumb-inner {
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-inner a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-inner a:hover {
  text-decoration: underline;
}
.breadcrumb-inner span {
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   HOMEPAGE HERO — trust stickers + mobile-first pickup form
   ============================================================ */
.hero-trust-stickers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 24px;
}
.hero-trust-sticker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    160deg,
    rgba(122, 31, 162, 0.82) 0%,
    rgba(74, 0, 114, 0.9) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 213, 79, 0.55);
  border-radius: 14px;
  padding: 10px 16px;
  min-width: 92px;
  line-height: 1.15;
  box-shadow: 0 4px 14px rgba(74, 0, 114, 0.35);
}
.hero-trust-sticker strong {
  color: #ffd54f;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.hero-trust-sticker span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(45, 10, 78, 0.45);
}

/* Mobile: H1 + chips + stickers FIRST, pickup card AFTER (per user direction) */
@media (max-width: 900px) {
  .hero-wrapper { display: flex; flex-direction: column; gap: 24px; }
  .hero-text { order: 1; }
  .hero-form { order: 2; }
  .hero-trust-stickers { gap: 8px; }
  .hero-trust-sticker { padding: 8px 12px; min-width: 78px; }
  .hero-trust-sticker strong { font-size: 15px; }
  .hero-trust-sticker span { font-size: 10px; }
}

/* ============================================================
   HOMEPAGE H1 — make .hero-seo-title visible (was unstyled = invisible on purple)
   ============================================================ */
.hero-seo-title {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(24px, 4.6vw, 38px);
  line-height: 1.22;
  text-align: center;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin: 18px auto 12px;
  max-width: 860px;
  padding: 0 12px;
}
.hero .hero-sub,
.hero .hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-seo-title em,
.hero-seo-title strong { color: var(--accent); font-style: normal; }

/* Trust stickers — slightly darker fill for stronger contrast on hero photo,
   plus a subtle hover lift on desktop */
.hero-trust-sticker {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-trust-sticker:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(106, 0, 153, 0.45);
}
.hero-trust-stickers {
  justify-content: center;   /* mobile default; desktop overridden in index.css */
}
@media (min-width: 901px) {
  .hero-trust-stickers,
  .hero-value-chips {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-seo-title { font-size: clamp(20px, 5.2vw, 26px); margin-top: 12px; }
  .hero-trust-stickers { gap: 6px; margin: 12px 0 16px; }
}

/* ============================================================
   HERO — Row 1: 3 value chips (Free pickup / Pro packing / Countries)
   ============================================================ */
.hero-value-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 8px;
  padding: 0;
}
.hero-value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(255, 213, 79, 0.35);
  letter-spacing: 0.2px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hero-value-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255, 213, 79, 0.45); }
.hero-value-chip span { font-size: 16px; }

@media (max-width: 480px) {
  .hero-value-chips { gap: 6px; margin: 10px 0 6px; }
  .hero-value-chip { font-size: 12px; padding: 7px 12px; gap: 6px; }
  .hero-value-chip span { font-size: 13px; }
}


/* ============================================================
   PICKUP CARD (form fields, labels, submit, links) — MIGRATED from
   css/pages/index.css so non-homepage pages also style the floating
   pickup-card section (injected by scripts/_inject_pickup_card.py).

   Original homepage hero pickup-card CSS still works (selectors
   identical); this just ensures coverage on every page that loads
   css/slp-deferred.css.
   ============================================================ */
.pickup-card {
      border: 2px solid rgba(255, 213, 79, 0.55);
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(74, 0, 114, 0.35), 0 6px 18px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      max-width: 400px;
      margin-left: auto;
      color: #222;
    }

.pickup-card__head {
      background: linear-gradient(135deg, #3a0068 0%, #6a0099 100%);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 3px solid #ffd54f;
    }

.pickup-card__logo {
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 8px;
      padding: 3px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

.pickup-card__brand {
      color: #fff;
      font-weight: 900;
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: 0.2px;
    }

.pickup-card__body {
      padding: 18px 18px 18px;
      background: #4a0072;
    }

.pickup-card__title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #ffd54f;
      margin: 0 0 12px;
      line-height: 1.2;
    }

.pickup-card__chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 12px;
    }

.pickup-card__chip {
      background: #ffd54f;
      color: #4a0072;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 6px;
      white-space: nowrap;
    }

.pickup-card__divider {
      height: 2px;
      background: #ffd54f;
      border-radius: 2px;
      margin-bottom: 14px;
      opacity: 0.55;
    }

.pickup-field {
      margin-bottom: 10px;
    }

.pickup-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

.pickup-req {
      color: #ffd54f;
      font-size: 12px;
    }

.pickup-select-wrap { position: relative; }

.pickup-select-wrap::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 6px;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a0072' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }

.pickup-field select,
    .pickup-field input[type="tel"] {
      width: 100%;
      padding: 11px 34px 11px 12px;
      border-radius: 9px;
      border: 1.5px solid rgba(255,255,255,0.2);
      font-size: 14px;
      font-family: inherit;
      font-weight: 500;
      color: #2a0050;
      background: #fdf6e3;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

.pickup-field input[type="tel"] { padding-right: 12px; }

.pickup-field select:focus,
    .pickup-field input:focus {
      outline: none;
      border-color: #ffd54f;
      box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
    }

/* Country combobox (213+ countries from rates CSV) */
.slp-country-combobox { position: relative; width: 100%; }
.pickup-card__body .slp-country-combobox__input,
.pickup-card__body .pickup-field input[type="number"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: #2a0050;
  background: #fdf6e3;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.slp-country-combobox__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 500;
  max-height: min(300px, 52vh);
  overflow-y: auto;
  background: #fdf6e3;
  border: 2px solid #ffd54f;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.slp-country-combobox__list[hidden] { display: none !important; }
.slp-country-combobox__option {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #2a0050;
  cursor: pointer;
  font-family: inherit;
}
.slp-country-combobox__option:hover,
.slp-country-combobox__option.is-active {
  background: rgba(255, 213, 79, 0.55);
  font-weight: 700;
  color: #4a0072;
}

.pickup-row2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

.pickup-cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }

.btn-pickup-rates {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      padding: 13px 10px;
      border-radius: 50px;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #4a0072;
      background: #ffd54f;
      box-shadow: 0 4px 14px rgba(255, 213, 79, 0.35);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }

.btn-pickup-rates:hover { transform: translateY(-2px); color: #4a0072; }

.btn-pickup-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 13px 10px;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      font-size: 13px;
      color: #fff;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      box-shadow: 0 4px 14px rgba(18, 140, 126, 0.4);
      transition: transform 0.2s ease;
      white-space: nowrap;
    }

.btn-pickup-submit:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
      .header-trust {
        display: none;
      }

      /* Homepage hero only — vertical pages use --hero-img via pickles.css */
      .hero:not([style*="--hero-img"]):not(.hero--pickles):not(.hero--city-vertical) {
        background: linear-gradient(180deg, #1a0033 0%, #2d0a4e 50%, #1a0033 100%);
      }

      .hero-overlay {
        background: linear-gradient(rgba(20,0,50,0.75), rgba(74,0,114,0.85));
      }

      .hero-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
      }

      .hero-text {
        text-align: center;
        padding: 0 12px;
        min-width: 0;
        width: 100%;
        max-width: 26rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-h1 {
        font-size: 24px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }
      .hero-tagchips {
        justify-content: center;
      }

      .hero-trust-grid {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-partners-line {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
      }

      .hero-btns {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .btn-hero-wa,
      .btn-hero-rates {
        justify-content: center;
      }

      .hero-form {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
      }

      .hero-form .pickup-card {
        width: 100%;
        max-width: min(420px, 100%);
        margin-left: auto;
        margin-right: auto;
      }

      .pickup-row2 {
        grid-template-columns: 1fr 1fr;
      }

      .pack-wrapper {
        flex-direction: column-reverse;
      }

      .pack-img-box {
        height: 300px;
      }

      .partners-grid {
        grid-template-columns: repeat(2, 1fr);
      }

    }

/* ============================================================
   PICKUP CARD VISIBILITY FIX
   Ensure the floating pickup card renders correctly regardless of
   the page background (purple footer, hero, white sections, etc.)
   ============================================================ */
.pickup-card-section {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(244,247,246,0.6) 100%);
}
.pickup-card-section .pickup-card {
  max-width: 580px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}
.pickup-card-section .pickup-card__title {
  text-align: center;
  color: #ffd54f;
}
.pickup-card-section .pickup-card__body { padding: 28px 26px 22px; }
.pickup-card-section .pickup-card__head { padding: 16px 22px; }
@media (max-width: 600px) {
  .pickup-card-section { padding: 36px 0; }
  .pickup-card-section .pickup-card__body { padding: 22px 18px 18px; }
}

/* Phase 1 deep-content sections — alternating light/lavender wash */
section[id^="deep-"] {
  padding: 60px 0;
  border-top: 1px solid rgba(74, 0, 114, 0.08);
}
section[id^="deep-"]:nth-of-type(odd) { background: #faf7fd; }
section[id^="deep-"]:nth-of-type(even) { background: #ffffff; }
section[id^="deep-"] h2 {
  color: var(--primary, #4a0072);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
section[id^="deep-"] p, section[id^="deep-"] li {
  font-size: 16px; line-height: 1.7; color: #2d2d2d;
}
section[id^="deep-"] ul {
  max-width: 760px; margin: 16px auto;
  padding-left: 1.4em;
}
section[id^="deep-"] li { margin-bottom: 10px; }
section[id^="deep-"] strong {
  color: var(--primary, #4a0072);
}
section[id^="deep-"] blockquote {
  max-width: 720px; margin: 20px auto;
  padding: 24px 28px; border-left: 4px solid var(--primary, #4a0072);
  background: #fff; border-radius: 4px;
  font-style: italic; color: #444;
}
section[id^="deep-"] blockquote footer {
  margin-top: 10px; font-style: normal; font-weight: 600;
  color: var(--primary, #4a0072); font-size: 14px;
}

.pickup-consent { margin: 8px 0 4px; }
.pickup-consent-label { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; line-height: 1.4; color: #555; font-weight: 400; cursor: pointer; }
.pickup-consent-checkbox { margin-top: 2px; flex-shrink: 0; }

/* Long top-level nav menus (Areas We Cover) — desktop only (mobile uses one panel scroll) */
@media (min-width: 901px) {
  .dropdown.dropdown--scroll,
  .nav-menu > .nav-item > .dropdown.dropdown--scroll {
    max-height: min(70vh, 520px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent, #ffd54f) var(--primary, #4a0072);
  }
}

/* Promo poster band (js/slp-promo-band.js + data/promo-popup.json) — shared sitewide */
.locality-rakhi-band {
  padding-top: 36px;
  padding-bottom: 36px;
}
.locality-rakhi-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.locality-rakhi-poster {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(74, 0, 114, 0.18);
  background: #4a0072;
}
.locality-rakhi-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.locality-rakhi-copy .hero-cta-row {
  justify-content: flex-start;
  margin-top: 18px;
}
@media (max-width: 800px) {
  .locality-rakhi-grid { grid-template-columns: 1fr; }
  .locality-rakhi-poster { max-width: 360px; margin: 0 auto; }
}


/* ── Sources block ────────────────────────────────────────────────
   Rendered from evidence[] in each page's JSON by clone_utils.evidence_html().
   Per-country by construction, so it is one of the few blocks on these pages
   that is genuinely distinct page to page. */
.source-list{list-style:none;margin:0 0 1rem;padding:0}
.source-item{padding:.6rem 0;border-bottom:1px solid var(--line,#e5e7eb)}
.source-item:last-child{border-bottom:0}
.source-link{display:block;font-weight:600;text-decoration:none;color:var(--primary,#0b4552)}
.source-link:hover,.source-link:focus-visible{text-decoration:underline}
.source-meta{display:block;font-size:.85rem;color:var(--muted,#5c6b70);margin-top:.15rem;font-variant-numeric:tabular-nums}
.sources-intro{margin:0 0 .5rem}
.sources-note{font-size:.9rem;color:var(--muted,#5c6b70);margin:0}

/* ── In-content blog CTA ──────────────────────────────────────────
   Sits inside <main> at the end of the article. The footer CTA strip stays;
   this catches the reader at the point of highest intent. */
.blog-cta{margin:2.5rem 0 1.5rem;padding:1.5rem 1.4rem;border:1px solid var(--line,#e5e7eb);border-radius:10px;background:var(--surface-2,#f6f9f8)}
.blog-cta__heading{margin:0 0 .4rem;font-size:1.3rem;line-height:1.25}
.blog-cta__sub{margin:0 0 1rem;color:var(--muted,#5c6b70);max-width:62ch}
.blog-cta__row{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:.8rem}
.blog-cta__note{margin:0;font-size:.85rem;color:var(--muted,#5c6b70)}
