/* storefront.css — Customer-facing Fallout Haunt 2026 homepage */

/* Override body centering from main.css for scrollable storefront */
body.storefront {
  display: block;
  align-items: initial;
  justify-content: initial;
  overflow-y: auto;
  --page-shell-width: min(1000px, calc(100% - 48px));
  --page-shell-width-mobile: min(1000px, calc(100% - 32px));
  --page-content-width: min(952px, calc(100% - 96px));
  --page-content-width-mobile: min(936px, calc(100% - 64px));
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(184,150,11,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139,69,19,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-size: clamp(1rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 18px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(184,150,11,0.15); }
  50% { box-shadow: 0 0 20px rgba(184,150,11,0.35); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(184,150,11,0.25);
  margin: 0 0 8px;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
}

.hero-date {
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-cta {
  font-size: 1.1rem;
  padding: 14px 36px;
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(184,150,11,0.15) 0%, transparent 100%);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.hero-cta:hover {
  background: linear-gradient(180deg, rgba(184,150,11,0.28) 0%, transparent 100%);
  box-shadow: 0 0 30px rgba(184,150,11,0.25);
  text-decoration: none;
}

/* ── Sections ─────────────────────────────────────── */
.sf-section {
  max-width: 1000px;
  width: var(--page-shell-width);
  margin: 0 auto;
  padding: 60px 24px;
  box-sizing: border-box;
}

.sf-section-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-align: center;
  margin: 0 0 8px;
}

.sf-section-rule {
  width: 60px;
  height: 2px;
  background: var(--accent-soft);
  margin: 0 auto 32px;
  border: none;
}

.sf-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Ticket Cards ─────────────────────────────────── */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ticket-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1a1816 0%, #0d0a07 100%);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ticket-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 0 20px rgba(184,150,11,0.12);
}

.ticket-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(184,150,11,0.18);
}

.ticket-card.featured::after {
  content: "POPULAR";
  position: absolute;
  top: -1px;
  right: 16px;
  padding: 3px 10px;
  background: var(--accent);
  color: #0d0a07;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}

.ticket-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin: 0 0 6px;
}

.ticket-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 0 4px;
}

.ticket-price sup {
  font-size: 1rem;
  vertical-align: super;
}

.ticket-per {
  font-size: 0.75rem;
  color: #ffffff;
  margin: 0 0 14px;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.82rem;
  color: #ffffff;
}

.ticket-features li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(184,150,11,0.06);
}

.ticket-features li:last-child { border-bottom: none; }

.ticket-buy-btn {
  width: 100%;
  padding: 11px 0;
  border: 1px solid var(--accent-soft);
  background: radial-gradient(circle at top, #2a1f08 0, #0d0a07 55%);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.ticket-buy-btn:hover {
  background: radial-gradient(circle at top, #3a2d10 0, #0d0a07 55%);
  box-shadow: 0 0 16px rgba(184,150,11,0.18);
}

/* ── How It Works (6 steps: 2×3 mobile, 4+2 desktop) ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
}

.step-card {
  text-align: center;
  padding: 18px 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: #0d0a07;
  min-width: 0;
}

.step-card .step-desc a {
  color: var(--accent);
  text-decoration: none;
}

.step-card .step-desc a:hover {
  text-decoration: underline;
}

.steps-trail {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--border-soft, rgba(212, 148, 10, 0.22));
  border-radius: var(--radius, 4px);
  background: rgba(0, 0, 0, 0.45);
  text-align: left;
  position: relative;
  z-index: 1;
}

.steps-trail-title {
  margin: 0 0 10px;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4940a;
}

.steps-trail-lead {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #f0e6d0;
}

.steps-trail-lead strong {
  color: #ffffff;
}

.steps-trail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.steps-trail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 148, 10, 0.28);
  border-radius: var(--radius, 4px);
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.steps-trail-item:hover {
  border-color: rgba(212, 148, 10, 0.55);
  background: rgba(30, 20, 5, 0.55);
  box-shadow: 0 0 16px rgba(212, 148, 10, 0.12);
}

.steps-trail-item-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4940a;
}

.steps-trail-item-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #ffffff;
  opacity: 0.92;
}

@media (min-width: 720px) {
  .steps-trail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0;
}

.step-desc {
  font-size: 0.75rem;
  color: #ffffff;
  margin: 4px 0 0;
}

/* ── Media Section ────────────────────────────────── */
.media-frame {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: #0d0a07;
  padding: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1816 0%, #0d0a07 100%);
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 3px;
}

.trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 22px;
  border: 1px solid var(--border-soft);
  background: #0d0a07;
  color: #ffffff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 4px;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}

.faq-q {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent-soft);
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 8px;
}

/* ── Purchase Modal ───────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,10,7,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: linear-gradient(160deg, #1a1816 0%, #0d0a07 100%);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(184,150,11,0.15);
  padding: 28px 24px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
}

.modal-close:hover { color: #ffffff; opacity: 0.9; }

.modal-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 18px;
}

/* Quantity stepper */
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-soft);
  background: #0d0a07;
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
}

.qty-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 30px;
  text-align: center;
}

.modal-total {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.modal-total strong {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ── Footer ───────────────────────────────────────── */
.sf-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border-soft);
  width: var(--page-content-width);
  box-sizing: border-box;
  margin-top: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 40px 16px; }
  .sf-section {
    width: var(--page-shell-width-mobile);
    padding: 40px 16px;
  }
  .sf-footer { width: var(--page-content-width-mobile); }
  .ticket-grid { grid-template-columns: 1fr; }
  .steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 900px) {
  .steps-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  /* Row 2: center the last two cards under the four above */
  .steps-row .step-card:nth-child(5) {
    grid-column: 2;
  }

  .steps-row .step-card:nth-child(6) {
    grid-column: 3;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .steps-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-row .step-card:nth-child(4) {
    grid-column: 1;
  }

  .steps-row .step-card:nth-child(5) {
    grid-column: 2;
  }

  .steps-row .step-card:nth-child(6) {
    grid-column: 3;
  }
}

/* ── Success overlay ──────────────────────────────── */
.success-check {
  width: 60px;
  height: 60px;
  border: 3px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  color: var(--success);
}
/* Tickets: viewport-locked bunker photo (same on mobile + desktop) */
body.storefront,
.storefront {
  background-color: #0d0a07 !important;
  background-image: none !important;
}

body.storefront::before {
  content: none !important;
  display: none !important;
}

.storefront-page-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  background-color: #0d0a07;
  background-image: url("../img/bg-bunker.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (min-width: 768px) and (max-width: 1100px) {

  .hero {
    min-height: auto;
    padding: 96px 32px 48px;
  }

  .ticket-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .sf-section {
    width: min(1000px, calc(100% - 40px));
    padding: 48px 20px;
  }
}

/* ═══ BUNKER THEME OVERRIDES ═══ */

/* Hero — let the corridor breathe through */
.hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%) !important;
  border-bottom: 1px solid rgba(212,148,10,0.25) !important;
}

/* Ticket cards — glass panels, not walls */
.ticket-card {
  background: rgba(0,0,0,0.35) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(212,148,10,0.2) !important;
  box-shadow: 0 0 12px rgba(0,0,0,0.4) !important;
}

.ticket-card:hover {
  border-color: rgba(212,148,10,0.45) !important;
  box-shadow: 0 0 20px rgba(212,148,10,0.15) !important;
}

.ticket-card.featured {
  background: rgba(30,20,5,0.45) !important;
  border: 1px solid rgba(212,148,10,0.4) !important;
  box-shadow: 0 0 25px rgba(212,148,10,0.12) !important;
}

.ticket-card.featured:hover {
  border-color: #d4940a !important;
  box-shadow: 0 0 30px rgba(212,148,10,0.25) !important;
}

/* Step cards — same treatment */
.step-card {
  background: rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(212,148,10,0.15) !important;
}

.step-card:hover {
  border-color: rgba(212,148,10,0.4) !important;
}

/* Section titles — bright and visible */
.sf-section-title {
  color: #f0e6d0 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7) !important;
}

/* Hero text — high contrast against corridor */
.hero-title {
  color: #f5efe0 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(212,148,10,0.2) !important;
}

.hero-badge {
  color: #d4940a !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}

.hero-subtitle {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}

.hero-subtitle.hero-event-name {
  font-family: var(--font-heading, 'Bebas Neue', sans-serif);
  font-size: clamp(1.75rem, 5vw, 2rem);
  letter-spacing: 0.15em;
  margin-top: -4px;
  color: #d4940a !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 148, 10, 0.35) !important;
}

.hero-date {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7) !important;
}

/* Body text — warm cream, readable */
.sf-text {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}

/* Ticket card text */
.ticket-type {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5) !important;
}

.ticket-price {
  color: #d4940a !important;
  text-shadow: 0 0 15px rgba(212,148,10,0.3) !important;
}

.ticket-per {
  color: #ffffff !important;
}

.ticket-features li {
  color: #ffffff !important;
  border-bottom-color: rgba(212,148,10,0.08) !important;
}

/* Buttons — amber glow */
.ticket-buy-btn {
  border-color: #d4940a !important;
  color: #d4940a !important;
  text-shadow: 0 0 8px rgba(212,148,10,0.3) !important;
  background: rgba(212,148,10,0.08) !important;
}

.ticket-buy-btn:hover {
  background: #d4940a !important;
  color: #0a0a08 !important;
  text-shadow: none !important;
  box-shadow: 0 0 25px rgba(212,148,10,0.4) !important;
}

.ticket-buy-btn:disabled,
.ticket-buy-btn[aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: 0.62 !important;
  background: rgba(120, 120, 120, 0.14) !important;
  border-color: rgba(200, 200, 200, 0.25) !important;
  color: #b8b8b8 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.ticket-buy-btn:disabled:hover,
.ticket-buy-btn[aria-disabled="true"]:hover {
  background: rgba(120, 120, 120, 0.14) !important;
  color: #b8b8b8 !important;
  box-shadow: none !important;
}

.featured .ticket-buy-btn {
  background: #d4940a !important;
  color: #0a0a08 !important;
  text-shadow: none !important;
}

.featured .ticket-buy-btn:hover {
  background: #c9a227 !important;
  box-shadow: 0 0 30px rgba(201,162,39,0.4) !important;
}

/* Step labels */
.step-label {
  color: #d4940a !important;
  text-shadow: 0 0 8px rgba(212,148,10,0.2) !important;
}

.step-desc {
  color: #ffffff !important;
}

.steps-trail-title {
  color: #d4940a !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6) !important;
}

.steps-trail-lead {
  color: #f0e6d0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.steps-trail-item {
  background: rgba(0, 0, 0, 0.45) !important;
  border-color: rgba(212, 148, 10, 0.3) !important;
}

.steps-trail-item-label {
  color: #d4940a !important;
}

.steps-trail-item-desc {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Footer — transparent */
.sf-footer {
  background: transparent !important;
  border-top: 1px solid rgba(212,148,10,0.15) !important;
}

.footer-copy {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}

.footer-copy a {
  color: #d4940a !important;
}

.footer-links a {
  color: #ffffff !important;
}

.footer-links a:hover {
  color: #d4940a !important;
}

/* Section rule — amber gradient */
.sf-section-rule {
  background: linear-gradient(90deg, transparent, #d4940a, transparent) !important;
  opacity: 0.4 !important;
}

/* Modal — same glass treatment */
.modal-overlay {
  background: rgba(0,0,0,0.75) !important;
}

.modal-box {
  background: rgba(10,8,5,0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(212,148,10,0.3) !important;
}

/* Form inputs */
.form-group input {
  background: rgba(0,0,0,0.4) !important;
  border-color: rgba(212,148,10,0.2) !important;
  color: #ffffff !important;
}

.form-group input:focus {
  border-color: #d4940a !important;
  box-shadow: 0 0 10px rgba(212,148,10,0.2) !important;
}

.form-group label {
  color: #ffffff !important;
}

/* Contact form */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.4) !important;
  border: 1px solid rgba(212,148,10,0.2) !important;
  color: #ffffff !important;
  border-radius: 4px;
  padding: 10px 12px;
  resize: vertical;
  min-height: 120px;
}

.form-group textarea:focus {
  border-color: #d4940a !important;
  box-shadow: 0 0 10px rgba(212,148,10,0.2) !important;
  outline: none;
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* TICKET BUTTON ALIGNMENT FIX */
.ticket-card{display:flex!important;flex-direction:column!important;}
.ticket-features{flex:1!important;}
.ticket-buy-btn{margin-top:auto!important;}

/* Mobile tickets: readable mono body (desktop typography unchanged) */
@media (max-width: 900px) {
  body.storefront {
    --font-body: 'Share Tech Mono', monospace;
    font-family: var(--font-mono) !important;
  }

  body.storefront .hero-subtitle,
  body.storefront .hero-date,
  body.storefront .sf-text,
  body.storefront .ticket-per,
  body.storefront .ticket-features li,
  body.storefront .step-desc,
  body.storefront .steps-trail-lead,
  body.storefront .steps-trail-item-desc,
  body.storefront .contact-form,
  body.storefront .contact-form label,
  body.storefront .contact-form input,
  body.storefront .contact-form textarea,
  body.storefront .customer-merch-bar,
  body.storefront .modal-box,
  body.storefront .modal-box p,
  body.storefront .modal-box label,
  body.storefront .modal-box input,
  body.storefront .modal-box select {
    font-family: var(--font-mono) !important;
  }
}
