/**
 * final-concept — page-level components
 * Loaded after layout.css on content pages.
 */

/* Section scaffolding reused across pages */
.page-section { padding: 28px 0; scroll-margin-top: calc(var(--header-h, 72px) + 16px); }
.page-section + .page-section { border-top: 1px solid var(--border); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.section-head h2 { margin: 0; font-size: clamp(20px, 3vw, 26px); font-weight: 800; letter-spacing: -0.02em; }
.section-head p { margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.section-head__link { font-size: 13px; font-weight: 800; color: var(--brand-blue); white-space: nowrap; }
.section-head__link:hover { text-decoration: underline; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 6px; }

/* Lede paragraph */
.lede { font-size: 17px; color: var(--ink-soft); max-width: 70ch; line-height: 1.6; }

/* Pill chips row (filters / categories) */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 700;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: var(--surface); color: var(--ink-soft);
}
.chip:hover, .chip.is-active { background: var(--brand-blue-light); color: var(--brand-blue-dark); border-color: var(--brand-blue); }
.chip.is-active { box-shadow: inset 0 0 0 1px var(--brand-blue); }
.chip__swatch { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #fff; box-shadow: var(--shadow); }

#family-results { scroll-margin-top: calc(var(--site-chrome-h, 72px) + 12px); }

/* ─── Colour swatch grid ─── */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.swatch-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.swatch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); }
.swatch-card__chip { height: 96px; background: var(--h, #ccc); }
.swatch-card__info { padding: 10px 12px; }
.swatch-card__name { display: block; font-size: 14px; font-weight: 800; line-height: 1.2; }
.swatch-card__code { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.swatch-card__tag { display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--brand-blue); }

/* ─── Feature / category cards ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-grid--home {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .feature-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 479px) {
  .feature-grid--home {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  display: flex; flex-direction: column;
  padding: 22px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); border-top: 4px solid var(--accent, var(--brand-blue));
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card h3 { margin: 0 0 6px; font-size: 18px; font-weight: 800; }
.feature-card p { margin: 0 0 14px; font-size: 14px; color: var(--muted); flex: 1; }
.feature-card__cta { font-size: 13px; font-weight: 800; color: var(--brand-blue); }
.feature-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.feature-card__price-alt {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

/* In-store exclusive stand-in for online prices */
.price-alt {
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  background: var(--brand-blue-light, #e8f3fc);
  border-left: 3px solid var(--brand-blue, #0072ce);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ─── Product family cards (with sheen chips) ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.product-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-card__top { padding: 18px 18px 14px; }
.product-card__band { height: 8px; background: var(--band, var(--ai-gradient)); }
.product-card__img {
  display: flex; align-items: center; justify-content: center;
  height: 140px; padding: 12px 16px; background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.product-card__img img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
}
.product-card__name { margin: 0 0 2px; font-size: 17px; font-weight: 800; }
.product-card__brand { font-size: 12px; color: var(--muted); font-weight: 700; }
.product-card__desc { margin: 10px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.product-card__sheens { display: flex; flex-wrap: wrap; gap: 5px; padding: 0 18px 14px; }
.sheen-tag {
  font-size: 11px; font-weight: 700; padding: 4px 9px;
  border-radius: var(--radius-pill); background: var(--surface-alt);
  border: 1px solid var(--border); color: var(--ink-soft);
}
.product-card__foot {
  margin-top: auto; padding: 12px 18px;
  border-top: 1px solid var(--border); background: var(--surface-alt);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.product-card__use { font-size: 12px; color: var(--muted); font-weight: 600; }
.product-card__link { font-size: 13px; font-weight: 800; color: var(--brand-blue); white-space: nowrap; }

/* ─── Tips / articles ─── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.article-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-card__media { height: 140px; background: var(--media, var(--hero-bg)); position: relative; }
.article-card__media::after { content: ''; position: absolute; inset: 0; background: var(--hero-mesh); opacity: 0.6; }
.article-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.article-card__cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-red); margin-bottom: 6px; }
.article-card__title { margin: 0 0 8px; font-size: 17px; font-weight: 800; line-height: 1.25; }
.article-card__excerpt { margin: 0 0 14px; font-size: 13px; color: var(--muted); flex: 1; }
.article-card__meta { font-size: 12px; color: var(--muted); font-weight: 600; }
.badge-ai {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; padding: 3px 9px;
  border-radius: var(--radius-pill); background: var(--brand-blue-light); color: var(--brand-blue-dark);
}

/* ─── FAQ accordion ─── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  padding: 16px 18px; font-size: 15px; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--brand-blue); font-weight: 400; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__body { padding: 0 18px 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ─── Inspiration / scheme cards ─── */
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.scheme-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.scheme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.scheme-card__swatches { display: flex; height: 110px; }
.scheme-card__swatches span { flex: 1; }
.scheme-card__swatches span:first-child { flex: 2.2; }
.scheme-card__body { padding: 14px 16px 16px; }
.scheme-card__title { margin: 0 0 4px; font-size: 16px; font-weight: 800; }
.scheme-card__sub { font-size: 12px; color: var(--muted); font-weight: 600; }
.scheme-card__codes { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.scheme-card__codes span { font-size: 11px; font-weight: 700; color: var(--ink-soft); background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 3px 8px; }

/* ─── Search box (Ask-style) ─── */
.colour-search {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 22px;
}
.colour-search__row { display: flex; gap: 10px; flex-wrap: wrap; }
.colour-search__row input {
  flex: 1; min-width: 200px; padding: 14px 16px; font-size: 16px;
  border: 2px solid var(--border); border-radius: 12px; outline: none;
}
.colour-search__row input:focus { border-color: var(--brand-blue); }
.colour-search__row button {
  padding: 14px 24px; font-size: 15px; font-weight: 800; color: #fff;
  background: var(--ai-gradient); border-radius: 12px;
}
.colour-search__hint { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

/* ─── Contact form ─── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: 12px 14px; font-size: 15px; font-family: inherit;
  border: 2px solid var(--border); border-radius: 10px; outline: none; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand-blue); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--muted); }
.recaptcha-stub {
  display: flex; align-items: center; gap: 10px; padding: 14px;
  background: var(--surface-alt); border: 1px dashed var(--border); border-radius: 10px;
  font-size: 13px; color: var(--muted);
}
.contact-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.contact-aside h3 { margin: 0 0 12px; font-size: 18px; }
.contact-aside dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; font-size: 14px; }
.contact-aside dt { font-weight: 800; color: var(--muted); }
.map-embed { margin-top: 16px; height: 200px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, #dde7ef, #eef3f7); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; text-align: center; }
.map-embed a { color: var(--brand-blue); font-weight: 800; }

/* ─── Promotions ─── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.promo-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.promo-card__banner { height: 150px; background: var(--banner, var(--hero-bg)); position: relative; display: flex; align-items: flex-end; }
.promo-card__banner::before { content: ''; position: absolute; inset: 0; background: var(--hero-mesh); opacity: 0.7; }
.promo-card__tag { position: relative; z-index: 1; margin: 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; border-radius: var(--radius-pill); background: #fff; color: var(--brand-red); }
.promo-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.promo-card__body h3 { margin: 0 0 6px; font-size: 17px; }
.promo-card__body p { margin: 0 0 12px; font-size: 13px; color: var(--muted); flex: 1; }
.promo-card__dates { font-size: 12px; color: var(--muted); font-weight: 700; }
.promo-card--past { opacity: 0.72; }
.promo-card--past .promo-card__tag { color: var(--muted); }

/* ─── Generic info banner / callouts ─── */
.callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius-lg);
  background: var(--brand-blue-light); border: 1px solid rgba(0,114,206,0.15);
}
.callout--gold { background: #fff7e0; border-color: rgba(255,199,44,0.4); }
.callout__icon { font-size: 22px; }
.callout h3 { margin: 0 0 4px; font-size: 16px; }
.callout p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ─── Phase notice ─── */
.phase-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px; margin-bottom: 24px;
  background: linear-gradient(135deg, #fff7e0, #fde8ec);
  border: 1px solid rgba(255,199,44,0.4); border-radius: var(--radius-lg);
}
.phase-banner__badge { font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--brand-gold); color: var(--ink); }
.phase-banner p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ─── Account (Phase 3) ─── */
.auth-wrap { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
@media (min-width: 760px) { .auth-wrap { grid-template-columns: 1fr 1fr; } }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.auth-card h2 { margin: 0 0 14px; font-size: 20px; }

/* Trends timeline */
.trend-years { display: flex; flex-wrap: wrap; gap: 8px; }
.trend-year {
  padding: 10px 16px; font-size: 14px; font-weight: 800;
  border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft);
}
.trend-year.is-active { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.trend-year:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.trend-hero { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
@media (min-width: 820px) { .trend-hero { grid-template-columns: 1.4fr 1fr; } }
.trend-hero__swatch { min-height: 220px; background: var(--colour, #ccc); }
.trend-hero__copy { padding: 28px; background: var(--surface); display: flex; flex-direction: column; justify-content: center; }
.trend-hero__copy h2 { margin: 0 0 6px; font-size: 26px; }

/* -- Boyd's storefront additions --------------------------------------- */

/* Article card extras */
.article-card { padding: 18px; }
.article-card__date  { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.article-card__title { margin: 0 0 8px; font-size: 17px; font-weight: 800; line-height: 1.25; }
.article-card__desc  { margin: 0 0 12px; font-size: 13px; color: var(--muted); }
.article-card__cta   { font-size: 13px; font-weight: 800; color: var(--brand-blue); margin-top: auto; }

/* Feature card title/desc aliases */
.feature-card__title { margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.feature-card__desc  { margin: 0 0 12px; font-size: 13px; color: var(--muted); flex: 1; }
.feature-card__link  { font-size: 13px; font-weight: 800; color: var(--brand-blue); }

/* Product card body / desc / cta (storefront simplified layout) */
.product-card__body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; }
.product-card__desc { margin: 8px 0 0; font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.product-card__cta  { font-size: 13px; font-weight: 800; color: var(--brand-blue); padding: 12px 18px; border-top: 1px solid var(--border); }

/* Promo card image + body (storefront layout) */
.promo-card__image {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-blue-light); overflow: hidden;
}
.promo-card__image--placeholder { background: var(--hero-bg); }
.promo-card__image img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__title { margin: 0 0 6px; font-size: 17px; font-weight: 800; }
.promo-card__desc  { margin: 0 0 10px; font-size: 13px; color: var(--muted); flex: 1; }
.promo-card__cta   { font-size: 13px; font-weight: 800; color: var(--brand-blue); }

/* FAQ aliases */
.faq-question { padding: 16px 18px; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 18px 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* Colour search form (storefront) */
.colour-search__form { display: flex; gap: 10px; flex-wrap: wrap; }
.colour-search__form input {
  flex: 1; min-width: 200px; padding: 14px 16px; font-size: 16px;
  border: 2px solid var(--border); border-radius: 12px; outline: none; font-family: inherit;
}
.colour-search__form input:focus { border-color: var(--brand-blue); }
.colour-search__form button {
  padding: 14px 24px; font-size: 15px; font-weight: 800; color: #fff;
  background: var(--ai-gradient); border-radius: 12px; white-space: nowrap;
}
.colour-search__hint { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.colour-search__hint a { color: var(--brand-blue); font-weight: 700; }

/* Tip body content styles */
.tip-body h2, .tip-body h3 { margin-top: 24px; margin-bottom: 10px; }
.tip-body p   { margin: 0 0 16px; }
.tip-body ul, .tip-body ol { padding-left: 22px; margin: 0 0 16px; }
.tip-body li  { margin-bottom: 6px; }
.tip-body a   { color: var(--brand-blue); font-weight: 600; text-decoration: underline; }

.tip-hero {
  margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
  background: #e2e8f0;
}
.tip-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vw, 420px);
  object-fit: cover;
}

.tip-body img,
.tip-body img.tip-img {
  height: auto;
  border-radius: 10px;
  max-width: 100%;
}
.tip-body img.tip-img--s { max-width: 33%; }
.tip-body img.tip-img--m { max-width: 50%; }
.tip-body img.tip-img--l { max-width: 75%; }
.tip-body img.tip-img--full { max-width: 100%; }
.tip-body img.tip-img--left {
  float: left;
  margin: 4px 18px 14px 0;
}
.tip-body img.tip-img--right {
  float: right;
  margin: 4px 0 14px 18px;
}
.tip-body img.tip-img--center {
  display: block;
  float: none;
  margin: 16px auto;
}
.tip-body::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 640px) {
  .tip-body img,
  .tip-body img.tip-img,
  .tip-body img.tip-img--s,
  .tip-body img.tip-img--m,
  .tip-body img.tip-img--l,
  .tip-body img.tip-img--full,
  .tip-body img.tip-img--left,
  .tip-body img.tip-img--right,
  .tip-body img.tip-img--center {
    float: none !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 !important;
  }
}

.article-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 12px;
  background: #e2e8f0;
}

.legal-page h1 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 34px); }
.legal-page h2 { margin: 28px 0 10px; font-size: 18px; font-weight: 800; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.legal-page ul { padding-left: 22px; margin: 0 0 16px; }
.legal-page a { color: var(--brand-blue); font-weight: 600; }

/* ─── Soft 404 ─── */
.soft-404 {
  text-align: center;
  padding: 64px 20px 80px;
  max-width: 720px;
}
.soft-404 h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.soft-404__lede { margin: 0 auto 28px; }
.soft-404__suggestions {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.soft-404__card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color 0.12s, transform 0.12s;
}
.soft-404__card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}
.soft-404__card-label { font-size: 15px; font-weight: 800; color: var(--ink); }
.soft-404__card-reason { font-size: 12px; font-weight: 600; color: var(--muted); }
.soft-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.soft-404__help { margin: 0; font-size: 14px; color: var(--muted); }
.soft-404__help a { color: var(--brand-blue); font-weight: 700; }

/* ─── Store page ─── */
.store-about { padding-top: 28px; }
.store-about__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.store-about__lede { max-width: 70ch; }
.store-about__lede p { margin: 0 0 12px; }
.store-about__lede p:last-child { margin-bottom: 0; }
.store-about__features { margin-top: 22px; }

.store-visit-section {
  background: var(--surface-alt, #f6f8fb);
  padding: 36px 0;
}
.store-visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: stretch;
}
.store-visit__info {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}
.store-visit__address { font-style: normal; margin: 14px 0 12px; }
.store-visit__name { margin: 0 0 4px; font-size: 18px; font-weight: 800; }
.store-visit__line { margin: 0; color: var(--ink-soft); line-height: 1.45; }

.store-visit__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--radius-pill);
}
.store-visit__status.is-open {
  color: var(--brand-green, #1f7a3f);
  background: rgba(31, 122, 63, 0.1);
}
.store-visit__status.is-closed {
  color: var(--brand-red-dark, #b01028);
  background: var(--brand-red-light, #fde8ec);
}
.store-visit__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.store-hours {
  width: 100%;
  max-width: 340px;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 18px;
}
.store-hours th,
.store-hours td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.store-hours th { font-weight: 600; color: var(--ink); }
.store-hours td { color: var(--ink-soft); font-weight: 600; }
.store-hours tr.is-today {
  background: var(--brand-blue-light, #e8f4fc);
}
.store-hours tr.is-today th,
.store-hours tr.is-today td { font-weight: 800; color: var(--brand-blue-dark, #005a9e); }

.store-visit__ctas { margin-top: auto; }
.store-cta__icon { flex-shrink: 0; }

.store-visit__map {
  min-height: 100%;
  background: linear-gradient(135deg, #dde7ef, #eef3f7);
}
.store-map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.store-contact-section { padding-top: 28px; padding-bottom: 40px; }
.store-contact { max-width: 640px; }
.store-contact--compact { max-width: 560px; }
.store-contact__intro {
  margin: 0 0 14px;
  color: var(--ink-soft);
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.45;
}

.store-alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 13px;
}
.store-alert--success {
  background: var(--brand-green, #1f7a3f);
  color: #fff;
}
.store-alert--success a { color: #fff; font-weight: 800; text-decoration: underline; }
.store-alert--error {
  background: var(--brand-red-light, #fde8ec);
  color: var(--brand-red-dark, #b01028);
}

.contact-form__row { margin-bottom: 16px; }
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form__optional { color: var(--muted); font-weight: 600; }
.contact-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s;
}
.contact-form__input:focus { border-color: var(--brand-blue); }
.contact-form__submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 4px;
}
.contact-form__legal {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.contact-form__legal a { color: var(--brand-blue); font-weight: 600; }

/* Compact store contact form — Visit/map stay primary */
.contact-form--compact .contact-form__row { margin-bottom: 10px; }
.contact-form--compact .contact-form__label {
  font-size: 12px;
  margin-bottom: 4px;
}
.contact-form--compact .contact-form__input {
  padding: 9px 12px;
  font-size: 14px;
  border-radius: 8px;
}
.contact-form--compact textarea.contact-form__input {
  min-height: 72px;
  resize: vertical;
}
.contact-form--compact .contact-form__submit {
  padding: 11px 16px;
  font-size: 14px;
  margin-top: 2px;
}
.contact-form--compact .contact-form__legal { margin-top: 8px; font-size: 11px; }
.contact-form__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-form__pair .contact-form__row { margin-bottom: 10px; }
@media (max-width: 560px) {
  .contact-form__pair { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 860px) {
  .store-visit { grid-template-columns: 1fr; }
  .store-map-embed { min-height: 280px; }
  .store-visit__ctas { margin-top: 8px; }
}

@media (max-width: 520px) {
  .store-visit__info { padding: 22px 18px 24px; }
  .store-visit__ctas { flex-direction: column; }
  .store-visit__ctas .store-cta { width: 100%; justify-content: center; }
  .store-map-embed { min-height: 240px; }
}
