/* ============================================================
   PRODUCT.CSS
   ============================================================ */

.product-hero {
  padding-block: 90px 70px;
}
.back { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--dim); font-size: 0.85rem; margin-bottom: 1.6rem; transition: color 0.18s; }
.back:hover { color: var(--accent); }
.product-hero h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 0.9rem; }
.product-hero p  { color: var(--dim); max-width: 54ch; margin-bottom: 2rem; }

/* ── Pricing ── */
.pass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 170px;
}
.pass-duration {
  font-size: 0.75rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pass-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(197, 62, 245, 0.55);
  line-height: 1;
}
.pass .badge {
  position: static;
  white-space: nowrap;
}
.passes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  width: 100%;
}

/* ── Gallery ── */
#showcase { background: var(--bg-card); }
.gallery-main {
  width: 100%; 
  aspect-ratio: 16/9;
  background: #1a1428; border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 0.8rem; overflow: hidden; margin-bottom: 0.75rem;
}
.gallery-main img { 
  /* width: 100%;  */
  /* height: 100%;  */
  /* object-fit: contain;  */
  max-height: 60vh;
}
.thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb {
  width: 100px; 
  aspect-ratio: 16/9;
  /* aspect-ratio: 1; */
  background: #1a1428; border-radius: 6px;
  border: 2px solid transparent; cursor: pointer;
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; transition: border-color 0.15s;
}
.thumb:hover  { border-color: rgba(197,62,245,0.4); }
.thumb.active { border-color: var(--accent); }

/* ── Video ── */
#video { background: var(--bg); }
.video-wrap {
  width: 100%; aspect-ratio: 16/9; margin-top: 2rem;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-ph {
  margin-top: 2rem; aspect-ratio: 16/9; border-radius: var(--radius);
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 0.8rem; gap: 0.5rem;
}

/* ── Features ── */
#features { background: var(--bg-card); }
.feat-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feat-group-title { font-weight: 600; font-size: 0.85rem; color: var(--accent); margin-bottom: 0.6rem; letter-spacing: 0.03em; }
.feat-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.feat-group li { font-size: 0.85rem; color: var(--dim); display: flex; align-items: baseline; gap: 0.5rem; }
.feat-group li::before { content: '–'; color: var(--accent); flex-shrink: 0; }

/* ── Purchase ── */
#purchase { background: var(--bg); }
.buy-box {
  max-width: 580px; margin-inline: auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem; text-align: center;
}
.buy-box h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.buy-box p  { color: var(--dim); font-size: 0.875rem; margin-bottom: 1.5rem; }

@media (max-width: 600px) {
  .product-hero { padding-block: 64px 48px; }
}
