:root {
  --blue: #00a8df;
  --yellow: #ffcc00;
  --navy: #0f172a;
  --red: #d9231f;
  --green: #178260;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8e0ea;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --soft-blue: #eaf7fd;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #ffffff;
  color: var(--navy);
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 850;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(0, 168, 223, 0.45);
  outline-offset: 3px;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--blue), #0b63c9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--yellow);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 66px;
  padding: 8px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 92px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.header-cta,
.menu-toggle {
  border: 0;
  background: transparent;
  color: #dbe6f4;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--yellow);
}

.header-cta {
  background: var(--yellow);
  border-radius: 6px;
  color: #111827;
  display: inline-flex;
  justify-content: center;
  padding: 11px 14px;
  white-space: nowrap;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  display: none;
  padding: 9px 12px;
}

.hero,
.page-hero,
.store-hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.82)),
    url("https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?auto=format&fit=crop&q=80&w=2000");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.original-hero {
  min-height: 500px;
  padding: clamp(58px, 8vw, 90px) 20px clamp(54px, 7vw, 80px);
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.page-hero h1,
.store-hero h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--yellow);
}

.intro-box {
  max-width: 840px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 20px 24px;
}

.intro-box p {
  margin: 0;
  color: #e5edf7;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button,
.card-actions a,
.detail-actions a,
.social-actions a,
.feed-card-actions a,
.footer-grid a,
.footer-nav a {
  text-decoration: none;
}

.button,
.card-actions a,
.detail-actions a,
.social-actions a,
.feed-card-actions a {
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--yellow);
  color: #121212;
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
}

.button.small {
  min-height: 38px;
  padding: 9px 13px;
}

.drop-logic {
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
}

.drop-logic span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #dbe6f4;
  min-height: 72px;
  padding: 13px 12px;
  text-align: center;
}

.drop-logic em {
  color: #dbe6f4;
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.drop-logic strong {
  display: block;
  color: var(--yellow);
  font-size: 15px;
  text-transform: uppercase;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
  text-transform: uppercase;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.band {
  max-width: none;
  background: var(--soft-blue);
  border-block: 1px solid #cfe7f3;
}

.band > .section-heading,
.band > .strategy-grid,
.band > .price-ladder,
.band > .link-grid,
.band > .tag-grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.market-grid,
.strategy-grid,
.store-detail-grid,
.link-grid,
.policy-list,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.market-card,
.strategy-grid article,
.detail-panel,
.link-card,
.policy-list article,
.steps article,
.faq-list article,
.store-card,
.feed-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.market-card-top {
  background: var(--navy);
  border-bottom: 4px solid var(--blue);
  color: #ffffff;
  padding: 22px;
}

.market-card-top h3,
.feed-card-header h3,
.store-row h3,
.detail-panel h2,
.link-card strong,
.policy-list h2,
.steps h2,
.faq-list h3 {
  margin: 0;
}

.market-card-top h3 {
  font-size: 24px;
  text-transform: uppercase;
}

.market-card-top p {
  margin: 8px 0 0;
  color: #b9c7d9;
  font-size: 14px;
}

.market-card-body,
.strategy-grid article,
.detail-panel,
.policy-list article,
.steps article {
  padding: 22px;
}

.market-card-body p,
.market-card-body small,
.strategy-grid p,
.detail-panel p,
.policy-list p,
.steps p,
.faq-list p,
.link-card small {
  color: var(--muted);
}

.market-card-body small {
  display: block;
  font-weight: 800;
  margin: 14px 0;
}

.strategy-grid article strong,
.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #111827;
  font-weight: 900;
}

.strategy-grid h3 {
  margin: 16px 0 8px;
  font-size: 21px;
}

.feed-section {
  max-width: 1320px;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 24px;
}

.feed-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.feed-card-header {
  background: var(--navy);
  border-bottom: 4px solid var(--blue);
  color: #ffffff;
  padding: 20px;
}

.feed-card-header span {
  color: var(--yellow);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.feed-card-header h3 {
  font-size: 22px;
}

.feed-card-header a {
  text-decoration: none;
}

.feed-card-header p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 8px 0 0;
}

.feed-card-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.feed-card-summary strong {
  color: var(--red);
  font-size: 18px;
}

.feed-card-summary span {
  color: var(--muted);
  font-size: 14px;
}

.facebook-frame {
  background: #ffffff;
  min-height: 500px;
  width: 100%;
}

.facebook-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.feed-card-actions,
.card-actions,
.detail-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feed-card-actions {
  margin-top: auto;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.feed-card-actions a,
.card-actions a,
.detail-actions a,
.social-actions a {
  background: var(--soft-blue);
  border: 1px solid #c3dcea;
  color: #0f4d68;
}

.feed-fallback {
  padding: 16px;
}

.compact-directory {
  max-width: 1320px;
}

.compact-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.compact-location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

.compact-location-card span {
  color: var(--blue);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.compact-location-card h3 {
  font-size: 20px;
  line-height: 1.15;
  margin: 0;
}

.compact-location-card h3 a,
.compact-location-actions a {
  text-decoration: none;
}

.compact-location-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 7px 0 0;
}

.compact-location-card strong {
  color: var(--red);
  display: block;
  font-size: 16px;
}

.compact-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compact-location-actions a {
  background: var(--soft-blue);
  border: 1px solid #c3dcea;
  border-radius: 6px;
  color: #0f4d68;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.finder-section {
  max-width: 1320px;
}

.page-hero + .finder-section,
.hero + .finder-section {
  padding-top: 52px;
}

.finder-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.store-search {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0 16px;
}

.market-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.market-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.market-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.store-grid {
  display: grid;
  gap: 16px;
}

.store-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.95fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.store-meta span {
  background: var(--soft-blue);
  border-radius: 999px;
  color: #0f4d68;
  font-size: 12px;
  font-weight: 850;
  padding: 4px 9px;
  text-transform: uppercase;
}

.store-row h3 {
  font-size: 23px;
}

.store-row h3 a {
  text-decoration: none;
}

.store-address {
  color: var(--muted);
  margin: 6px 0 0;
}

.store-row-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 7px;
}

.mini-price {
  min-height: 58px;
  border: 1px solid #d3dde8;
  border-radius: 7px;
  background: #ffffff;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 7px 6px;
  text-align: center;
}

.mini-price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-price strong {
  color: var(--red);
  font-size: 16px;
  line-height: 1.1;
}

.mini-price-note strong {
  color: var(--navy);
  font-size: 13px;
}

.empty-state,
.note {
  color: var(--muted);
  text-align: center;
}

.page-hero {
  color: #ffffff;
  padding: 74px 20px;
  text-align: center;
}

.page-hero.compact h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 7vw, 58px);
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.page-hero p {
  max-width: 720px;
  margin: 16px auto 0;
  color: #dbe6f4;
  font-size: 18px;
}

.store-hero {
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 8vw, 82px) max(20px, calc((100vw - 1240px) / 2 + 20px));
}

.store-hero-copy {
  min-width: 0;
}

.back-link {
  color: var(--yellow);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.store-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 7vw, 64px);
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.store-hero-price {
  color: var(--yellow);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  margin-top: 16px;
}

.store-hero p {
  color: #dbe6f4;
  font-size: 18px;
  margin: 12px 0 0;
}

.store-hero .hero-actions {
  justify-content: flex-start;
}

.store-snapshot {
  background: #ffffff;
  border-radius: var(--radius);
  color: var(--ink);
  padding: 22px;
  box-shadow: var(--shadow);
}

.store-snapshot h2 {
  margin: 0 0 16px;
  font-size: 24px;
  text-transform: uppercase;
}

.store-snapshot p {
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0 0;
}

.store-live-section {
  max-width: 760px;
}

.store-live-section .facebook-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-panel h2 {
  font-size: 24px;
}

.price-ladder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.price-ladder article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 16px;
  text-align: center;
}

.price-ladder article.today {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 223, 0.18);
}

.price-ladder article.closed {
  background: #f1f3f6;
}

.price-ladder span,
.price-ladder small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-ladder strong {
  color: var(--red);
  display: block;
  font-size: 30px;
  margin: 5px 0;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag-grid span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  padding: 9px 13px;
}

.link-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.link-card {
  color: inherit;
  display: grid;
  gap: 8px;
  padding: 20px;
  text-decoration: none;
}

.link-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-card strong {
  font-size: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 20px;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.deal-poster {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.deal-poster-top,
.deal-poster-foot {
  background: var(--navy);
  color: #ffffff;
  padding: 12px;
}

.deal-poster-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-poster-body {
  padding: 24px;
  text-align: center;
}

.deal-poster-body span,
.deal-poster-body small {
  color: var(--muted);
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-poster-body strong {
  color: var(--red);
  display: block;
  font-size: 36px;
  margin: 8px 0;
}

.site-footer {
  background: var(--navy);
  border-top: 8px solid var(--yellow);
  color: #cbd5e1;
  padding: 58px 20px 28px;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(180px, 0.6fr));
  gap: 32px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-grid h2 {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.footer-grid a {
  color: #e8f1fb;
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  max-width: 1240px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

#store-finder,
#live-updates {
  scroll-margin-top: 112px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 64px;
  }

  .brand img {
    width: 84px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .header-cta {
    justify-self: end;
  }

  .market-grid,
  .strategy-grid,
  .policy-list,
  .steps,
  .store-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .drop-logic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
  }

  .compact-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-row {
    grid-template-columns: 1fr;
  }

  .store-row-actions {
    justify-content: flex-start;
  }

  .store-hero {
    grid-template-columns: 1fr;
  }

  .finder-controls {
    grid-template-columns: 1fr;
  }

  .market-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  #store-finder,
  #live-updates {
    scroll-margin-top: 96px;
  }

  .announcement-bar {
    font-size: 9px;
    letter-spacing: 0.03em;
    line-height: 1.35;
    padding: 5px 8px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    min-height: 52px;
    padding: 6px 12px;
  }

  .brand img {
    width: 66px;
  }

  .header-cta,
  .menu-toggle {
    font-size: 11px;
    min-height: 34px;
    padding: 7px 10px;
  }

  .menu-toggle {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 8px;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
  }

  .original-hero {
    min-height: 0;
    padding: 30px 16px 24px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 38px);
    line-height: 0.98;
  }

  .hero p,
  .page-hero p,
  .store-hero p {
    font-size: 14px;
    line-height: 1.42;
    margin-top: 10px;
  }

  .hero-actions,
  .feed-card-actions,
  .card-actions,
  .detail-actions,
  .social-actions {
    flex-direction: column;
  }

  .hero-actions {
    margin-top: 16px;
    gap: 8px;
  }

  .button,
  .card-actions a,
  .detail-actions a,
  .social-actions a,
  .feed-card-actions a {
    width: 100%;
  }

  .store-row-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-row-actions a:first-child {
    grid-column: 1 / -1;
  }

  .drop-logic {
    display: none;
  }

  .intro-box {
    margin-top: 16px;
    padding: 14px 16px;
  }

  .section {
    padding: 46px 14px;
  }

  .page-hero + .finder-section,
  .hero + .finder-section {
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .feed-grid {
    gap: 18px;
  }

  .compact-location-grid {
    grid-template-columns: 1fr;
  }

  .facebook-frame,
  .facebook-frame iframe {
    min-height: 440px;
    height: 440px;
  }

  .feed-card-header,
  .market-card-top,
  .market-card-body,
  .detail-panel,
  .strategy-grid article,
  .policy-list article,
  .steps article,
  .faq-list article {
    padding: 18px;
  }

  .store-row {
    padding: 14px;
  }

  .store-row-prices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-snapshot {
    padding: 16px;
  }

  .store-hero {
    padding: 44px 14px;
  }

  .store-live-section {
    max-width: none;
  }

  .price-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .store-row-prices,
  .price-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-tab {
    flex: 1 1 calc(50% - 8px);
  }
}

/* Production polish overrides */
.announcement-bar {
  font-size: 11px;
  line-height: 1.2;
  padding: 6px 12px;
}

.header-inner {
  min-height: 58px;
  padding: 6px 18px;
}

.brand img {
  width: 82px;
}

.original-hero {
  min-height: clamp(430px, 48vh, 520px);
  padding: clamp(48px, 6vw, 76px) 20px clamp(42px, 5.5vw, 68px);
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.intro-box {
  max-width: 790px;
  margin-top: 22px;
  padding: 16px 20px;
}

.intro-box p {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.55;
}

.drop-logic {
  max-width: 980px;
  margin-top: 26px;
}

.drop-logic span {
  min-height: 66px;
  padding: 12px 8px;
}

.drop-logic em {
  font-size: 10px;
}

.drop-logic strong {
  font-size: 13px;
  line-height: 1.15;
}

.section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-heading {
  margin-bottom: 28px;
}

.compact-location-card {
  padding: 16px;
}

.compact-location-card h3 {
  font-size: 19px;
  line-height: 1.18;
}

.compact-location-card p {
  font-size: 13px;
  line-height: 1.45;
}

.compact-location-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.page-hero {
  padding-top: 58px;
  padding-bottom: 58px;
}

.store-hero {
  padding-top: clamp(42px, 6vw, 66px);
  padding-bottom: clamp(42px, 6vw, 66px);
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 54px;
    padding: 5px 14px;
  }

  .brand img {
    width: 64px;
  }

  .drop-logic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .announcement-bar {
    font-size: 9px;
    padding: 4px 8px;
  }

  .header-inner {
    min-height: 44px;
    padding: 4px 12px;
  }

  .brand img {
    width: 52px;
  }

  .menu-toggle {
    font-size: 11px;
    min-height: 32px;
    padding: 6px 9px;
  }

  .original-hero {
    padding: 28px 14px 26px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.3vw, 34px);
    line-height: 1.03;
    max-width: 290px;
  }

  .intro-box {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .intro-box p {
    font-size: 13.5px;
    line-height: 1.42;
  }

  .drop-logic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }

  .drop-logic span {
    min-height: 50px;
    padding: 8px 6px;
  }

  .drop-logic em {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .drop-logic strong {
    font-size: 11px;
  }

  .section {
    padding: 34px 14px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .link-card {
    min-width: 0;
  }

  .page-hero {
    padding: 34px 14px;
  }

  .store-hero {
    padding: 28px 14px;
  }

  .store-hero .store-snapshot {
    display: none;
  }
}

@media (max-width: 420px) {
  .original-hero {
    padding: 22px 12px 20px;
  }

  .hero h1 {
    font-size: clamp(25px, 7.7vw, 31px);
    max-width: 260px;
  }

  .intro-box {
    margin-top: 10px;
    padding: 10px 12px;
  }

  .intro-box p {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .drop-logic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 12px;
  }

  .drop-logic span {
    min-height: 46px;
    padding: 7px 4px;
  }

  .drop-logic em {
    font-size: 8px;
  }

  .drop-logic strong {
    font-size: 9.5px;
    line-height: 1.1;
  }
}
