/* ============================================================================
   CYRAHOP — home.css
   Homepage layout matching the CYRAHOP reference mockup (cyrahop_homepage.html):
   colored category tiles, bold banner carousel with deco glyph, service cards
   with tinted icons + badges, compact store rails with ETA + open dot, colored
   promo row. Uses the shared red theme tokens from globals.css.
   Mobile-first.
   ============================================================================ */

/* ---- Hero: category grid + banner ---------------------------------------- */
.hero { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 20px 0 16px; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cat-tile {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 8px; transition: all 0.15s ease; text-align: center;
}
.cat-tile:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(240, 126, 71, 0.12); }
.cat-ic {
  width: 54px; height: 54px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.cat-name { font-size: 11px; font-weight: 500; color: var(--text-muted); line-height: 1.3; }

/* banner carousel — bold full-bleed slides with a faint deco glyph */
.carousel { border-radius: 14px; overflow: hidden; position: relative; }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-slide {
  position: relative; flex: 0 0 100%;
  height: 210px; display: flex; align-items: center; padding: 0 36px;
  color: #fff; overflow: hidden;   /* white ink on dark brand gradients */
}
.carousel-kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 10px; font-weight: 700; color: var(--teal, #20373B);
  background: var(--mint, #C3E7F1); padding: 5px 11px; border-radius: 999px;
  margin-bottom: 12px;
}
.carousel-deco {
  position: absolute; right: 0; top: 0; width: 45%; height: 100%;
  opacity: 0.22; display: flex; align-items: center; justify-content: center;
  font-size: 120px; pointer-events: none;
}
.carousel-copy { position: relative; z-index: 2; }
.carousel-copy h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 8px; }
.carousel-copy p { font-size: 13px; opacity: 0.85; margin-bottom: 14px; max-width: 260px; }
.carousel-cta {
  background: var(--yellow); color: var(--yellow-ink); border: none; border-radius: 7px;
  padding: 8px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: opacity 0.15s;
}
.carousel-cta:hover { opacity: 0.9; }
.carousel-arrow { display: none; }   /* mockup uses dots only */
.carousel-dots { position: absolute; bottom: 14px; right: 16px; display: flex; gap: 6px; }
.carousel-dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.55); }
.carousel-dots button.is-active { background: var(--on-pastel); width: 20px; border-radius: 4px; }

/* ---- Section headers ----------------------------------------------------- */
.section { padding: 22px 0 8px; margin: 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-head h2 { font-size: 17px; font-weight: 600; }
.section-head a { font-size: 13px; color: var(--primary); font-weight: 500; }
.section-head a:hover { text-decoration: underline; }

/* ---- Service cards ------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.svc-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 14px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px; transition: all 0.15s ease;
}
.svc-card:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(240, 126, 71, 0.10); }
.svc-ic { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.svc-name { font-size: 14px; font-weight: 600; }
.svc-sub { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.svc-badge { font-size: 10px; padding: 3px 8px; border-radius: 5px; font-weight: 600; }
.svc-badge.badge-new { background: var(--yellow-soft); color: var(--yellow-ink); }
.svc-badge.badge-24  { background: var(--yellow); color: var(--yellow-ink); }

/* ---- Store rails --------------------------------------------------------- */
.rail { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.store-card {
  flex: 0 0 auto; width: 148px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.15s ease;
}
.store-card:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10); transform: translateY(-1px); }
.store-card-img { width: 100%; height: 84px; display: flex; align-items: center; justify-content: center; font-size: 34px; background: var(--border); background-size: cover; background-position: center; }
.store-card-emoji { font-size: 34px; }
.store-card-body { padding: 10px 10px 12px; }
.store-card-name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.store-card-eta { font-size: 11px; color: var(--text-muted); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.store-open-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; flex: 0 0 auto; }
.store-open-dot.is-closed { background: var(--text-hint); }

/* ---- Promo row ----------------------------------------------------------- */
.promo-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.promo-card {
  position: relative; border-radius: 12px; overflow: hidden; height: 104px;
  display: flex; align-items: center; padding: 0 22px; color: var(--on-pastel); transition: opacity 0.15s;
}
.promo-card:hover { opacity: 0.93; }
/* Brand palette rotation: saffron → light blue → moonstone. */
.promo-c0 { background: var(--yellow, #FFC64F); color: var(--teal, #20373B); }
.promo-c1 { background: var(--mint, #C3E7F1); color: var(--teal, #20373B); }
.promo-c2 { background: var(--primary, #519CAB); color: #fff; }
.promo-deco { position: absolute; right: 16px; font-size: 52px; opacity: 0.25; }
.promo-text { z-index: 1; }
.promo-text h3 { font-size: 15px; font-weight: 600; line-height: 1.2; margin-bottom: 4px; }
.promo-text p { font-size: 12px; opacity: 0.85; }
.promo-cta { display: none; }

/* ===========================================================================
   Desktop (>=768px)
   =========================================================================== */
@media (min-width: 768px) {
  .hero { grid-template-columns: 220px 1fr; gap: 16px; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .promo-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Active order(s) replace the carousel (same 210px area) -------------- */
/* The stack always fills the banner height; multiple orders split it evenly. */
.active-stack { height: 210px; display: flex; flex-direction: column; gap: 8px; }
.active-row {
  flex: 1 1 0; min-height: 0; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--teal); color: #fff; border-radius: 12px; padding: 0 24px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.active-row:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.active-row.needs-action { background: var(--primary); }
.active-row-deco {
  position: absolute; right: 0; top: 0; width: 38%; height: 100%; opacity: .14;
  display: flex; align-items: center; justify-content: center; font-size: 84px; pointer-events: none;
}
.active-row-link {
  position: relative; z-index: 2; flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center; color: inherit; text-decoration: none;
}
.active-row-info { min-width: 0; }
.active-row-actions { position: relative; z-index: 2; flex: 0 0 auto; display: flex; gap: 6px; align-items: center; }
.active-act {
  background: rgba(255, 255, 255, 0.95); color: var(--teal);
  font-weight: 600; font-size: 12.5px; padding: 7px 12px;
  border-radius: var(--radius-pill); white-space: nowrap; cursor: pointer;
  transition: opacity .15s ease;
}
.active-act:hover { opacity: .9; }
.active-act:disabled { opacity: .6; cursor: default; }
.active-act.act-primary { background: var(--yellow); color: var(--yellow-ink); }
.active-row.needs-action .active-act { color: var(--primary-dark); }
.active-row.needs-action .active-act.act-primary { color: var(--yellow-ink); }
.active-row-kicker { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .85; display: block; margin-bottom: 2px; }
.active-row-top { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.active-row-store { font-weight: 400; opacity: .85; }
.active-row-status {
  font-size: 14px; font-weight: 700; color: var(--yellow); margin-top: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.active-row.needs-action .active-row-status { color: #fff; }
.active-row-cta {
  position: relative; z-index: 2; flex: 0 0 auto;
  background: #fff; color: var(--teal); font-weight: 600; font-size: 13px;
  padding: 7px 14px; border-radius: var(--radius-pill); white-space: nowrap;
}
.active-row.needs-action .active-row-cta { color: var(--primary-dark); }
/* Single active order: a bit more breathing room + a kicker line. */
/* A lone active order matches the size of a single promo banner (104px tall). */
.active-stack.is-single { height: 104px; }
.active-stack.is-single .active-row { padding: 0 24px; }
.active-stack.is-single .active-row-top { font-size: 16px; }
.active-stack.is-single .active-row-status { font-size: 13px; }
.active-stack.is-single .active-row-deco { font-size: 64px; }
/* "+N more" link row. */
.active-row-more {
  justify-content: center; background: var(--menthe); color: var(--on-pastel);
  font-weight: 600; font-size: 13px; flex: 0 0 34px;
}

/* ---- Photo placeholders (free related photos instead of emoji) ---------- */
.cat-ic-photo, .svc-ic-photo {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  font-size: 0; color: transparent;
}
.cat-ic-photo { border-radius: 12px; }
.svc-ic-photo { border-radius: 10px; }

/* ---- Service Catalog (above hero) --------------------------------------- */
.catalog { margin-top: 4px; }
.catalog-title { font-size: 1.5rem; font-family: var(--font-head); font-weight: 800; }
.catalog-sub { color: var(--primary); font-weight: 500; margin: 2px 0 14px; font-size: .92rem; }
.catalog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ftab { background: #fff; border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 8px 18px; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--text-main); cursor: pointer; transition: border-color .15s ease; }
.ftab:hover { border-color: var(--primary); }
.ftab.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-cat { background: #fff; border: 2px solid var(--mint); border-radius: 16px; padding: 20px;
  display: block; text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.svc-cat:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.svc-cat-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light);
  color: var(--primary); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 12px; }
.svc-cat-name { font-size: 1.05rem; font-weight: 800; font-family: var(--font-head); margin-bottom: 4px; }
.svc-cat-sub { font-size: .85rem; color: var(--text-muted); line-height: 1.4; }
.svc-cat[hidden] { display: none; }

/* ---- Top row: laundry rail (left) + hero banner (right) ----------------- */
/* Mobile-first: STACK — laundry rail panel first, hero banner below it.
   Both shrink via the mobile rules further down. Desktop switches to side-by-side. */
.home-top { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; align-items: stretch; margin-top: 8px; }
/* Hero column must be allowed to shrink below content width (prevents the
   active-order banner's nowrap text from blowing the layout past the screen). */
.home-top-hero, .home-top-rail { min-width: 0; }
.home-top-hero .active-stack, .home-top-hero .carousel { max-width: 100%; }
.home-top .section { margin-block: 0; }
.home-top-rail { order: 1; }   /* rail first */
.home-top-hero { order: 2; display: flex; flex-direction: column; }   /* hero below */
.home-top-hero .carousel, .home-top-hero .active-stack { width: 100%; }
/* Laundry rail = even 3-up grid at every width. minmax(0,1fr) lets the three
   cards shrink to fit a phone screen (no horizontal scroll) and stretch on
   desktop. Extra shops live behind "See all". */
.home-top-rail .rail {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px; overflow: visible;
}
.home-top-rail .rail .store-card { width: auto; }
.home-top-rail .rail .store-card:nth-child(n + 4) { display: none; }
/* Compact card internals so all three fit comfortably on a narrow screen. */
.home-top-rail .store-card-img { height: 70px; }
.home-top-rail .store-card-body { padding: 8px 8px 10px; }
.home-top-rail .store-card-name { font-size: 12px; }
.home-top-rail .store-card-pickup,
.home-top-rail .store-card-eta,
.home-top-rail .store-card-delivery { font-size: 10px; }
/* Stack full-width so the rail, hero and promo row all share the same width:
   rail = 3 cards across the container, hero = full container width below it. */
@media (min-width: 760px) {
  /* Desktop: side by side — laundry rail (left) + hero banner (right). */
  .home-top { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 16px; }
  .home-top-rail .rail { gap: 10px; }
  /* Hero fills the column height so both sides line up evenly. */
  .home-top-hero .carousel, .home-top-hero .active-stack { flex: 1 1 auto; height: 100%; }
  .home-top-hero .carousel-track, .home-top-hero .carousel-slide { height: 100%; }
}
/* Mobile: shrink the hero + rail so they scale to the phone screen. */
@media (max-width: 600px) {
  .home-top { gap: 10px; }
  .home-top-rail .rail { gap: 5px; }
  .home-top-rail .store-card { border-radius: 9px; }
  .home-top-rail .store-card-img { height: 52px; }
  .home-top-rail .store-card-body { padding: 6px 5px 8px; }
  .home-top-rail .store-card-name { font-size: 10px; line-height: 1.2; }
  .home-top-rail .store-card-pickup,
  .home-top-rail .store-card-eta,
  .home-top-rail .store-card-delivery { font-size: 8.5px; line-height: 1.25; margin-top: 2px; }
  /* The shop-status pill scales down so it doesn't overflow the tiny card. */
  .home-top-rail .store-card-status { font-size: 8px; padding: 1px 5px; }
  .carousel-slide { height: 132px; padding: 0 16px; }
  .carousel-kicker { font-size: 7.5px; padding: 3px 7px; margin-bottom: 6px; }
  .carousel-copy h2 { font-size: 16px; }
  .carousel-copy p { font-size: 10.5px; margin-bottom: 8px; max-width: 70%; }
  .carousel-cta { padding: 6px 13px; font-size: 11px; }
  .carousel-deco { font-size: 64px; }
  /* Active-order hero also shrinks to phone size (no fixed 210px height). */
  .home-top-hero .active-stack,
  .active-stack { height: auto; gap: 6px; }
  .active-row { padding: 10px 12px; }
  .active-stack.is-single .active-row { padding: 12px 14px; }
  .active-row-deco { font-size: 22px; }
  .active-row-kicker { font-size: 9px; }
  .active-row-top { font-size: 12px; }
  .active-row-status { font-size: 11px; }
  .active-stack.is-single .active-row-top { font-size: 14px; }
  .active-stack.is-single .active-row-status { font-size: 12px; }
  .active-act { font-size: 11px; padding: 6px 9px; }
  .active-row-cta { font-size: 11px; }
  /* Let the action buttons drop below the order info on narrow phones so they
     stay tappable instead of being clipped by the row. */
  .active-row { flex-wrap: wrap; row-gap: 8px; }
  .active-row-link { flex: 1 1 100%; }
  .active-row-actions { width: 100%; justify-content: flex-end; }
}
/* Very small phones: trim a touch more so 3 cards never overflow. */
@media (max-width: 380px) {
  .home-top-rail .rail { gap: 4px; }
  .home-top-rail .store-card-img { height: 46px; }
  .home-top-rail .store-card-name { font-size: 9.5px; }
  .home-top-rail .store-card-pickup,
  .home-top-rail .store-card-eta,
  .home-top-rail .store-card-delivery { font-size: 8px; }
  .carousel-slide { height: 120px; }
  .carousel-copy h2 { font-size: 15px; }
}

/* ============================================================================
   Agora-style homepage (hero + categories + promo cards + grid + countdown)
   Brand-adapted: moonstone primary, saffron accent, mint/gunmetal surfaces.
   ========================================================================== */
.ag-home { padding-bottom: 30px; }
.ag-active { margin: 14px 0 4px; }

/* Hero */
.ag-hero {
  display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center;
  background: linear-gradient(180deg, #F4F9FA, #fff); border: 1px solid var(--border);
  border-radius: 22px; padding: 26px; margin-top: 16px;
}
.ag-hero-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); background: var(--mint); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.ag-hero-copy h1 { font-family: var(--font-head); font-size: clamp(26px, 6vw, 44px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.ag-hero-copy h1 span { color: var(--primary); }
.ag-hero-copy p { color: var(--text-muted); margin: 14px 0 20px; max-width: 440px; font-size: 1rem; }
.ag-cta { padding: 12px 26px; font-size: 1rem; border-radius: 12px; }
.ag-hero-art {
  border-radius: 18px; min-height: 180px; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 70% 30%, var(--mint), #E7F4F8 60%, #DDEEF3);
}
.ag-hero-emoji { font-size: 96px; filter: drop-shadow(0 8px 16px rgba(32,55,59,.15)); }

/* Section heads */
.ag-section { margin-top: 30px; }
.ag-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.ag-head h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.ag-head h2 span { color: var(--primary); }
.ag-head a { font-size: .85rem; font-weight: 600; color: var(--primary); }

/* Featured categories (circles) */
.ag-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ag-cat { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; position: relative; }
.ag-cat-ic {
  width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 34px; background: var(--bg-card); border: 1px solid var(--border); box-shadow: 0 3px 10px rgba(32,55,59,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ag-cat:hover .ag-cat-ic { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(32,55,59,.12); }
.ag-cat-name { font-size: .82rem; font-weight: 600; }
.ag-cat.is-soon { opacity: .65; }
.ag-cat-soon { position: absolute; top: -4px; right: calc(50% - 46px); font-size: .58rem; font-weight: 700; background: var(--yellow); color: var(--yellow-ink); padding: 1px 6px; border-radius: 999px; }

/* Two promo cards */
.ag-promos { display: grid; grid-template-columns: 1fr; gap: 14px; }
.ag-promo {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-radius: 18px; padding: 22px 24px; overflow: hidden; min-height: 130px;
}
.ag-promo-mint { background: linear-gradient(120deg, #CFEAF1, #EAF7FA); }
.ag-promo-saffron { background: linear-gradient(120deg, #FFE6AE, #FFF4DA); }
.ag-promo-kicker { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 6px; }
.ag-promo-text h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--teal); letter-spacing: -.01em; }
.ag-promo-cta { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--primary-dark); }
.ag-promo-art { font-size: 64px; opacity: .9; }

/* Featured shops as a product grid */
.ag-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.ag-grid .store-card { width: auto; }

/* Countdown banner */
.ag-countdown {
  display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center;
  background: linear-gradient(120deg, var(--teal), #2E5258); color: #fff;
  border-radius: 22px; padding: 28px; margin-top: 30px;
}
.ag-cd-copy h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; margin: 4px 0 6px; }
.ag-cd-copy p { color: rgba(255,255,255,.82); margin-bottom: 16px; }
.ag-cd-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.ag-cd-timer > div { background: rgba(255,255,255,.12); border-radius: 12px; padding: 8px 10px; min-width: 54px; text-align: center; }
.ag-cd-timer b { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.ag-cd-timer span { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.ag-cd-timer i { font-style: normal; font-size: 1.3rem; opacity: .6; }
.ag-cd-cta { background: var(--yellow); color: var(--yellow-ink); font-weight: 700; padding: 11px 24px; border-radius: 12px; }
.ag-cd-art { display: none; }

/* Desktop */
@media (min-width: 760px) {
  .ag-hero { grid-template-columns: 1.1fr 1fr; padding: 40px 44px; }
  .ag-hero-art { min-height: 260px; }
  .ag-promos { grid-template-columns: 1fr 1fr; }
  .ag-countdown { grid-template-columns: 1.4fr 1fr; padding: 36px 44px; }
  .ag-cd-art { display: flex; align-items: center; justify-content: center; font-size: 120px; }
}
@media (max-width: 560px) {
  .ag-cats { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .ag-cat-ic { width: 60px; height: 60px; font-size: 26px; }
  .ag-cat-name { font-size: .72rem; }
  .ag-cat-soon { right: calc(50% - 38px); }
  .ag-hero { padding: 22px; }
}

/* ============================================================================
   Snoonu-style homepage — search hero, category pills, rounded banners,
   vendor rails, app strip. Brand-adapted (moonstone/saffron/gunmetal).
   ========================================================================== */
.sn-home { padding-bottom: 36px; }

/* Search hero */
.sn-hero {
  margin-top: 16px; border-radius: 24px; padding: 34px 22px;
  background: radial-gradient(900px 300px at 15% 0%, rgba(81,156,171,.20), transparent 60%),
              linear-gradient(135deg, var(--teal), #2E5258);
  color: #fff; text-align: center;
}
.sn-hero-inner { max-width: 680px; margin-inline: auto; }
.sn-hero h1 { font-family: var(--font-head); font-size: clamp(22px, 5vw, 36px); font-weight: 800; letter-spacing: -.02em; }
.sn-hero p { color: rgba(255,255,255,.82); margin: 8px 0 18px; }
.sn-search {
  display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px;
  padding: 7px 7px 7px 16px; box-shadow: 0 10px 30px rgba(8,20,22,.25); max-width: 560px; margin-inline: auto;
}
.sn-search-ic { font-size: 1.1rem; }
.sn-search input { flex: 1; border: none !important; background: transparent !important; padding: 10px 4px !important; font-size: .95rem; box-shadow: none !important; }
.sn-search input:focus { outline: none; }
.sn-search .btn { border-radius: 999px; padding: 10px 22px; white-space: nowrap; }

/* Sections */
.sn-section { margin-top: 26px; }
.sn-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.sn-head h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; }
.sn-head a { font-size: .85rem; font-weight: 600; color: var(--primary); }

/* Quick category pills (horizontal scroll) */
.sn-cats { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.sn-cats::-webkit-scrollbar { display: none; }
.sn-cat { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 78px; position: relative; }
.sn-cat-ic {
  width: 66px; height: 66px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 4px 12px rgba(32,55,59,.08); transition: transform .15s ease;
}
.sn-cat:hover .sn-cat-ic { transform: translateY(-3px); }
.sn-cat-name { font-size: .8rem; font-weight: 600; text-align: center; }
.sn-cat.is-soon { opacity: .6; }
.sn-cat-soon { position: absolute; top: -4px; right: 6px; font-size: .56rem; font-weight: 700; background: var(--yellow); color: var(--yellow-ink); padding: 1px 6px; border-radius: 999px; }

/* Rounded banner carousel */
.sn-carousel { border-radius: 20px; }
.sn-carousel .carousel-slide { border-radius: 20px; height: 200px; }

/* Vendor rail — slightly larger cards */
.sn-rail .store-card { width: 180px; }
.sn-rail .store-card-img { height: 104px; }

/* Promo cards */
.sn-promos { display: grid; grid-template-columns: 1fr; gap: 14px; }
.sn-promo { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 20px; padding: 22px 24px; min-height: 120px; }
.sn-promo-mint { background: linear-gradient(120deg, #CFEAF1, #EAF7FA); }
.sn-promo-saffron { background: linear-gradient(120deg, #FFE6AE, #FFF4DA); }
.sn-promo-kicker { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 6px; }
.sn-promo h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--teal); }
.sn-promo-cta { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--primary-dark); }
.sn-promo-art { font-size: 58px; }

/* App strip */
.sn-app {
  margin-top: 28px; border-radius: 24px; padding: 30px 26px; color: #fff;
  display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center;
  background: linear-gradient(120deg, var(--primary), #3E8190);
}
.sn-app h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.sn-app p { color: rgba(255,255,255,.88); margin: 6px 0 14px; }
.sn-app-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.sn-store-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.28); color: #fff; font-weight: 600; font-size: .85rem; padding: 10px 16px; border-radius: 12px; }
.sn-store-badge:hover { background: rgba(0,0,0,.4); }
.sn-app-art { display: none; }

@media (min-width: 760px) {
  .sn-hero { padding: 52px 30px; }
  .sn-promos { grid-template-columns: 1fr 1fr; }
  .sn-app { grid-template-columns: 1.4fr 1fr; padding: 38px 44px; }
  .sn-app-art { display: flex; align-items: center; justify-content: center; font-size: 110px; }
}

/* ---- Snoonu "Favourite Brands" logo tiles -------------------------------- */
.sn-brands { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.sn-brands::-webkit-scrollbar { display: none; }
.sn-brand { flex: 0 0 auto; width: 132px; display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.sn-brand-tile { margin-bottom: 4px; }
.sn-brand-name { margin-bottom: 2px; }
.sn-brand-tile {
  position: relative; width: 112px; height: 112px; border-radius: 26px;
  background: var(--bg-elev) center/cover no-repeat; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(32,55,59,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sn-brand:hover .sn-brand-tile { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(32,55,59,.14); }
.sn-brand-tile b { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.sn-brand-dot { position: absolute; top: 9px; right: 9px; width: 12px; height: 12px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 3px #fff; }
.sn-brand-dot.is-closed { background: var(--text-hint); }
.sn-brand-name { font-size: .9rem; font-weight: 700; white-space: nowrap; max-width: 132px; overflow: hidden; text-overflow: ellipsis; }
.sn-brand-min { font-size: .8rem; color: var(--text-muted); line-height: 1.3; max-width: 132px; }
.sn-brand.is-soon { opacity: .6; }

/* ---- Snoonu "Offers & Events" landscape banners -------------------------- */
.sn-offers { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.sn-offers::-webkit-scrollbar { display: none; }
.sn-offer {
  flex: 0 0 auto; width: 300px; height: 150px; border-radius: 18px; padding: 20px 22px;
  display: flex; flex-direction: column; justify-content: center; color: #fff; position: relative; overflow: hidden;
}
.sn-offer-deco { position: absolute; right: -6px; bottom: -10px; font-size: 92px; opacity: .18; }
.sn-offer-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; line-height: 1.1; position: relative; z-index: 1; }
.sn-offer-sub { font-size: .85rem; opacity: .9; margin-top: 6px; position: relative; z-index: 1; max-width: 220px; }

/* ---- Snoonu pills (Show more / Back to top) ------------------------------ */
.sn-pill-row { display: flex; justify-content: center; margin-top: 18px; }
.sn-pill {
  display: inline-block; background: var(--bg-elev); border: 1px solid var(--border);
  color: var(--text-main); font-weight: 700; font-size: .9rem; padding: 12px 40px; border-radius: 999px;
}
.sn-pill:hover { border-color: var(--primary); color: var(--primary); }
.sn-backtop {
  display: block; text-align: center; margin: 30px -16px 0; padding: 18px;
  background: var(--bg-elev); color: var(--text-main); font-weight: 700; border-radius: 14px;
}
.sn-backtop:hover { color: var(--primary); }

@media (max-width: 560px) {
  .sn-brand, .sn-brand-tile { width: 92px; }
  .sn-brand-tile { height: 92px; border-radius: 22px; }
  .sn-offer { width: 260px; height: 130px; }
}

/* ---- Snoonu homepage polish pass ----------------------------------------- */
.sn-hero p { max-width: 520px; margin-inline: auto; }
.sn-section { margin-top: 28px; }
.sn-section:first-of-type { margin-top: 18px; }
/* Even, comfortable rhythm + keep the search button from shrinking text. */
.sn-search .btn { flex: 0 0 auto; }
/* Active-order banner shouldn't be a tall 210px block at the very top. */
.sn-home .ag-active .active-stack { height: auto; }
.sn-home .ag-active .active-row { min-height: 76px; padding: 12px 18px; }
/* Brand tiles: tidy name truncation + consistent baseline. */
.sn-brand-name { line-height: 1.2; }

/* ============================================================================
   Snoonu TOP — big category grid (left) + two stacked side banners (right)
   ========================================================================== */
.sn-top { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }

.sn-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sn-tile {
  position: relative; background: #F4F5F6; border: 1px solid var(--border); border-radius: 20px;
  min-height: 120px; padding: 16px 10px 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sn-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(32,55,59,.10); }
.sn-tile-ic { font-size: 40px; line-height: 1; }
.sn-tile-name { font-size: .9rem; font-weight: 700; color: var(--text-main); }
.sn-tile.is-soon { opacity: .65; }
.sn-tile-soon { position: absolute; top: 8px; right: 8px; font-size: .56rem; font-weight: 700; background: var(--yellow); color: var(--yellow-ink); padding: 1px 6px; border-radius: 999px; }

.sn-side { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sn-side-banner {
  position: relative; overflow: hidden; border-radius: 20px; padding: 20px 22px; min-height: 120px;
  display: flex; flex-direction: column; justify-content: center; color: #fff;
}
.sn-side-1 { background: linear-gradient(120deg, var(--teal), #2E5258); }
.sn-side-2 { background: linear-gradient(120deg, #E5484D, #C0392B); }
.sn-side-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.sn-side-banner h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; line-height: 1.12; margin: 6px 0 8px; position: relative; z-index: 1; }
.sn-side-cta { font-weight: 700; font-size: .9rem; }
.sn-side-art { position: absolute; right: -8px; bottom: -10px; font-size: 76px; opacity: .22; }

/* "For You" black pill divider */
.sn-foryou-row { display: flex; justify-content: center; margin: 26px 0 4px; }
.sn-foryou { background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; padding: 12px 34px; border-radius: 999px; box-shadow: 0 6px 18px rgba(22,58,56,.2); }

@media (min-width: 760px) {
  .sn-top { grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr); align-items: stretch; }
  .sn-cat-grid { grid-template-columns: repeat(5, 1fr); }
  .sn-side { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sn-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .sn-side { grid-template-columns: 1fr; }
}

/* ============================================================================
   Unified shop tile (used on the home Favourite Shops + the store listing).
   ========================================================================== */
.shop-tile { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; width: 150px; }
.shop-tile-ic {
  position: relative; width: 112px; height: 112px; border-radius: 26px;
  background: var(--bg-elev) center/cover no-repeat; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(32,55,59,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.shop-tile:hover .shop-tile-ic { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(32,55,59,.14); }
.shop-tile-ic b { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.shop-tile-dot { position: absolute; top: 9px; right: 9px; width: 12px; height: 12px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 3px #fff; }
.shop-tile-dot.is-closed { background: var(--text-hint); }
.shop-tile-name { font-weight: 700; font-size: .9rem; max-width: 146px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-tile-line { font-size: .76rem; color: var(--text-muted); line-height: 1.3; max-width: 150px; }
.shop-tile.is-soon { opacity: .6; }

/* Home "Favourite Shops": horizontal scroll rail of tiles. */
.shop-tiles { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.shop-tiles::-webkit-scrollbar { display: none; }
.shop-tiles .shop-tile { flex: 0 0 auto; }

/* Sponsored "Ad" badge on shop tiles. */
.sn-brand-ad { position: absolute; top: 8px; left: 8px; font-size: .56rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; background: var(--yellow, #FFC64F); color: var(--teal, #20373B); padding: 2px 6px; border-radius: 6px; }

/* Promo cards: moonstone variant + 3-up layout. */
.sn-promo-moon { background: linear-gradient(120deg, #CFE6EC, #EAF4F7); }
@media (min-width: 760px) { .sn-promos-3 { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================================
   FABULOUS-STYLE HOMEPAGE  (fab-*)  — added for the CyraWash redesign
   ============================================================================ */

/* Announcement strip (full-bleed coral bar) */
.fab-announce{
  background:var(--primary); color:#fff; font-family:var(--font-head);
  font-size:.74rem; letter-spacing:.06em; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:9px 40px; position:relative; text-transform:uppercase;
  margin:0 calc(-1 * var(--pad-x)) ; text-align:center;
}
.fab-announce b{ color:#FFE3B0; font-weight:700; }
.fab-announce-x{ position:absolute; right:16px; top:50%; transform:translateY(-50%);
  color:#fff; opacity:.8; font-size:1rem; line-height:1; background:none; }
.fab-announce-x:hover{ opacity:1; }

/* HERO ---------------------------------------------------------------------- */
.fab-hero{
  background:linear-gradient(180deg,#DCF1FA 0%, #BFE6F4 100%);
  border-radius:0;
  /* Full-bleed: break out of the centered container so no white shows at the sides. */
  width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  padding:28px var(--pad-x) 34px; position:relative; overflow:hidden;
}
.fab-hero-in{ max-width:var(--content-max); margin-inline:auto; }
.fab-hero-in{
  max-width:var(--content-max); margin-inline:auto;
  display:grid; grid-template-columns:1fr; gap:14px; align-items:center;
}
.fab-hero-art{ display:flex; align-items:flex-end; justify-content:center; min-height:200px; }
.fab-hero-art svg{ width:100%; max-width:420px; height:auto; }
.fab-hero-copy{ text-align:center; }
.fab-hero-kicker{ color:#9A5B57; font-size:1rem; font-weight:500; }
.fab-hero h1{
  font-family:var(--font-head); font-weight:800; color:#2F2A28;
  font-size:2.1rem; line-height:1.05; margin:6px 0 4px; text-transform:uppercase;
  letter-spacing:-.01em;
}
.fab-hero-sub{ font-size:1.3rem; color:#3a3330; font-weight:500; margin-bottom:16px; }
.fab-hero-cta{
  display:inline-flex; background:var(--primary); color:#fff; font-family:var(--font-head);
  font-weight:700; letter-spacing:.06em; text-transform:uppercase; font-size:.86rem;
  padding:14px 30px; border-radius:var(--radius-pill);
  box-shadow:0 10px 22px rgba(31, 75, 93,.35);
}
.fab-hero-cta:hover{ background:var(--primary-dark); }
.fab-hero-text{ color:#7c6f6a; font-size:.92rem; line-height:1.5; max-width:420px; margin:14px auto 0; }
.fab-hero-dots{ display:flex; gap:7px; justify-content:center; margin-top:16px; }
.fab-hero-dots i{ width:9px; height:9px; border-radius:50%; background:#C98C86; display:block; opacity:.5; }
.fab-hero-dots i.on{ opacity:1; background:#B05A52; }

@media(min-width:840px){
  .fab-hero{ padding:46px var(--pad-x); }
  .fab-hero-in{ grid-template-columns:1.05fr 1fr; gap:30px; }
  .fab-hero-copy{ text-align:left; }
  .fab-hero h1{ font-size:3.1rem; }
  .fab-hero-text{ margin-inline:0; }
  .fab-hero-dots{ justify-content:flex-start; }
  .fab-hero-art{ order:-1; }
}

/* SECTION HEADINGS (kicker + bold uppercase + coral underline) -------------- */
.fab-sec{ padding:40px 0 8px; }
.fab-head{ text-align:center; margin-bottom:30px; }
.fab-head .k{ display:block; color:var(--primary); font-size:.92rem; font-weight:500; margin-bottom:2px; }
.fab-head h2{
  font-family:var(--font-head); font-weight:800; color:#2F2A28;
  text-transform:uppercase; font-size:1.7rem; letter-spacing:.01em; display:inline-block;
}
.fab-head h2::after{
  content:""; display:block; width:64px; height:3px; border-radius:3px;
  background:var(--primary); margin:8px auto 0;
}

/* CATEGORY CIRCLES ---------------------------------------------------------- */
.fab-circles{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
}
.fab-circle{ width:128px; text-align:center; }
.fab-circle-ic{
  width:108px; height:108px; border-radius:50%; margin:0 auto 10px;
  display:flex; align-items:center; justify-content:center; font-size:2.6rem;
  transition:transform .18s ease, box-shadow .18s ease;
}
.fab-circle:hover .fab-circle-ic{ transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.fab-circle-name{ font-family:var(--font-head); font-weight:600; color:#3a3330; font-size:1.02rem; }
.fab-c-blue{ background:#CFE3F4; } .fab-c-green{ background:#CFE8CF; }
.fab-c-coral{ background:#4FB8D8; } .fab-c-pink{ background:#F6D2D8; }
.fab-c-purple{ background:#D6CFEF; }

/* PACKAGE / SHOP CARDS ------------------------------------------------------ */
.fab-grid{
  display:grid; grid-template-columns:1fr; gap:18px; max-width:var(--content-max); margin-inline:auto;
}
@media(min-width:680px){ .fab-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:980px){ .fab-grid{ grid-template-columns:repeat(3,1fr); } }
.fab-card{
  background:#fff; border:1px solid #CDE9F4; border-radius:14px; overflow:hidden;
  display:flex; flex-direction:column; box-shadow:0 2px 10px rgba(20, 50, 70,.06);
  transition:transform .18s ease, box-shadow .18s ease; position:relative;
}
.fab-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-hover); }
.fab-card-img{
  height:190px; background:#F3ECE9 center/cover no-repeat;
  display:flex; align-items:center; justify-content:center; font-size:3.4rem;
}
.fab-card-body{ padding:14px 16px 18px; text-align:center; }
.fab-card-stars{ color:#E8C24A; font-size:.85rem; letter-spacing:2px; margin-bottom:4px; }
.fab-card-name{ font-family:var(--font-head); font-weight:600; color:#33302E; font-size:1.05rem; }
.fab-card-meta{ color:var(--text-muted); font-size:.85rem; margin-top:3px; }
.fab-card-price{ margin-top:6px; font-family:var(--font-head); font-weight:700; color:#33302E; }
.fab-card-price s{ color:#bbb; font-weight:400; margin-right:6px; }
.fab-badge{
  position:absolute; top:12px; left:12px; z-index:2; font-family:var(--font-head);
  font-size:.7rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding:4px 10px; border-radius:999px; color:#fff;
}
.fab-badge.sale{ background:#5FB97A; } .fab-badge.soldout{ background:var(--primary); }
.fab-viewall{ text-align:center; margin-top:26px; }
.fab-viewall a{
  display:inline-flex; background:var(--primary); color:#fff; font-family:var(--font-head);
  font-weight:700; letter-spacing:.05em; text-transform:uppercase; font-size:.82rem;
  padding:12px 30px; border-radius:var(--radius-pill); box-shadow:0 8px 18px rgba(31, 75, 93,.3);
}
.fab-viewall a:hover{ background:var(--primary-dark); }

/* ALL ABOUT (split) --------------------------------------------------------- */
.fab-about{
  display:grid; grid-template-columns:1fr; gap:24px; align-items:center;
  max-width:var(--content-max); margin:18px auto 0; padding:30px 0;
}
@media(min-width:840px){ .fab-about{ grid-template-columns:1fr 1fr; gap:40px; } }
.fab-about-art{
  background:linear-gradient(160deg,#F6E7C9,#F4D4CE); border-radius:14px; min-height:240px;
  display:flex; align-items:center; justify-content:center; font-size:5rem;
}
.fab-about-art svg{ width:100%; height:auto; max-width:360px; }
.fab-about h2{
  font-family:var(--font-head); font-weight:800; color:#2F2A28; text-transform:uppercase;
  font-size:1.7rem; margin:2px 0 0;
}
.fab-about .k{ color:var(--primary); font-weight:500; }
.fab-about h2::after{ content:""; display:block; width:64px; height:3px; background:var(--primary); border-radius:3px; margin:8px 0 14px; }
.fab-about p{ color:var(--text-muted); line-height:1.6; margin-bottom:14px; }
.fab-about ul{ list-style:none; display:grid; grid-template-columns:1fr; gap:10px 24px; margin:0 0 18px; }
@media(min-width:560px){ .fab-about ul{ grid-template-columns:1fr 1fr; } }
.fab-about li{ display:flex; align-items:center; gap:10px; color:#4a4340; font-weight:500; }
.fab-about li::before{ content:""; width:9px; height:9px; border-radius:50%; background:var(--primary); flex:0 0 auto; }

/* Photo support for the Fabulous homepage (real images) */
.fab-hero-art img{ width:100%; max-width:500px; height:auto; border-radius:10px; display:block; }
.fab-circle-ic{ overflow:hidden; }
.fab-circle-ic img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
/* Line-icon variant: keep the pastel circle, inset the gradient line icon. */
.fab-circle-ic.fab-circle-line{ padding:26px; }
.fab-circle-ic.fab-circle-line img{ object-fit:contain; border-radius:0; }
.fab-about-art{ padding:0; overflow:hidden; }
.fab-about-art img{ width:100%; height:100%; max-width:none; object-fit:cover; border-radius:14px; display:block; min-height:240px; }

/* Discount banner placed under a section (rounded band, not full-bleed). */
.fab-announce-band{ margin:26px 0; border-radius:14px; padding-left:18px; padding-right:40px; }

/* Two side-by-side promo banners (left + right) */
.fab-promos{ display:grid; grid-template-columns:1fr; gap:16px; max-width:var(--content-max); margin:28px auto 0; }
@media(min-width:760px){ .fab-promos{ grid-template-columns:1fr 1fr; } }
.fab-promo{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-radius:16px; padding:22px 24px; color:#fff; overflow:hidden; position:relative;
  box-shadow:var(--shadow-card); transition:transform .18s ease, box-shadow .18s ease;
}
.fab-promo:hover{ transform:translateY(-2px); box-shadow:var(--shadow-hover); }
/* Theme-compliant warm gradients (coral + soft rose). */
.fab-promo-left{ background:linear-gradient(120deg,#1F4B5D,#15323F); }
.fab-promo-right{ background:linear-gradient(120deg,#2E94B5,#1F6E86); }
.fab-promo-kicker{ display:inline-block; font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; opacity:.9; background:rgba(255,255,255,.18); padding:4px 10px; border-radius:999px; margin-bottom:8px; }
.fab-promo h3{ font-family:var(--font-head); font-weight:800; font-size:1.25rem; line-height:1.15; margin:0 0 8px; color:#fff; }
.fab-promo-cta{ font-family:var(--font-head); font-weight:600; font-size:.9rem; }
.fab-promo-img{ flex:0 0 auto; width:104px; height:104px; object-fit:cover; border-radius:14px; box-shadow:0 6px 16px rgba(0,0,0,.22); }
@media(max-width:480px){ .fab-promo-img{ width:78px; height:78px; } }

/* Hero rotating slides */
.fab-hero-slide{ display:none; }
.fab-hero-slide.is-on{ display:block; animation:fabFade .4s ease; }
@keyframes fabFade{ from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.fab-hero-dots i{ cursor:pointer; }
