/* ============================================================
   STORE PAGE — /assets/css/pages/store.css
   Scoped under .store-page-shell
   Mobile-first: base = <480px, scale up
   ============================================================ */

/* ── Reset / base scope ─────────────────────────────────────── */
.store-page-shell {
  --store-red:      #E8193C;
  --store-red-dim:  rgba(232, 25, 60, 0.12);
  --store-dim:      var(--text-secondary, #b0b0c0);
  --store-muted:    var(--text-tertiary, #707080);
  --store-border:   var(--border-color, #2a2a3a);
  --store-surface:  var(--bg-surface, #111118);
  --store-elevated: var(--bg-elevated, #1a1a24);

  display: block;
  overflow-x: hidden;
  padding-bottom: var(--mobile-bottom-bar-height, 0px);
}

.store-page-shell *,
.store-page-shell *::before,
.store-page-shell *::after {
  box-sizing: border-box;
}

/* ── Local nav ──────────────────────────────────────────────── */
.store-local-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--store-border);
}

.store-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 52px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.store-nav-logo {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--store-red);
  text-decoration: none;
  flex-shrink: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.store-nav-links::-webkit-scrollbar { display: none; }

.store-nav-link {
  flex-shrink: 0;
  padding: 0 14px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--store-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-radius: 2px;
}

.store-nav-link:hover,
.store-nav-link:focus-visible {
  color: var(--store-red);
  outline: none;
}

/* ── Hero ───────────────────────────────────────────────────── */
.store-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.store-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.3) 0%,
    rgba(10,10,15,0.55) 40%,
    rgba(10,10,15,0.85) 80%,
    rgba(10,10,15,0.97) 100%
  );
  pointer-events: none;
}

.store-hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232,25,60,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.store-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px 56px;
  max-width: 600px;
}

.store-hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--store-red);
  margin-bottom: 16px;
}

.store-hero-title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}

.store-hero-title em {
  font-style: italic;
  color: var(--store-red);
}

.store-hero-soon {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--store-red);
  border: 1px solid var(--store-red);
  padding: 5px 12px;
  margin-bottom: 20px;
}

.store-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--store-dim);
  max-width: 480px;
  margin: 0 0 28px;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.store-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 100%);
}

/* ── Buttons ────────────────────────────────────────────────── */
.store-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--store-red);
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
  overflow-wrap: normal;
  white-space: normal;
  text-align: center;
}

.store-btn-primary:hover,
.store-btn-primary:focus-visible {
  background: #ff2a4f;
  outline: 2px solid var(--store-red);
  outline-offset: 2px;
}

.store-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.store-btn-outline:hover,
.store-btn-outline:focus-visible {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

.store-btn-wide {
  width: 100%;
  max-width: 380px;
}

/* ── Page body ──────────────────────────────────────────────── */
.store-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.store-anchor {
  display: block;
  height: 0;
  /* accounts for sticky nav (~52px) + some breathing room */
  margin-top: -52px;
  padding-top: 72px;
  pointer-events: none;
}

/* ── Divider ────────────────────────────────────────────────── */
.store-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 56px 0 32px;
}

.store-divider-line {
  flex: 1;
  height: 1px;
  background: var(--store-border);
  min-width: 0;
}

.store-divider-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--store-muted);
  white-space: nowrap;
}

/* ── Eye / title / rule ─────────────────────────────────────── */
.store-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--store-red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.store-eye span { color: var(--store-muted); }

.store-section-title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}

.store-section-title em {
  font-style: italic;
  color: var(--store-red);
}

.store-rule {
  width: 48px;
  height: 2px;
  background: var(--store-red);
  margin-bottom: 20px;
}

.store-body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--store-dim);
  max-width: 560px;
  margin-bottom: 24px;
}

/* ── Statement block ────────────────────────────────────────── */
.store-statement {
  border-left: 3px solid var(--store-red);
  padding: 16px 20px;
  background: var(--store-red-dim);
  border-radius: 0 4px 4px 0;
  margin-top: 24px;
}

.store-statement-eye {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--store-red);
  margin-bottom: 8px;
}

.store-statement p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--store-dim);
  margin: 0;
}

/* ── Reveal animation ───────────────────────────────────────── */
.store-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .store-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Lifestyle grid ─────────────────────────────────────────── */
.store-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
}

.store-lg-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--store-elevated);
}

/* Span patterns: mobile default = 2-col grid */
.store-lg-a,
.store-lg-b,
.store-lg-g { grid-column: span 2; aspect-ratio: 16/9; }

.store-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.store-lg-item:hover .store-photo { transform: scale(1.03); }

.store-lg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--store-red);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.store-lg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,15,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.store-lg-item:hover .store-lg-overlay,
.store-lg-item:focus-within .store-lg-overlay { opacity: 1; }

.store-lg-overlay-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

/* ── Motion section ─────────────────────────────────────────── */
.store-motion-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}

.store-iphone-wrap {
  flex-shrink: 0;
}

.store-iphone-shell {
  width: min(220px, 60vw);
  aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 32px;
  border: 2px solid #333;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.store-iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 12px;
  background: #0a0a0a;
  border-radius: 6px;
  z-index: 2;
}

.store-iphone-screen {
  position: absolute;
  inset: 0;
}

.store-iphone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-motion-text { max-width: 480px; }

.store-motion-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--store-muted);
  margin-top: 20px;
}

/* ── Music section ──────────────────────────────────────────── */
.store-music-section { margin-bottom: 16px; }

.store-music-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--store-dim);
  border: 1px solid var(--store-border);
  padding: 16px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.store-tracks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  background: transparent;
  transition: background 0.2s ease;
  min-width: 0;
}

.store-track:hover { background: var(--store-elevated); }
.store-track.is-playing { background: var(--store-elevated); }

.store-track-play {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  display: block;
}

.store-track-cover {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.store-track-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.store-track-play-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.store-track:hover .store-track-play-icon,
.store-track.is-playing .store-track-play-icon { opacity: 1; }

.store-track.is-playing .store-track-play-icon svg path { d: path("M6 19h4V5H6v14zm8-14v14h4V5h-4z"); }

.store-track-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-track-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--store-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.store-track-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #f0f0f8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.store-track.is-playing .store-track-name { color: var(--store-red); }

.store-track-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--store-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Player bar */
.store-player-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  background: var(--store-elevated);
  border-radius: 4px;
  margin-top: 8px;
  min-width: 0;
}

.store-player-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--store-dim);
  flex-shrink: 0;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-progress-wrap { flex: 1; min-width: 0; }

.store-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.store-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--store-red);
  border-radius: 2px;
  transition: width 0.4s linear;
}

.store-player-time {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--store-muted);
  flex-shrink: 0;
}

/* ── Countdown ──────────────────────────────────────────────── */
.store-countdown-wrap {
  margin-bottom: 40px;
}

.store-countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--store-muted);
  margin-bottom: 16px;
}

.store-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.store-countdown::-webkit-scrollbar { display: none; }

.store-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 12px 8px;
  background: var(--store-elevated);
  border: 1px solid var(--store-border);
  border-radius: 4px;
  flex-shrink: 0;
}

.store-cd-num {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.store-cd-unit {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--store-muted);
  margin-top: 4px;
}

.store-cd-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--store-red);
  line-height: 1;
  flex-shrink: 0;
  padding-bottom: 16px; /* align with top of number */
}

/* ── Pre-order cards ────────────────────────────────────────── */
.store-preorder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.store-preorder-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.store-preorder-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.store-preorder-card:hover .store-preorder-img { transform: scale(1.03); }

.store-preorder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.4) 60%, transparent 100%);
}

.store-preorder-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-preorder-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--store-red);
  border: 1px solid var(--store-red);
  padding: 3px 10px;
  align-self: flex-start;
  border-radius: 2px;
}

.store-preorder-name {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.store-preorder-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── Pre-order form ─────────────────────────────────────────── */
.store-form-section {
  background: var(--store-elevated);
  border: 1px solid var(--store-border);
  border-radius: 6px;
  margin-bottom: 40px;
}

.store-form-inner {
  padding: 28px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.store-form { display: flex; flex-direction: column; gap: 14px; }

.store-form-row--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.store-field { display: flex; flex-direction: column; gap: 6px; }

.store-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--store-dim);
}

.store-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--store-border);
  border-radius: 2px;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 15px;
  color: var(--text-primary, #f0f0f8);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.store-input:focus {
  border-color: var(--store-red);
}

.store-select { cursor: pointer; }

.store-form-submit {
  padding-top: 4px;
  display: flex;
}

.store-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #4ade80;
  text-align: center;
}

.store-form-note {
  font-size: 12px;
  color: var(--store-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ── Eco cards ──────────────────────────────────────────────── */
.store-eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 16px;
}

.store-eco-card {
  border: 1px solid var(--store-border);
  border-radius: 6px;
  padding: 24px 20px;
  position: relative;
  background: var(--store-elevated);
}

.store-eco-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--store-muted);
}

.store-eco-icon {
  width: 28px;
  height: 28px;
  fill: var(--store-red);
  margin-bottom: 12px;
  display: block;
}

.store-eco-card h3 {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.store-eco-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--store-dim);
  margin: 0;
}

/* ── Shop assistant ─────────────────────────────────────────── */
.store-assistant-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.store-assistant-video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 300px;
}

.store-assistant-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-assistant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,15,0.6) 0%, transparent 60%);
}

.store-assistant-video-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}

.store-assistant-chat-wrap {
  border: 1px solid var(--store-border);
  border-radius: 6px;
  overflow: hidden;
}

.store-assistant-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--store-elevated);
  border-bottom: 1px solid var(--store-border);
}

.store-chat-dot {
  width: 8px;
  height: 8px;
  background: var(--store-red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: store-pulse 1.5s ease-in-out infinite;
}

@keyframes store-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.85); }
}

.store-chat-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary, #f0f0f8);
  letter-spacing: 0.05em;
}

.store-assistant-chat-body {
  min-height: 300px;
  padding: 4px;
}

/* ── Responsive scaling ─────────────────────────────────────── */

@media (min-width: 480px) {
  .store-page-body { padding: 0 20px; }

  .store-lifestyle-grid { gap: 8px; }

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

@media (min-width: 640px) {
  .store-preorder-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-motion-section {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .store-motion-text { flex: 1; }

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

@media (min-width: 900px) {
  .store-page-body { padding: 0 40px; }

  .store-hero-content { padding: 120px 40px 80px; }

  /* Lifestyle grid: unlock magazine-style layout */
  .store-lifestyle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .store-lg-a  { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .store-lg-b  { grid-column: span 1; aspect-ratio: 3/4; }
  .store-lg-g  { grid-column: span 1; aspect-ratio: 3/4; }
  .store-lg-i  { grid-column: span 1; }

  /* Pre-order cards: 3 col */
  .store-preorder-grid { grid-template-columns: repeat(3, 1fr); }

  .store-eco-grid { grid-template-columns: repeat(3, 1fr); }

  .store-assistant-stack { flex-direction: row; }
  .store-assistant-video-wrap { flex: 1; max-height: none; aspect-ratio: auto; min-height: 400px; }
  .store-assistant-chat-wrap { width: 360px; flex-shrink: 0; }

  .store-motions-section { gap: 64px; }
}

@media (min-width: 1200px) {
  .store-page-body { padding: 0 60px; }
}
