.page--store .store-layout {
  --gap: 1.25rem;
  --radius: 14px;
  --wrap: 1040px;
}

.page--store {
  background: radial-gradient(120% 120% at 16% 20%, #111827 0%, #0b1220 55%, #070c16 100%);
  color: #e5e7eb;
}

.page--store .store-hero {
  text-align: left;
  margin: 0 0 24px;
  display: grid;
  gap: 6px;
}

.page--store .store-hero .kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #9aa3af;
  margin: 0;
}

.page--store .store-hero .title {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  margin: 0;
  color: #f9fafb;
}

.page--store .store-hero .sub {
  color: #9ca3af;
  font-size: clamp(14px, 1.6vw, 16px);
  margin: 0;
}

/* Shelf + Product card */
.page--store .store-page {
  color: #e5e7eb;
  padding: 32px 16px 80px;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.page--store .shelf {
  display: grid;
  gap: var(--gap);
  max-width: var(--wrap);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page--store .product {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  color: #e5e7eb;
}

.page--store .product .media {
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #0e1116;
  display: grid;
  place-items: center;
}

.page--store .product .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page--store .product .details {
  display: grid;
  gap: 10px;
  align-content: start;
}

.page--store .product .kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #9aa3af;
}

.page--store .product h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  margin: 0;
  line-height: 1.2;
}

.page--store .product .desc {
  color: #c8d0da;
  font-size: 15px;
}

.page--store .product .bullets {
  margin: 6px 0 0;
  padding-left: 18px;
  color: #c8d0da;
}

.page--store .product .meta {
  color: #9aa3af;
  font-size: 13px;
}

.page--store .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.page--store .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.page--store .btn.primary {
  background: #2dd4bf;
  color: #0b0f14;
}

.page--store .btn.primary:hover {
  filter: brightness(0.95);
}

.page--store .btn.secondary {
  background: transparent;
  color: #c8d0da;
  border-color: rgba(255, 255, 255, 0.18);
}

.page--store .note {
  color: #9aa3af;
  font-size: 12px;
  margin-top: 4px;
}

.page--store .affiliate-disclaimer {
  margin: 12px 0 0;
  font-size: 0.9em;
  color: #9aa3af;
}

/* Responsive: two columns on medium+ */
@media (min-width: 760px) {
  .page--store .product {
    grid-template-columns: minmax(300px, 1fr) 1.1fr;
    padding: 20px;
  }
}

/* Slightly wider wrap on XL */
@media (min-width: 1200px) {
  .page--store .shelf {
    max-width: 1080px;
  }
}

@media (min-width: 900px) {
  main[aria-labelledby="store-title"] {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .page--store .store-page {
    padding: 40px 24px 96px;
  }

  .page--store .shelf {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
  }

  .page--store .product {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 24px;
    height: 100%;
  }

  .page--store .product .details {
    gap: 14px;
  }

  .page--store .product h2 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .page--store .product .desc {
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }

  .page--store .store-faqs {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }

  .page--store .store-faqs details {
    margin: 1rem 0;
  }
}

.page--store .store-faqs {
  margin: 32px 16px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  color: #e5e7eb;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.page--store .store-faqs .card__header h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.page--store .store-faqs .card__body {
  display: grid;
  gap: 14px;
}

.page--store .store-faqs details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 4px);
  padding: 14px 16px;
  margin: 0.5rem 0;
}

.page--store .store-faqs summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}

.page--store .store-faqs summary::-webkit-details-marker {
  display: none;
}

.page--store .store-faq-body {
  margin-top: 8px;
  color: #c8d0da;
}

.page--store .store-faqs .store-faq-body p {
  margin: 0.4rem 0 0;
  line-height: 1.6;
  max-width: 65ch;
}