@import url('/marketing.css?v=20260908-typography-02');

.store-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(179, 136, 62, 0.18), transparent 34%),
    linear-gradient(150deg, #10150f 0%, #171f16 55%, #0f140f 100%);
}
.store-hero h1 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.store-hero__inner > p:last-child { max-width: 34rem; margin: 0; color: var(--muted); font-size: 1.08rem; }

.store-section { min-height: 42rem; padding: clamp(4rem, 7vw, 6rem) 0; background: var(--raised); }
.store-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.store-section__heading .eyebrow { margin-bottom: 0.8rem; }
.store-section__heading h2 { margin: 0; font-size: clamp(2.1rem, 3.6vw, 3.2rem); line-height: 1.08; letter-spacing: -0.03em; }
.store-status { min-height: 1.5em; max-width: 28rem; margin: 0; color: var(--muted); font-size: 0.92rem; text-align: right; }

.store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.store-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, var(--raised-2), #141a13);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}
.store-card__image-wrap { aspect-ratio: 1 / 0.82; overflow: hidden; background: #20271f; }
.store-card img { width: 100%; height: 100%; object-fit: cover; }
.store-card__image-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: var(--faint); font-size: 0.85rem; }
.store-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.45rem; }
.store-card h2 { margin: 0; font-size: 1.65rem; letter-spacing: -0.02em; }
.store-card__description { min-height: 2.8rem; margin: 0.55rem 0 1.25rem; color: var(--muted); font-size: 0.92rem; }
.store-card label { display: grid; gap: 0.42rem; margin-top: auto; color: var(--ink); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.store-card select {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #101510;
  color: var(--ink);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.store-card__price { min-height: 1.5em; margin: 1rem 0; color: var(--muted); font-size: 0.9rem; }
.store-card__price strong { color: var(--brass-bright); font-size: 1.15rem; }
.store-card .button { width: 100%; }
.store-card .button:disabled { cursor: not-allowed; opacity: 0.58; }
.store-empty { grid-column: 1 / -1; margin: 0; color: var(--muted); }

.store-cart {
  position: sticky;
  bottom: 0;
  z-index: 30;
  border-top: 1px solid var(--line-brass);
  background: rgba(10, 13, 10, 0.96);
  box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}
.store-cart[hidden] { display: none; }
.store-cart__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 80px; }
.store-cart__inner > span { color: var(--muted); font-weight: 700; }

@media (max-width: 900px) { .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .store-section__heading { align-items: start; flex-direction: column; margin-bottom: 2rem; }
  .store-status { text-align: left; }
  .store-grid { grid-template-columns: 1fr; }
  .store-card { max-width: 34rem; }
  .store-cart__inner { align-items: stretch; flex-direction: column; justify-content: center; gap: 0.55rem; padding: 0.8rem 0; }
  .store-cart .button { width: 100%; }
}
