:root {
  --ink: var(--dh-cream);
  --panel: #fffdf7;
  --surface: var(--dh-paper);
  --paper: #fffdf7;
  --text: var(--dh-brown);
  --muted: var(--dh-brown-soft);
  --line: rgb(63 27 12 / 14%);
  --lime: var(--dh-red);
  --green: var(--dh-radar);
  --danger: var(--dh-red-dark);
  --brand-heading: Georgia, "Times New Roman", serif;
  --brand-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --halloween-ink: #291535;
  --halloween-purple: #59306f;
  --halloween-orange: #f06a2b;
  color: var(--dh-brown);
  background: var(--dh-cream);
  font-family: var(--brand-body);
}

html {
  background: var(--dh-cream);
}

body {
  background:
    radial-gradient(circle at 8% 2%, rgb(255 255 255 / 72%), transparent 28rem),
    var(--dh-cream);
  color: var(--dh-brown);
}

button,
input,
select {
  font-family: inherit;
}

button:active,
a:active {
  transform: translateY(1px);
}

:focus-visible {
  outline: 3px solid var(--dh-red) !important;
  outline-offset: 3px;
}

.skip-link {
  border-radius: 999px;
  background: var(--dh-red);
  color: #fff;
  font-weight: 800;
}

.site-header {
  height: 76px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  border-color: var(--line);
  background: rgb(255 248 234 / 92%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 75%);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand-lockup {
  position: relative;
  display: block;
  width: 226px;
  height: 54px;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}

.brand-logo-wide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-mark {
  display: none;
}

.site-header nav {
  gap: 34px;
}

.site-header nav a {
  position: relative;
  color: var(--dh-brown-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .09em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--dh-red);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .18s ease, transform .18s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--dh-red-dark);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.store-trigger {
  border: 1px solid var(--dh-red);
  border-radius: 999px;
  background: var(--dh-red);
  color: #fff;
  box-shadow: 0 7px 18px rgb(158 36 26 / 16%);
}

.store-trigger:hover,
.store-trigger:focus-visible {
  border-color: var(--dh-red-dark);
  background: var(--dh-red-dark);
}

.store-trigger span {
  font-weight: 800;
  letter-spacing: .04em;
}

main {
  width: min(100% - clamp(28px, 7vw, 112px), 1440px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 530px) minmax(440px, 1fr);
  grid-template-rows: 1fr auto;
  gap: 32px 64px;
  align-items: end;
  overflow: hidden;
  padding: 64px 0 54px;
  border-color: var(--line);
}

.hero-copy {
  grid-area: 1 / 1;
  align-self: end;
}

.overline {
  color: var(--dh-red-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
}

.hero h1,
.section-title h2,
.nearby-heading h3,
.rankings-heading h3,
.detail-info h2 {
  font-family: var(--brand-heading);
  font-weight: 700;
}

.hero h1 {
  max-width: 9.6ch;
  margin: 18px 0 22px;
  color: var(--dh-brown);
  font-size: clamp(64px, 6.6vw, 106px);
  line-height: .88;
  letter-spacing: -.065em;
}

.hero-copy > p {
  max-width: 48ch;
  color: var(--dh-brown-soft);
  font-size: 17px;
}

.zip-finder {
  grid-area: 2 / 1;
  width: min(100%, 470px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 253 247 / 88%);
  box-shadow: var(--dh-shadow-card);
  backdrop-filter: blur(10px);
}

.zip-finder > label {
  color: var(--dh-brown);
  font-size: 12px;
}

.zip-control {
  gap: 8px;
}

.zip-control input {
  height: 54px;
  border: 1px solid rgb(63 27 12 / 28%);
  border-radius: 12px;
  padding-inline: 16px;
  background: #fff;
  color: var(--dh-brown);
}

.zip-control input::placeholder {
  color: rgb(112 64 31 / 58%);
}

.zip-control input:focus {
  border-color: var(--dh-red);
  box-shadow: 0 0 0 3px rgb(201 51 36 / 13%);
}

.zip-control button {
  min-width: 122px;
  height: 54px;
  border-radius: 12px;
  background: var(--dh-red);
  color: #fff;
  font-weight: 850;
}

.zip-control button:hover,
.zip-control button:focus-visible {
  background: var(--dh-red-dark);
}

.zip-finder > p {
  color: var(--dh-brown-soft);
}

.hero-art {
  position: relative;
  grid-area: 1 / 2 / 3;
  height: 530px;
  overflow: hidden;
  border: 1px solid rgb(63 27 12 / 12%);
  border-radius: 30px;
  background: var(--dh-paper);
  box-shadow: 0 24px 70px rgb(63 27 12 / 12%);
}

.hero-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-mascot {
  position: absolute;
  bottom: -4%;
  left: -6%;
  width: min(48%, 350px);
  height: auto;
  filter: drop-shadow(0 18px 18px rgb(63 27 12 / 17%));
}

.store-results {
  top: calc(100% + 8px);
  overflow: hidden auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf7;
  box-shadow: 0 24px 70px rgb(63 27 12 / 22%);
}

.store-results-head {
  background: var(--dh-brown);
}

.store-result {
  background: #fffdf7;
  color: var(--dh-brown);
}

.store-result + .store-result {
  border-color: var(--line);
}

.store-result:hover,
.store-result:focus-visible {
  background: var(--dh-paper);
}

.store-result span,
.store-result small {
  color: var(--dh-brown-soft);
}

.store-strip {
  min-height: 116px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(246 234 210 / 72%);
}

.selected-store-identity strong {
  color: var(--dh-brown);
  font-size: 19px;
}

.selected-store-identity small,
.freshness {
  color: var(--dh-brown-soft);
}

.release-section {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 4%, rgb(240 106 43 / 25%), transparent 18rem),
    radial-gradient(circle at 4% 100%, rgb(145 89 170 / 28%), transparent 22rem),
    var(--halloween-ink);
  color: #fff9ed;
  box-shadow: 0 22px 60px rgb(41 21 53 / 17%);
}

.release-section::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 249 237 / 18%) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

.release-heading,
.release-grid {
  position: relative;
  z-index: 1;
}

.release-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.release-heading .overline {
  color: #ffad79;
}

.release-heading h2 {
  max-width: 15ch;
  margin: 8px 0 0;
  font-family: var(--brand-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.045em;
}

.release-heading p {
  max-width: 34ch;
  margin: 0;
  color: rgb(255 249 237 / 72%);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.release-card {
  display: grid;
  min-width: 0;
  min-height: 226px;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgb(255 249 237 / 18%);
  border-radius: 20px;
  padding: 0 18px 0 0;
  background: rgb(255 253 247 / 97%);
  color: var(--dh-brown);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.release-card:hover,
.release-card:focus-visible {
  border-color: var(--halloween-orange);
  box-shadow: 0 18px 45px rgb(0 0 0 / 22%);
  transform: translateY(-2px);
}

.release-visual {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 224px;
  place-items: center;
  overflow: hidden;
  background: #f4f4f1;
}

.release-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-copy {
  display: block;
  min-width: 0;
}

.release-copy small,
.release-copy strong,
.release-copy span,
.release-copy b,
.release-copy i {
  display: block;
}

.release-copy small {
  color: var(--halloween-purple);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.release-copy strong {
  margin-top: 7px;
  font-family: var(--brand-heading);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1;
}

.release-copy span {
  margin-top: 8px;
  color: var(--dh-brown-soft);
  font-size: 11px;
  line-height: 1.35;
}

.release-copy b {
  margin-top: 18px;
  color: var(--dh-brown);
  font-size: 11px;
  line-height: 1.35;
}

.release-copy b.is-stock {
  color: var(--dh-radar);
}

.release-copy b.is-zero {
  color: var(--dh-red-dark);
}

.release-copy i {
  margin-top: 4px;
  overflow: hidden;
  color: var(--dh-brown-soft);
  font-size: 9px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.release-card > svg {
  width: 17px;
  height: 17px;
  color: var(--halloween-orange);
}

.release-loading {
  grid-column: 1 / -1;
  min-height: 100px;
  padding: 30px;
  color: rgb(255 249 237 / 74%);
}

.upcoming-section {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgb(255 253 247 / 88%);
  box-shadow: var(--dh-shadow-card);
}

.upcoming-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.upcoming-heading h2,
.upcoming-board .section-title h2,
.upcoming-hero h1 {
  font-family: var(--brand-heading);
}

.upcoming-heading h2,
.upcoming-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .95;
  letter-spacing: -.05em;
}

.upcoming-heading p {
  max-width: 38ch;
  margin: 0;
  color: var(--dh-brown-soft);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.upcoming-preview-grid,
.upcoming-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.upcoming-preview-card,
.upcoming-card {
  display: grid;
  grid-template-columns: minmax(150px, 35%) minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf7;
}

.upcoming-preview-visual,
.upcoming-card-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  background: #f7f2e6;
}

.upcoming-preview-visual img,
.upcoming-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-preview-copy,
.upcoming-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 22px 0;
}

.upcoming-preview-copy small,
.upcoming-card-copy small {
  color: var(--dh-red-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.upcoming-preview-copy strong,
.upcoming-card-copy strong {
  margin-top: 10px;
  color: var(--dh-brown);
  font-family: var(--brand-heading);
  font-size: clamp(24px, 2vw, 33px);
  line-height: .98;
}

.upcoming-preview-copy span,
.upcoming-card-copy span {
  margin-top: 10px;
  color: var(--dh-brown-soft);
  font-size: 13px;
  line-height: 1.45;
}

.upcoming-preview-copy b,
.upcoming-card-copy b {
  margin-top: 16px;
  color: var(--dh-red-dark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.upcoming-card-copy i {
  margin-top: 6px;
  color: var(--dh-brown-soft);
  font-size: 11px;
  font-style: normal;
}

.upcoming-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--dh-red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.upcoming-link svg,
.upcoming-back svg {
  width: 16px;
  height: 16px;
}

.upcoming-page .site-header nav a[aria-current="page"] {
  color: var(--dh-red-dark);
}

.upcoming-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
  padding: 56px 0 20px;
}

.upcoming-hero-note {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(246 234 210 / 72%);
}

.upcoming-hero-note strong,
.upcoming-hero-note span {
  display: block;
}

.upcoming-hero-note strong {
  color: var(--dh-brown);
  font-size: 13px;
}

.upcoming-hero-note span {
  margin-top: 8px;
  color: var(--dh-brown-soft);
  font-size: 13px;
  line-height: 1.5;
}

.upcoming-board {
  margin: 16px 0 0;
}

.nearby-select span {
  color: var(--dh-red-dark);
}

.nearby-select select {
  border-color: rgb(63 27 12 / 22%);
  border-radius: 10px;
  background: #fffdf7;
  color: var(--dh-brown);
}

.freshness i {
  background: var(--dh-tan);
}

.freshness.fresh i {
  background: var(--dh-stock);
  box-shadow: 0 0 0 4px rgb(95 143 40 / 13%);
}

.text-button {
  border-color: var(--dh-red);
  color: var(--dh-red-dark);
  font-weight: 750;
}

.live-section,
.state-live-section,
.catalog-section,
.pulse-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  border-color: var(--line);
  scroll-margin-top: 76px;
}

.section-title h2 {
  color: var(--dh-brown);
  letter-spacing: -.045em;
}

.section-count {
  color: var(--dh-brown-soft);
  font-weight: 750;
}

.live-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

.live-card,
.product-card,
.nearby-store-card {
  border: 1px solid var(--line);
  border-radius: var(--dh-radius-card);
  background: #fffdf7;
  box-shadow: 0 10px 30px rgb(63 27 12 / 7%);
}

.live-card {
  overflow: hidden;
}

.live-card:hover,
.product-card:hover {
  border-color: rgb(201 51 36 / 30%);
  box-shadow: 0 18px 44px rgb(63 27 12 / 12%);
}

.live-card-image,
.product-visual {
  background:
    radial-gradient(circle at 50% 42%, #fffdf8 0 28%, transparent 68%),
    var(--dh-paper);
}

.live-card-copy,
.product-copy {
  border-color: var(--line);
  background: #fffdf7;
}

.live-card-copy strong,
.product-copy strong {
  color: var(--dh-brown);
}

.live-card-copy span {
  color: var(--dh-radar);
  font-weight: 800;
}

.live-card-copy small,
.product-copy span {
  color: var(--dh-brown-soft);
}

.empty-state {
  border: 1px dashed rgb(112 64 31 / 28%);
  border-radius: var(--dh-radius-card);
  background:
    linear-gradient(rgb(255 253 247 / 91%), rgb(255 253 247 / 91%)),
    url("/brand/generated/hunt-pattern.webp") center / 520px;
  color: var(--dh-brown-soft);
}

.empty-state strong {
  color: var(--dh-brown);
  font-family: var(--brand-heading);
}

.state-live-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(246 234 210 / 68%);
}

.state-live-toolbar label,
.availability-controls label {
  display: grid;
  gap: 7px;
}

.state-live-toolbar label > span,
.availability-controls label > span {
  color: var(--dh-red-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.state-live-toolbar select,
.availability-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgb(63 27 12 / 22%);
  border-radius: 12px;
  padding: 0 38px 0 14px;
  background: #fffdf7;
  color: var(--dh-brown);
  cursor: pointer;
}

.state-live-toolbar p {
  margin: 0 0 7px;
  color: var(--dh-brown-soft);
  font-size: 14px;
}

.state-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.state-location-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.state-live-grid > .empty-state {
  grid-column: 1 / -1;
}

.state-location-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 10px 30px rgb(63 27 12 / 7%);
}

.state-location-card[open] {
  border-color: rgb(201 51 36 / 30%);
  box-shadow: 0 16px 40px rgb(63 27 12 / 11%);
}

.state-location-card > summary {
  display: grid;
  width: 100%;
  min-height: 96px;
  grid-template-columns: 40px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 13px;
  border: 0;
  padding: 15px 16px;
  background: #fffdf7;
  color: var(--dh-brown);
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.state-location-card > summary::-webkit-details-marker {
  display: none;
}

.state-location-card > summary:hover,
.state-location-card > summary:focus-visible {
  background: #fffaf0;
  outline: 0;
}

.state-location-card > summary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--dh-red);
}

.state-location-pin {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgb(201 51 36 / 9%);
  color: var(--dh-red);
}

.state-location-pin svg {
  width: 19px;
  height: 19px;
}

.state-location-copy {
  min-width: 0;
}

.state-location-copy small,
.state-location-copy strong,
.state-location-copy span {
  display: block;
}

.state-location-copy small {
  color: var(--dh-red-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.state-location-copy strong {
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--brand-heading);
  font-size: 20px;
  line-height: 1.05;
}

.state-location-copy span {
  margin-top: 5px;
  color: var(--dh-brown-soft);
  font-size: 10px;
}

.state-location-count {
  min-width: 42px;
  text-align: center;
}

.state-location-count b,
.state-location-count small {
  display: block;
}

.state-location-count b {
  color: var(--dh-radar);
  font-family: var(--brand-heading);
  font-size: 24px;
  line-height: .9;
}

.state-location-count small {
  margin-top: 5px;
  color: var(--dh-brown-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.state-location-chevron {
  display: grid;
  place-items: center;
  transition: transform .2s ease;
}

.state-location-chevron svg {
  width: 17px;
  height: 17px;
}

.state-location-card[open] .state-location-chevron {
  transform: rotate(180deg);
}

.state-location-inventory {
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.state-location-list-heading {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px;
  color: var(--dh-red-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.state-location-list-heading small {
  color: var(--dh-brown-soft);
  font-size: 8px;
}

.state-location-product {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 62px minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 0 14px 0 0;
  background: #fffdf7;
  color: var(--dh-brown);
  text-align: left;
  cursor: pointer;
}

.state-location-product:hover,
.state-location-product:focus-visible {
  background: var(--dh-paper);
  outline: 0;
}

.state-location-image {
  display: grid;
  width: 62px;
  height: 73px;
  place-items: center;
  padding: 7px;
  background: var(--dh-paper);
}

.state-location-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.state-location-product-copy,
.state-location-product-copy strong,
.state-location-product-copy small,
.state-location-quantity b,
.state-location-quantity small {
  display: block;
  min-width: 0;
}

.state-location-product-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.state-location-product-copy small {
  margin-top: 4px;
  color: var(--dh-brown-soft);
  font-size: 9px;
}

.state-location-quantity {
  color: var(--dh-radar);
  text-align: right;
}

.state-location-quantity b {
  font-family: var(--brand-heading);
  font-size: 21px;
  line-height: .9;
}

.state-location-quantity small {
  margin-top: 5px;
  font-size: 8px;
}

.state-location-product > svg {
  width: 15px;
  height: 15px;
  color: var(--dh-red);
}

.state-location-select {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 0 16px;
  background: rgb(246 234 210 / 75%);
  color: var(--dh-red-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.state-location-select:hover,
.state-location-select:focus-visible {
  background: var(--dh-tan);
  outline: 0;
}

.state-location-select svg {
  width: 15px;
  height: 15px;
}

.nearby-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}

.nearby-store-card {
  overflow: hidden;
}

.nearby-store-card.current {
  box-shadow: inset 0 4px 0 var(--dh-red), 0 10px 30px rgb(63 27 12 / 7%);
}

.nearby-store-head:hover,
.nearby-store-head:focus-visible {
  background: var(--dh-paper);
}

.nearby-store-head span {
  color: var(--dh-red-dark);
  font-weight: 800;
}

.nearby-store-head strong,
.nearby-stock-row span {
  color: var(--dh-brown);
}

.nearby-store-head small,
.nearby-none,
.nearby-store-foot {
  color: var(--dh-brown-soft);
}

.nearby-stock-list,
.nearby-stock-row,
.nearby-store-foot {
  border-color: var(--line);
}

.nearby-stock-row {
  background: #fffaf0;
}

.nearby-stock-row:hover,
.nearby-stock-row:focus-visible {
  background: var(--dh-paper);
}

.nearby-stock-row strong {
  color: var(--dh-radar);
}

.catalog-tools {
  border-color: var(--line);
}

.catalog-search {
  border-color: rgb(63 27 12 / 28%);
}

.catalog-search:focus-within {
  border-color: var(--dh-red);
}

.catalog-search svg,
.catalog-search input,
.catalog-search input::placeholder {
  color: var(--dh-brown-soft);
}

.filter-tabs button {
  color: var(--dh-brown-soft);
  font-weight: 800;
}

.filter-tabs button:hover,
.filter-tabs button:focus-visible {
  border-color: var(--dh-red);
  color: var(--dh-red-dark);
}

.filter-tabs button.active {
  border-color: var(--dh-red);
  color: var(--dh-red-dark);
}

.affiliate-disclosure {
  color: #70401f;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.product-card {
  overflow: visible;
}

.product-card-main {
  overflow: hidden;
  border-radius: var(--dh-radius-card) var(--dh-radius-card) 0 0;
}

.product-visual {
  border-radius: var(--dh-radius-card) var(--dh-radius-card) 0 0;
}

.product-status {
  border-radius: 999px;
  background: var(--dh-brown);
  color: #fff8ea;
  box-shadow: 0 5px 16px rgb(63 27 12 / 16%);
}

.product-status.live {
  background: var(--dh-radar);
  color: #fff;
}

.product-status.nearby {
  background: var(--dh-red);
  color: #fff;
}

.product-status.zero {
  background: rgb(63 27 12 / 80%);
  color: #fff8ea;
}

.archive-market-link {
  border-color: var(--line);
  border-radius: 0 0 var(--dh-radius-card) var(--dh-radius-card);
  color: var(--dh-brown-soft);
}

.archive-market-link:hover,
.archive-market-link:focus-visible {
  background: var(--dh-paper);
  color: var(--dh-red-dark);
}

.nearby-stock-popover {
  border-color: rgb(63 27 12 / 24%);
  border-radius: 14px;
  background: #fffdf7;
  color: var(--dh-brown);
  box-shadow: 0 24px 70px rgb(63 27 12 / 24%);
}

.nearby-popover-head,
.nearby-popover-row {
  border-color: var(--line);
}

.nearby-popover-row {
  color: var(--dh-brown);
}

.nearby-popover-row:hover,
.nearby-popover-row:focus-visible {
  background: var(--dh-paper);
}

.nearby-popover-head span,
.nearby-popover-row small,
.nearby-popover-row b {
  color: var(--dh-brown-soft);
}

.nearby-popover-row.is-stock b {
  color: var(--dh-radar);
}

.pulse-section {
  position: relative;
  overflow: hidden;
}

.pulse-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 36px;
  right: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: url("/brand/generated/dumpling-radar.webp") center / cover;
  opacity: .055;
}

.pulse-stats {
  overflow: hidden;
  border-color: var(--line);
  border-radius: var(--dh-radius-card);
  box-shadow: 0 10px 30px rgb(63 27 12 / 6%);
}

.pulse-stat {
  background: rgb(255 253 247 / 88%);
}

.pulse-stat + .pulse-stat,
.state-rankings,
.state-rankings li {
  border-color: var(--line);
}

.pulse-stat strong,
.state-rankings li > strong {
  color: var(--dh-brown);
}

.pulse-stat span,
.state-rankings small,
.rank-number {
  color: var(--dh-brown-soft);
}

footer {
  width: min(100% - clamp(28px, 7vw, 112px), 1440px);
  grid-template-columns: minmax(220px, 1fr) 2fr 2fr;
  margin-top: 32px;
  padding: 42px 34px 64px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(rgb(246 234 210 / 93%), rgb(246 234 210 / 93%)),
    url("/brand/generated/hunt-pattern.webp") center / 560px;
  color: var(--dh-brown-soft);
}

.footer-brand {
  display: block;
  width: 220px;
  height: 62px;
  overflow: hidden;
  border-radius: 10px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer a:hover {
  color: var(--dh-red-dark);
}

dialog {
  border-color: rgb(63 27 12 / 18%);
  border-radius: 24px;
  background: #fffdf7;
  color: var(--dh-brown);
  box-shadow: 0 32px 110px rgb(63 27 12 / 38%);
}

dialog::backdrop {
  background: rgb(63 27 12 / 55%);
}

.dialog-close {
  border-color: rgb(63 27 12 / 20%);
  border-radius: 50%;
  background: rgb(255 253 247 / 92%);
  color: var(--dh-brown);
}

.detail-image {
  background:
    radial-gradient(circle, #fffdf7 0 30%, transparent 68%),
    var(--dh-paper);
}

.detail-info h2,
.detail-stock strong,
.detail-grid dd,
.detail-row strong {
  color: var(--dh-brown);
}

.detail-stock,
.detail-grid div,
.detail-row {
  border-color: var(--line);
}

.detail-stock span,
.detail-grid dt,
.detail-note,
.detail-row span,
.detail-market small {
  color: var(--dh-brown-soft);
}

@media (min-width: 741px) {
  .detail-layout {
    height: min(90dvh, 820px);
    grid-template-rows: minmax(0, 1fr);
    overflow: hidden;
  }

  .detail-image {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .detail-info {
    height: 100%;
    max-height: 100%;
    min-height: 0;
    overflow-y: auto;
  }
}

.nearby-stock-shell {
  right: 0;
  pointer-events: none;
}

.nearby-stock-shell > .product-status,
.nearby-stock-shell > .nearby-stock-popover {
  pointer-events: auto;
}

.nationwide-availability {
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.availability-heading h3 {
  margin: 7px 0 4px;
  color: var(--dh-brown);
  font-family: var(--brand-heading);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.035em;
}

.availability-heading p {
  margin: 0;
  color: var(--dh-brown-soft);
  font-size: 12px;
}

.availability-loading,
.availability-empty {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed rgb(112 64 31 / 28%);
  border-radius: 14px;
  background: var(--dh-paper);
}

.availability-loading strong,
.availability-empty strong {
  color: var(--dh-brown);
  font-size: 13px;
}

.availability-loading span,
.availability-empty span {
  color: var(--dh-brown-soft);
  font-size: 11px;
}

.availability-controls {
  display: grid;
  grid-template-columns: minmax(150px, 190px) 1fr;
  gap: 14px;
  align-items: end;
  margin-top: 16px;
}

.availability-controls p {
  margin: 0 0 4px;
}

.availability-controls p strong,
.availability-controls p span {
  display: block;
}

.availability-controls p strong {
  color: var(--dh-brown);
  font-size: 12px;
}

.availability-controls p span {
  margin-top: 3px;
  color: var(--dh-brown-soft);
  font-size: 10px;
}

.availability-list {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.availability-row {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  background: #fffdf7;
  color: var(--dh-brown);
  text-align: left;
  cursor: pointer;
}

.availability-row:first-child {
  border-radius: 13px 13px 0 0;
}

.availability-row:last-child {
  border-bottom: 0;
  border-radius: 0 0 13px 13px;
}

.availability-row:only-child {
  border-radius: 13px;
}

.availability-row:hover,
.availability-row:focus-visible {
  background: var(--dh-paper);
}

.availability-row strong,
.availability-row small,
.availability-quantity b {
  display: block;
}

.availability-row strong {
  font-size: 12px;
}

.availability-row small {
  margin-top: 3px;
  color: var(--dh-brown-soft);
  font-size: 10px;
}

.availability-quantity {
  color: var(--dh-radar);
  text-align: right;
}

.availability-quantity b {
  font-size: 18px;
  line-height: 1;
}

.availability-quantity small {
  color: var(--dh-radar);
  font-size: 9px;
}

.availability-row > svg {
  width: 15px;
  height: 15px;
  color: var(--dh-red);
}

.availability-note {
  margin: 10px 0 0;
  color: var(--dh-brown-soft);
  font-size: 10px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 28px 36px;
  }

  .hero-art {
    height: 470px;
  }

  .live-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  :root {
    --mobile-gutter: 14px;
  }

  body {
    background: var(--dh-cream);
  }

  main {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .site-header {
    height: 64px;
    padding: 0 var(--mobile-gutter);
    background: rgb(255 248 234 / 95%);
  }

  .brand-lockup {
    width: 44px;
    height: 44px;
    overflow: visible;
    border-radius: 13px;
  }

  .brand-logo-wide {
    display: none;
  }

  .brand-logo-mark {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .store-trigger {
    max-width: 176px;
    background: var(--dh-red);
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 28px 0 30px;
  }

  .hero h1 {
    max-width: 10.5ch;
    margin: 12px 0 16px;
    font-size: clamp(44px, 13vw, 58px);
    line-height: .9;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .zip-finder {
    width: 100%;
    margin-top: 22px;
    padding: 14px;
    border-radius: 16px;
  }

  .zip-control {
    gap: 7px;
  }

  .zip-control input,
  .zip-control button {
    height: 52px;
  }

  .hero-art {
    display: none;
  }

  body.has-store:not(.finder-open) .hero {
    display: none;
  }

  body.has-store.finder-open .hero {
    display: block;
    padding: 16px 0 20px;
  }

  .store-strip {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .nearby-select select {
    background: #fffdf7;
  }

  .store-strip .text-button {
    color: var(--dh-red-dark);
  }

  .live-section,
  .state-live-section,
  .catalog-section,
  .pulse-section {
    padding: 38px 0;
  }

  .section-title h2,
  .catalog-section h2 {
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: .94;
  }

  .release-section {
    margin-top: 14px;
    padding: 18px 14px 14px;
    border-radius: 20px;
  }

  .release-heading {
    display: block;
    margin-bottom: 16px;
  }

  .release-heading h2 {
    max-width: 12ch;
    font-size: 32px;
  }

  .release-heading p {
    max-width: 40ch;
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
  }

  .release-grid {
    gap: 8px;
  }

  .release-card {
    display: block;
    min-height: 0;
    border-radius: 15px;
    padding: 0;
  }

  .release-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / .94;
  }

  .release-copy {
    min-height: 176px;
    padding: 12px 10px 14px;
  }

  .release-copy small {
    font-size: 8px;
    letter-spacing: .08em;
  }

  .release-copy strong {
    margin-top: 6px;
    font-size: 19px;
    line-height: 1.02;
  }

  .release-copy span {
    min-height: 30px;
    margin-top: 7px;
    font-size: 10px;
  }

  .release-copy b {
    margin-top: 13px;
    font-size: 10px;
  }

  .release-copy i {
    white-space: normal;
    font-size: 8px;
    line-height: 1.35;
  }

  .release-card > svg {
    display: none;
  }

  .live-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .state-live-toolbar {
    display: block;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 15px;
  }

  .state-live-toolbar p {
    margin: 10px 2px 0;
    font-size: 12px;
  }

  .state-live-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .state-location-column {
    gap: 10px;
  }

  .state-location-card {
    border-radius: 15px;
  }

  .state-location-card > summary {
    min-height: 92px;
    grid-template-columns: 36px minmax(0, 1fr) auto 18px;
    gap: 11px;
    padding: 13px 12px;
  }

  .state-location-pin {
    width: 36px;
    height: 36px;
  }

  .state-location-copy strong {
    font-size: 19px;
  }

  .state-location-count {
    min-width: 36px;
  }

  .state-location-count b {
    font-size: 22px;
  }

  .state-location-product {
    grid-template-columns: 66px minmax(0, 1fr) auto 15px;
    min-height: 76px;
    gap: 10px;
    padding-right: 12px;
  }

  .state-location-image {
    width: 66px;
    height: 75px;
  }

  .live-card,
  .product-card,
  .nearby-store-card {
    border-radius: 15px;
  }

  .nearby-grid {
    gap: 9px;
  }

  .nearby-store-card {
    flex-basis: min(82vw, 318px);
  }

  .catalog-search {
    border-color: var(--line);
    background: #fffdf7;
  }

  .filter-tabs button {
    border-color: rgb(63 27 12 / 18%);
    background: rgb(255 253 247 / 72%);
    color: var(--dh-brown-soft);
  }

  .filter-tabs button.active {
    border-color: var(--dh-brown);
    background: var(--dh-brown);
    color: var(--dh-cream);
  }

  .filter-tabs {
    width: 100%;
    margin-right: 0;
  }

  .product-card-main,
  .product-visual {
    border-radius: 15px 15px 0 0;
  }

  .product-status {
    box-shadow: 0 4px 12px rgb(63 27 12 / 18%);
  }

  .product-card:has(.nearby-stock-shell.open)::after {
    background: rgb(63 27 12 / 60%);
  }

  .nearby-stock-popover {
    background: #fffdf7;
  }

  .pulse-section::after {
    top: 80px;
    right: -160px;
    width: 330px;
    height: 330px;
  }

  footer {
    width: calc(100% - (var(--mobile-gutter) * 2));
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 28px 22px calc(42px + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
  }

  .footer-brand {
    width: 210px;
    height: 58px;
  }

  dialog {
    border-radius: 0;
    background: #fffdf7;
  }

  .dialog-close {
    background: rgb(255 253 247 / 94%);
  }

  .detail-info {
    background: #fffdf7;
  }

  .nationwide-availability {
    margin: 20px 0;
    padding: 20px 0;
  }

  .availability-heading h3 {
    font-size: 27px;
  }

  .availability-controls {
    display: block;
  }

  .availability-controls p {
    margin: 12px 2px 0;
  }

  .availability-row {
    min-height: 68px;
  }
}

@media (max-width: 380px) {
  .store-trigger {
    max-width: 150px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .zip-control button {
    min-width: 100px;
    padding-inline: 10px;
  }

  .state-location-card > summary {
    grid-template-columns: 34px minmax(0, 1fr) auto 16px;
    gap: 8px;
    padding-inline: 10px;
  }

  .state-location-pin {
    width: 34px;
    height: 34px;
  }

  .state-location-copy strong {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header nav a::after {
    transition: none;
  }

  .state-location-chevron {
    transition: none;
  }

  .release-card {
    transition: none;
  }
}

/* Inventory-first hunt hierarchy */
.catalog-section {
  padding-top: 54px;
}

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

.catalog-context {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgb(95 143 40 / 24%);
  border-radius: 17px;
  background: rgb(225 242 195 / 50%);
}

.catalog-context.is-empty {
  border-color: rgb(201 51 36 / 18%);
  background: rgb(246 234 210 / 66%);
}

.catalog-context-copy strong,
.catalog-context-copy span {
  display: block;
}

.catalog-context-copy strong {
  color: var(--dh-brown);
  font-family: var(--brand-heading);
  font-size: 19px;
  line-height: 1.2;
}

.catalog-context-copy span {
  margin-top: 3px;
  color: var(--dh-brown-soft);
  font-size: 12px;
}

.catalog-context-action {
  display: inline-flex;
  min-height: 48px;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--dh-red);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  cursor: pointer;
}

.catalog-context-action:hover,
.catalog-context-action:focus-visible {
  background: var(--dh-red-dark);
}

.catalog-context-action svg {
  width: 15px;
  height: 15px;
}

.live-section .nearby-block {
  margin-top: 0;
}

.catalog-section .affiliate-disclosure {
  margin: 16px 0 0;
}

@media (max-width: 740px) {
  .catalog-section {
    order: 2;
    padding-top: 24px;
  }

  .release-section {
    order: 3;
    margin-top: 0;
  }

  .state-live-section {
    order: 4;
  }

  .live-section {
    order: 5;
  }

  .pulse-section {
    order: 6;
  }

  .catalog-context {
    display: grid;
    gap: 13px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .catalog-context-copy strong {
    font-size: 18px;
  }

  .catalog-context-copy span {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.45;
  }

  .catalog-context-action {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding-inline: 16px;
    font-size: 12px;
  }

  .catalog-tools {
    margin-top: 0;
  }
}

/* Content-first discovery controls */
.hero {
  min-height: 590px;
  grid-template-rows: 1fr;
  align-items: center;
}

.hero-copy {
  align-self: center;
}

.hero-art {
  grid-area: 1 / 2;
}

.discovery-dock {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 253 247 / 58%);
  backdrop-filter: blur(16px) saturate(1.08);
}

.discovery-copy strong {
  display: block;
  margin-top: 5px;
  color: var(--dh-brown);
  font-family: var(--brand-heading);
  font-size: 19px;
}

.state-quick-select {
  position: relative;
  display: grid;
  width: min(100%, 330px);
  min-height: 54px;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 11px;
  border: 1px solid rgb(63 27 12 / 18%);
  border-radius: 15px;
  padding: 7px 12px;
  background: rgb(255 253 247 / 78%);
  cursor: pointer;
}

.state-quick-select > svg {
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  color: var(--dh-red);
}

.state-quick-select > span {
  color: var(--dh-red-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.state-quick-select select {
  width: 100%;
  min-height: 26px;
  border: 0;
  padding: 0 28px 0 0;
  background: transparent;
  color: var(--dh-brown);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  outline: 0;
}

.locator-dialog {
  width: min(540px, calc(100vw - 28px));
  max-height: min(88dvh, 760px);
  overflow: visible;
}

.locator-sheet {
  max-height: min(88dvh, 760px);
  overflow-y: auto;
  padding: 42px 34px 34px;
}

.locator-sheet h2 {
  margin: 8px 0 8px;
  color: var(--dh-brown);
  font-family: var(--brand-heading);
  font-size: clamp(38px, 6vw, 52px);
  line-height: .95;
  letter-spacing: -.045em;
}

.locator-sheet > p {
  max-width: 42ch;
  margin: 0;
  color: var(--dh-brown-soft);
  font-size: 14px;
}

.locator-current {
  display: grid;
  margin: 22px 0 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(246 234 210 / 62%);
}

.locator-current span {
  color: var(--dh-red-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.locator-current strong {
  margin-top: 5px;
  color: var(--dh-brown);
  font-size: 16px;
}

.locator-current small {
  margin-top: 3px;
  color: var(--dh-brown-soft);
  font-size: 11px;
  line-height: 1.4;
}

.locator-dialog .zip-finder {
  position: relative;
  width: 100%;
  grid-area: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.locator-dialog .store-results {
  position: static;
  max-height: 340px;
  margin-top: 10px;
  box-shadow: none;
}

@media (max-width: 740px) {
  .site-header {
    border-bottom-color: rgb(63 27 12 / 9%);
    box-shadow: 0 8px 30px rgb(63 27 12 / 5%);
  }

  .store-trigger,
  .store-trigger:hover,
  .store-trigger:focus-visible {
    border-color: rgb(201 51 36 / 16%);
    background: rgb(255 253 247 / 62%);
    color: var(--dh-red-dark);
    box-shadow: none;
    backdrop-filter: blur(12px);
  }

  .hero,
  body.has-store:not(.finder-open) .hero,
  body.has-store.finder-open .hero {
    display: none;
  }

  .discovery-dock {
    order: 1;
    min-height: 0;
    margin: 10px 0 2px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .discovery-copy {
    display: none;
  }

  .state-quick-select {
    width: 100%;
    min-height: 56px;
    border-color: rgb(63 27 12 / 10%);
    border-radius: 17px;
    padding-inline: 14px;
    background: rgb(255 253 247 / 54%);
    box-shadow: 0 8px 26px rgb(63 27 12 / 5%);
    backdrop-filter: blur(16px) saturate(1.08);
  }

  .store-strip {
    display: none !important;
  }

  .release-section {
    order: 2;
    margin-top: 8px;
  }

  .upcoming-section {
    order: 3;
    margin-top: 8px;
    padding: 22px 18px;
  }

  .catalog-section {
    order: 4;
    padding-top: 30px;
  }

  .state-live-section {
    order: 5;
  }

  .live-section {
    order: 6;
  }

  .pulse-section {
    order: 7;
  }

  .locator-dialog {
    position: fixed;
    inset: auto 8px 0;
    width: calc(100vw - 16px);
    height: auto;
    max-height: min(92dvh, 760px);
    margin: auto;
    border: 1px solid rgb(63 27 12 / 14%);
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
  }

  .locator-dialog::backdrop {
    background: rgb(63 27 12 / 48%);
    backdrop-filter: blur(6px);
  }

  .locator-sheet {
    max-height: min(92dvh, 760px);
    padding: 38px 18px calc(26px + env(safe-area-inset-bottom));
  }

  .locator-sheet h2 {
    font-size: 39px;
  }

  .locator-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .locator-dialog .zip-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .locator-dialog .zip-control input,
  .locator-dialog .zip-control button {
    min-height: 52px;
  }

  .locator-dialog .zip-control button {
    min-width: 112px;
  }

  .upcoming-heading,
  .upcoming-hero {
    grid-template-columns: 1fr;
  }

  .upcoming-heading {
    align-items: start;
  }

  .upcoming-heading p {
    text-align: left;
  }

  .upcoming-preview-grid,
  .upcoming-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Final content priority: real inventory before promotion and archive browsing. */
@media (max-width: 740px) {
  .catalog-section {
    order: 2;
    padding-top: 24px;
  }

  .release-section {
    order: 3;
    margin-top: 0;
  }

  .upcoming-section {
    order: 4;
  }

  .state-live-section {
    order: 5;
  }

  .live-section {
    order: 6;
  }

  .pulse-section {
    order: 7;
  }
}

@media (min-width: 1081px) {
  .product-card:nth-child(4n + 3) .nearby-stock-popover,
  .product-card:nth-child(4n) .nearby-stock-popover {
    right: 11px;
    left: auto;
  }
}

@media (min-width: 741px) and (max-width: 1080px) {
  .product-card:nth-child(3n + 2) .nearby-stock-popover,
  .product-card:nth-child(3n) .nearby-stock-popover {
    right: 11px;
    left: auto;
  }
}
