/* raffle.css — Phase 1 raffle page page-specific styling.
   Reuses .section / .container / .cards-3 / .faq-list / .faq-item / .bullets
   / .btn / .footer-* / .site-* from /styles.css. Only adds the bits the
   shared stylesheet doesn't already cover: the live ticket counter, the
   prize photo+copy two-column block, the bundle pricing variant, and the
   sold-out banner. */

/* ===== Live ticket counter ===== */
.raffle-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--ff-display);
  margin-top: 8px;
}
.counter-sold {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}
.counter-sep {
  font-size: 1.5rem;
  color: var(--muted);
}
.counter-cap {
  font-size: 2rem;
  color: var(--muted);
}
.counter-label {
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Center the counter under the centered hero copy. */
.section .container.narrow:has(.raffle-counter) {
  text-align: center;
}

/* ===== Prize photo + copy two-column ===== */
.prize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.prize-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--bg);
}
.prize-value {
  margin-top: 16px;
  font-size: 1.05rem;
}
@media (max-width: 920px) {
  .prize-grid { grid-template-columns: 1fr; gap: 32px; }
  .prize-photo { max-width: 520px; margin: 0 auto; }
}

/* ===== Bundle cards =====
   Each card uses the brand card pattern (white bg, --line border, --shadow,
   --radius). The highlight variant matches .gear-card-highlight from the
   main site (2px accent border + accent badge label). */
.bundle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.bundle-card-highlight {
  border: 2px solid var(--accent);
}
.bundle-card-highlight::before {
  content: "Best value";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.bundle-price {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 12px 0 6px;
}

/* ===== Sold-out banner =====
   Mirrors the main site's .contact section pattern (navy bg, light text). */
.raffle-soldout {
  background: var(--navy);
  color: #e7ecf4;
}
.raffle-soldout h2 { color: #fff; margin-bottom: 12px; }
.raffle-soldout p  { color: #c3cbdb; }
