:root {
  --brand: #2563eb; /* primary accent (blue) */
  --brand-2: #22c55e; /* secondary accent (green) */
  --ink: #0f172a; /* text */
  --muted: #475569; /* secondary text */
  --line: #e2e8f0; /* borders */
  --bg: #ffffff; /* page background */
  --bg-soft: #f8fafc; /* soft background panels */
  --ring: #93c5fd; /* focus ring */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.06), 0 2px 8px rgba(2, 6, 23, 0.07);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 40px;
  width: auto;
}
.retailer-logo {
  height: 40px;
  width: auto;
}
.header-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .header-ctas {
    gap: 6px;
  }
  .header-ctas .btn {
    padding: 8px 10px;
    font-size: 14px;
  }
  .header-ctas .btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .brand-group {
    justify-content: center;
  }
  .header-ctas {
    justify-content: center;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: 0.2s transform, 0.2s box-shadow;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.08);
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  }
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
  .location-card:hover {
    border-color: var(--line);
    box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
  }
  .location-card:active {
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.06);
  }
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-ghost {
  background: transparent;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 40px 0;
}
.hero-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--muted);
  margin: 0 0 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
}
.brand-strip {
  display: flex;
  gap: 16px;
  overflow: auto;
  padding: 10px 0 10px 0;
}
.brand-strip img {
  height: 28px;
  filter: grayscale(100%);
  opacity: 0.8;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid var(--line);
  padding: 10px;
  display: none;
  gap: 8px;
}
.sticky-cta .btn {
  flex: 1;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .sticky-cta {
    display: flex;
  }
  .header-inner {
    padding: 10px 0;
  }
}

/* ===== Content sections ===== */
section {
  padding: 36px 0;
}
.section-title {
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 16px;
}

/* Locations + Map */
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}
@media (max-width: 1000px) {
  .loc-wrap {
    grid-template-columns: 1fr;
  }
}
.map {
  height: 480px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-soft);
}
.location-list {
  display: grid;
  gap: 14px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
  align-content: start;
}
.location-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
  transition: 0.15s border-color, 0.15s box-shadow;
}
.location-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.06);
}
.loc-radio {
  margin-top: 4px;
}
.loc-name {
  margin: 0 0 4px;
  font-weight: 700;
}
.loc-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 10px;
}
.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.loc-actions .btn {
  padding: 8px 12px;
}

/* Gallery */
.gallery {
  columns: 3 280px;
  column-gap: 12px;
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 12px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery figcaption {
  position: absolute;
  inset: auto 8px 8px 8px;
  background: rgba(15, 23, 42, 0.68);
  color: #fff;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
}

/* Value props */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}
.faq details + details {
  margin-top: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}
@media (max-width: 700px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
