/* ==========================================================================
   Bingo Daubers — Hub homepage
   Loaded only on the front page (body.hub-page), after style.css/header.css.
   ========================================================================== */

body.hub-page {
  background: #FEFEFE;
  color: var(--bd-body);
}
body.hub-page .site-content { padding: 0; }

.hub {
  padding: 24px 0 40px;
}
.hub section { margin: 0 0 24px; }

/* Shared card + section chrome ------------------------------------------- */
.hub-card {
  background: var(--bd-card);
  border: 1px solid var(--bd-line);
  border-radius: var(--bd-radius);
  box-shadow: var(--bd-shadow);
}
.hub-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}
.hub-head h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--bd-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.hub-head h2 .emoji { font-size: 1.1rem; }
.hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-pink);
  text-decoration: none;
  white-space: nowrap;
}
.hub-link:hover,
.hub-link:focus-visible { color: var(--bd-pink-hover); text-decoration: underline; }
.hub-link svg { transition: transform 0.15s ease; }
.hub-link:hover svg { transform: translateX(2px); }

.hub a:focus-visible,
.hub button:focus-visible,
.hub input:focus-visible,
.hub summary:focus-visible {
  outline: 2px solid var(--bd-pink);
  outline-offset: 2px;
}

/* ==========================================================================
   1. Search bar
   ========================================================================== */
.dauber-search {
  padding: 20px;
  margin-bottom: 24px;
}
.dauber-search .hub-h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bd-ink);
  margin: 0 0 10px;
}
.hub-intro { margin: 0 0 16px; }
.hub-intro p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--bd-muted);
  margin: 0 0 8px;
  max-width: 72ch;
}
.hub-intro p:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .hub-intro { column-count: 2; column-gap: 40px; }
  .hub-intro p { max-width: none; break-inside: avoid-column; }
}
.search-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

/* Store picker */
.loc-picker { position: relative; }
.loc-picker > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--bd-radius-sm);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.loc-picker > summary::-webkit-details-marker { display: none; }
.loc-picker > summary:hover { background: var(--bd-bg); }
.loc-pin { color: var(--bd-pink); flex-shrink: 0; }
.loc-labels { display: flex; flex-direction: column; line-height: 1.25; }
.loc-labels .loc-small { font-size: 0.75rem; color: var(--bd-muted); }
.loc-labels .loc-value {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bd-ink);
  white-space: nowrap;
}
.loc-picker[open] .loc-value svg { transform: rotate(180deg); }
.loc-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  min-width: 240px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--bd-line);
  border-radius: 14px;
  box-shadow: var(--bd-shadow-lg);
}
.loc-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--bd-radius-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bd-body);
  text-decoration: none;
}
.loc-menu a:hover,
.loc-menu a:focus-visible { background: var(--bd-pink-soft); color: var(--bd-pink); }

/* Input */
.search-form-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.search-field-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #DCDDE3;
  border-radius: 14px;
  padding: 6px 8px 6px 18px;
  min-height: 60px;
}
.search-field-wrap:focus-within { border-color: var(--bd-pink); box-shadow: 0 0 0 3px var(--bd-pink-soft); }
.search-field-wrap .search-icon { color: var(--bd-muted); flex-shrink: 0; }
.search-field-wrap input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  color: var(--bd-ink);
  padding: 10px 0;
}
.search-field-wrap input[type="search"]::placeholder { color: #9AA0AA; }
.search-divider {
  width: 1px;
  align-self: stretch;
  margin: 10px 0;
  background: var(--bd-line);
  flex-shrink: 0;
}
.near-me-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  border-radius: var(--bd-radius-xs);
  color: var(--bd-muted);
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.near-me-btn:hover,
.near-me-btn:focus-visible { background: var(--bd-pink-soft); color: var(--bd-pink); }
.search-submit-hub {
  min-height: 60px;
  padding: 0 44px;
  border: 0;
  border-radius: 14px;
  background: var(--bd-pink);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.search-submit-hub:hover,
.search-submit-hub:focus-visible { background: var(--bd-pink-hover); }

/* Bottom row: chips + trust */
.search-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-left: 10px;
}
.popular-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.popular-chips .chips-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-ink);
  margin-right: 2px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid #F3B9C8;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bd-pink);
  background: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.chip:hover,
.chip:focus-visible { background: var(--bd-pink-soft); border-color: var(--bd-pink); }
.search-trust {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--bd-muted);
}
.search-trust svg { flex-shrink: 0; }

/* ==========================================================================
   2. Main two-column grid
   ========================================================================== */
.hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.hub-col { min-width: 0; }
.hub-col > * + * { margin-top: 24px; }
.panel-card { padding: 20px; }
.panel-card .hub-head { margin-bottom: 16px; }
.hub-col section { margin-bottom: 0; }
.rail-card > .strip-note { display: block; margin: 10px 0 0; }

/* ==========================================================================
   3. Featured hero
   ========================================================================== */
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
}
.hero-media {
  position: relative;
  min-height: 320px;
  background: #EEF0F4;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: var(--bd-radius-xs);
  background: var(--bd-pink);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.hero-dots span.is-active { background: #fff; }
.hero-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-body h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bd-ink);
  margin: 0 0 14px;
}
.hero-body h2 a { color: inherit; text-decoration: none; }
.hero-body h2 a:hover { color: var(--bd-pink); }
.hero-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bd-body);
  margin: 0 0 22px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.byline img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.byline-text { display: flex; flex-direction: column; line-height: 1.35; }
.byline-name { font-size: 0.8125rem; font-weight: 600; color: var(--bd-ink); }
.byline-meta { font-size: 0.75rem; color: var(--bd-muted); }

/* ==========================================================================
   4. Article cards
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.hub-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--bd-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--bd-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hub-post:hover { transform: translateY(-2px); box-shadow: var(--bd-shadow-lg); }
.hub-post-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #EEF0F4;
  overflow: hidden;
}
.hub-post-media img { width: 100%; height: 100%; object-fit: cover; }
.hub-post-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--bd-pink);
}
.kicker.is-stores  { color: #16A34A; }
.kicker.is-buying  { color: #7C3AED; }
.kicker.is-tips    { color: #EA580C; }
.kicker.is-safety  { color: #DC2626; }
.kicker.is-diy     { color: #2563EB; }
.kicker.is-basics  { color: #0891B2; }
.hub-post h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.32;
  font-weight: 600;
  color: var(--bd-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.hub-post h3 a { color: inherit; text-decoration: none; }
.hub-post h3 a:hover { color: var(--bd-pink); }
.hub-post p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--bd-muted);
  margin: 0 0 14px;
}
.hub-post-meta {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--bd-line);
  font-size: 0.75rem;
  color: var(--bd-muted);
}

/* ==========================================================================
   5. Right rail cards
   ========================================================================== */
.rail-card { padding: 20px; }
.rail-card .hub-head { margin-bottom: 14px; }
.rail-card .hub-head h2 { font-size: 1.125rem; }

/* Trending list */
.trending-list { list-style: none; margin: 0; padding: 0; counter-reset: trend; }
.trending-list li {
  display: grid;
  grid-template-columns: 26px 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.trending-list li + li { border-top: 1px solid var(--bd-line); }
.trend-num {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #D6D8DE;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bd-ink);
}
.trending-list img {
  width: 76px;
  height: 52px;
  border-radius: var(--bd-radius-xs);
  object-fit: cover;
  background: #EEF0F4;
}
.trend-text a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--bd-ink);
  text-decoration: none;
}
.trend-text a:hover { color: var(--bd-pink); }
.trend-text span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--bd-muted);
}

/* Product / dauber type strip */
.strip-wrap { position: relative; }
.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px;
  -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: #DCDDE3; border-radius: 999px; }
.strip-item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--bd-line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.strip-item:hover,
.strip-item:focus-visible { border-color: var(--bd-pink); box-shadow: var(--bd-shadow); }
.strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--bd-radius-xs);
  background: #EEF0F4;
}
.strip-item h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--bd-ink);
  margin: 0;
}
.strip-price { font-size: 0.875rem; font-weight: 700; color: var(--bd-ink); }
.strip-note { font-size: 0.75rem; color: var(--bd-muted); line-height: 1.35; }
.pick-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bd-pink);
  background: rgba(229, 19, 74, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
}
.strip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bd-line);
  background: #fff;
  box-shadow: var(--bd-shadow);
  color: var(--bd-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.strip-nav:hover { color: var(--bd-pink); border-color: var(--bd-pink); }
.strip-nav[hidden] { display: none; }
.strip-prev { left: -14px; }
.strip-next { right: -14px; }

/* Price-by-store list */
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.price-list li + li { border-top: 1px solid var(--bd-line); }
.price-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 4px;
  border: 1px solid var(--bd-line);
  border-radius: var(--bd-radius-xs);
  line-height: 1.15;
}
.price-chip .from {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bd-pink);
}
.price-chip .amount { font-size: 0.9375rem; font-weight: 700; color: var(--bd-ink); }
.price-text a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bd-ink);
  text-decoration: none;
  display: block;
  line-height: 1.35;
}
.price-text a:hover { color: var(--bd-pink); }
.price-text span {
  display: block;
  margin-top: 3px;
  font-size: 0.75rem;
  color: var(--bd-muted);
  line-height: 1.4;
}
.badge-soft {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bd-pink-soft);
  color: var(--bd-pink);
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-green { background: #E8F7EC; color: #1E9E4A; }

/* FAQ quote cards */
.faq-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.faq-quote {
  padding: 14px;
  border-radius: 12px;
  background: var(--bd-bg);
  border: 1px solid var(--bd-line);
}
.faq-quote-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.faq-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bd-pink-soft);
  color: var(--bd-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-quote h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bd-ink);
  margin: 0;
}
.faq-quote p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--bd-body);
  margin: 0 0 10px;
}
.faq-quote .hub-link { font-size: 0.75rem; }

/* ==========================================================================
   6. Category tiles
   ========================================================================== */
.tile-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.tile {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--bd-line);
  border-radius: var(--bd-radius);
  box-shadow: var(--bd-shadow);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tile:hover { transform: translateY(-2px); box-shadow: var(--bd-shadow-lg); }
.tile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.tile-icon.is-pink   { background: #EC4899; }
.tile-icon.is-blue   { background: #3B82F6; }
.tile-icon.is-green  { background: #22C55E; }
.tile-icon.is-purple { background: #A855F7; }
.tile h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bd-ink);
  margin: 0 0 6px;
}
.tile p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--bd-muted);
  margin: 0 0 10px;
}
.tile .hub-link { font-size: 0.8125rem; }

/* ==========================================================================
   7. Store rows + guide rows
   ========================================================================== */
.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}
.list-card { padding: 20px; }
.list-plain { list-style: none; margin: 0; padding: 0; }

.store-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}
.store-row + .store-row { border-top: 1px solid var(--bd-line); }
.store-row img {
  width: 116px;
  height: 76px;
  border-radius: var(--bd-radius-xs);
  object-fit: cover;
  background: #EEF0F4;
}
.store-row h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bd-ink);
  margin: 0 0 4px;
}
.store-row h3 a { color: inherit; text-decoration: none; }
.store-row h3 a:hover { color: var(--bd-pink); }
.store-row .store-aisle {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--bd-muted);
  margin: 0 0 6px;
}
.store-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.store-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  gap: 8px;
  text-align: right;
  padding: 2px 0;
}
.store-price { font-size: 0.875rem; font-weight: 700; color: var(--bd-ink); white-space: nowrap; }

.guide-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
}
.guide-row + .guide-row { border-top: 1px solid var(--bd-line); }
.guide-row img {
  width: 116px;
  height: 76px;
  border-radius: var(--bd-radius-xs);
  object-fit: cover;
  background: #EEF0F4;
}
.guide-row h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bd-ink);
  margin: 0 0 5px;
  line-height: 1.35;
}
.guide-row h3 a { color: inherit; text-decoration: none; }
.guide-row h3 a:hover { color: var(--bd-pink); }
.guide-row p { font-size: 0.8125rem; line-height: 1.5; color: var(--bd-muted); margin: 0 0 6px; }
.guide-row .row-meta { font-size: 0.75rem; color: var(--bd-muted); }

.card-foot {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--bd-line);
}

/* ==========================================================================
   8. Wide article strip (More articles)
   ========================================================================== */
.wide-strip {
  grid-auto-columns: minmax(210px, 1fr);
}
.wide-strip .hub-post { scroll-snap-align: start; }

/* ==========================================================================
   9. CTA row
   ========================================================================== */
.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.cta-block {
  border-radius: var(--bd-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: center;
  padding: 26px;
}
.cta-pink {
  background: linear-gradient(135deg, #F2497E 0%, #E5134A 100%);
  color: #fff;
}
.cta-pink h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #fff;
}
.cta-pink p { font-size: 0.875rem; line-height: 1.55; margin: 0 0 18px; color: rgba(255, 255, 255, 0.92); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--bd-radius-sm);
  background: #fff;
  color: var(--bd-pink);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-white:hover,
.btn-white:focus-visible { background: #FFEAF0; color: var(--bd-pink-hover); }
.cta-media {
  position: relative;
}
.cta-media img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.2);
}
.cta-media .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bd-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bd-shadow-lg);
  pointer-events: none;
}

.cta-white {
  background: #fff;
  border: 1px solid var(--bd-line);
  box-shadow: var(--bd-shadow);
}
.cta-white h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--bd-ink);
  margin: 0 0 10px;
}
.cta-white p { font-size: 0.875rem; line-height: 1.55; color: var(--bd-body); margin: 0 0 16px; }
.cta-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--bd-radius-sm);
  background: var(--bd-ink);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn-dark:hover,
.btn-dark:focus-visible { background: #2A2C36; color: #fff; }

/* Newsletter */
.cta-news {
  display: block;
  background: #fff;
  border: 1px solid var(--bd-line);
  box-shadow: var(--bd-shadow);
  padding: 26px;
  border-radius: var(--bd-radius);
}
.cta-news h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bd-ink);
  margin: 0 0 10px;
}
.cta-news p { font-size: 0.875rem; line-height: 1.55; color: var(--bd-body); margin: 0 0 16px; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form label { flex: 1 1 200px; min-width: 0; }
.news-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #DCDDE3;
  border-radius: var(--bd-radius-sm);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--bd-ink);
  background: #fff;
}
.news-form input[type="email"]:focus-visible {
  outline: 2px solid var(--bd-pink);
  outline-offset: 1px;
  border-color: var(--bd-pink);
}
.news-form .btn-pink { min-height: 46px; }
.news-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: var(--bd-muted);
}
.news-hint svg { flex-shrink: 0; }
.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bd-body);
  margin-bottom: 5px;
}

/* ==========================================================================
   10. Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .hub-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-news { grid-column: 1 / -1; }
  .strip-prev { left: 2px; }
  .strip-next { right: 2px; }
}

@media (max-width: 900px) {
  .search-top { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .loc-picker > summary { padding-left: 0; }
  .hero-card { grid-template-columns: minmax(0, 1fr); }
  .hero-media { min-height: 220px; aspect-ratio: 16 / 9; }
  .hero-body { padding: 24px; }
  .hero-body h2 { font-size: 1.625rem; }
  .split-row { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .hub { padding: 16px 0 32px; }
  .hub section { margin-bottom: 16px; }
  .hub-col > * + * { margin-top: 16px; }
  .dauber-search { padding: 16px; }
  .search-form-hub { grid-template-columns: minmax(0, 1fr); }
  .search-submit-hub { width: 100%; min-height: 52px; }
  .search-field-wrap { min-height: 52px; padding-left: 14px; }
  .search-field-wrap input[type="search"] { font-size: 1rem; }
  .search-bottom { padding-left: 0; }
  .search-trust { display: none; }
  .news-grid,
  .tile-row,
  .cta-row,
  .faq-quotes { grid-template-columns: minmax(0, 1fr); }
  .cta-block { grid-template-columns: minmax(0, 1fr); padding: 20px; }
  .cta-media { order: -1; }
  .cta-news { padding: 20px; }
  .hub-head h2 { font-size: 1.1875rem; }
  .store-row { grid-template-columns: 88px minmax(0, 1fr); }
  .store-row img { width: 88px; height: 64px; }
  .store-meta { grid-column: 2; flex-direction: row; align-items: center; justify-content: flex-start; }
  .guide-row { grid-template-columns: 88px minmax(0, 1fr); }
  .guide-row img { width: 88px; height: 64px; }
  .trending-list li { grid-template-columns: 18px 64px minmax(0, 1fr); gap: 10px; }
  .trending-list img { width: 64px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .hub *,
  .hub *::before,
  .hub *::after {
    transition: none !important;
    animation: none !important;
  }
  .strip { scroll-behavior: auto; }
}
