/* ─── Moonmoth — Product Page ─── */

.product-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Product cover mockup */
.product-cover {
  position: relative;
}

.product-cover-book {
  background: linear-gradient(165deg, #2a1a4a 0%, #1a1035 40%, #231946 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 4px 14px 14px 4px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  box-shadow:
    -5px 0 0 #0d0a1a,
    -8px 0 0 var(--gold-dim),
    0 30px 80px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
}

.product-cover-book::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(to right, rgba(201,168,76,0.15), transparent);
}

.cover-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cover-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.cover-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

.cover-sections {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cover-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--cream-dim);
}
.cover-section-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.55rem;
}
.cover-section-icon svg { width: 9px; height: 9px; fill: var(--gold); }

.cover-divider {
  border: none;
  border-top: 1px solid var(--gold-dim);
  margin: 1.5rem 0;
}

.cover-edition {
  font-size: 0.65rem;
  color: var(--cream-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* decorative corners on cover */
.cover-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-dim);
  border-style: solid;
}
.cover-corner-tl { top: 12px; left: 20px; border-width: 1px 0 0 1px; }
.cover-corner-br { bottom: 12px; right: 20px; border-width: 0 1px 1px 0; }

/* Product info */
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.product-info .tagline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.product-info .description {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.fl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.fl-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201,168,76,0.05);
}
.fl-check svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Price + CTA */
.price-box {
  background: var(--bg-surface);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
}

.price-meta {
  font-size: 0.78rem;
  color: var(--cream-muted);
}

.price-note {
  font-size: 0.75rem;
  color: var(--cream-muted);
  text-align: center;
}

/* ─── INSPIDE PREVIEW ─── */
.inside-preview {
  padding: 3rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--gold-dim);
}

.inside-preview h2 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-previews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.page-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  overflow: hidden;
}

.page-preview-top {
  background: linear-gradient(135deg, #1a1035, #231946);
  padding: 1.25rem;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ppt-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.ppt-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.3;
}

.page-preview-body {
  padding: 0.9rem 1.25rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
  line-height: 1.5;
  border-top: 1px solid var(--gold-dim);
}

/* ─── TRUST BADGES ─── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  border-top: 1px solid var(--gold-dim);
  max-width: 700px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--cream-muted);
}
.trust-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }