.store-hero {
  min-height: 720px;
  padding: 150px max(4vw, calc((100vw - var(--content)) / 2)) 90px;
  background:
    radial-gradient(circle at 75% 15%, rgba(216, 173, 86, 0.13), transparent 33%),
    linear-gradient(120deg, rgba(7, 25, 43, 0.98), rgba(13, 13, 12, 0.98));
  border-bottom: 1px solid var(--gold-soft);
}

.store-kicker,
.product-meta-row,
.product-price span,
.control-pill,
.route-pill {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-kicker {
  color: var(--gold);
  font-size: 0.76rem;
}

.store-hero h1 {
  max-width: 880px;
  margin-bottom: 1.4rem;
}

.store-lede {
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.store-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin-top: 2.4rem;
}

.store-stat {
  padding: 1.2rem;
  border: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.18);
}

.store-stat strong {
  display: block;
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
}

.store-stat span {
  color: var(--ivory-muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-shell {
  padding: 90px max(4vw, calc((100vw - var(--content)) / 2));
  background: var(--ink);
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: 70px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--rule);
  background: var(--navy-deep);
}

.route-panel p {
  color: var(--ivory-muted);
}

.route-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
}

.control-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.control-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(216, 173, 86, 0.18);
  color: var(--ivory-muted);
}

.control-pill {
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.66rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(216, 173, 86, 0.35);
  background: linear-gradient(180deg, rgba(16, 38, 64, 0.38), rgba(8, 8, 7, 0.92));
}

.product-card-featured {
  border-color: var(--gold);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.66rem;
}

.product-card h3 {
  margin: 0 0 0.7rem;
  color: var(--ivory);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.product-headline {
  color: var(--gold);
  font-size: 1.03rem;
  line-height: 1.45;
}

.product-description,
.product-includes,
.product-gates {
  color: var(--ivory-muted);
}

.product-includes {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
}

.product-commerce-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(216, 173, 86, 0.22);
}

.product-price {
  margin: 0;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.product-price span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ivory-muted);
  font-size: 0.62rem;
}

.store-button {
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-button-primary {
  color: var(--navy-deep);
  background: var(--gold);
  text-decoration: none;
}

.store-button-disabled {
  color: var(--ivory-muted);
  background: transparent;
  cursor: not-allowed;
  opacity: 0.72;
}

.product-gates {
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.product-gates summary {
  color: var(--gold);
  cursor: pointer;
}

.product-gates ul {
  margin-bottom: 0;
}

.commerce-note {
  margin-top: 70px;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-left: 2px solid var(--gold);
  background: var(--ink-soft);
  color: var(--ivory-muted);
}

.commerce-note strong {
  color: var(--gold);
}

@media (max-width: 900px) {
  .store-hero {
    min-height: auto;
    padding: 85px 5vw 70px;
  }

  .store-status-grid,
  .route-panel,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .store-shell {
    padding: 70px 5vw;
  }
}

@media (max-width: 520px) {
  .product-commerce-row,
  .control-list li,
  .product-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }
}
