/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --blue:       #4B9CD3;
  --navy:       #000080;
  --gray:       #D4D4D4;
  --dark:       #111827;
  --white:      #ffffff;
  --text:       #1f2937;
  --text-muted: #6b7280;
  --bg-alt:     #f3f4f6;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(0,0,0,.10);
  --shadow-md:  0 4px 20px rgba(0,0,0,.16);
  --max-w:      1100px;
  --section-v:  5rem;
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-v) 1.25rem; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: .5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }

/* ─── ANNOUNCEMENT BANNER ────────────────────────────────────────────────── */
.announcement-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .875rem;
  font-weight: 600;
}

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-main a {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .15s;
}
.nav-main a:hover { color: var(--blue); }
.nav-main .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
}
.nav-main .nav-cta:hover { opacity: .9; color: var(--white); transform: translateY(-1px); }
.nav-cta--notify { background: var(--navy) !important; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  background: #00005c;
  padding: .5rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--blue); }
.nav-drawer .nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  text-align: center;
  padding: .75rem;
  border-radius: var(--radius);
  border-bottom: none;
  margin-top: .75rem;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-main   { display: flex; }
  .nav-drawer { display: none !important; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,128,.72) 0%, rgba(0,0,0,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  max-width: 680px;
  width: 100%;
}
.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 1.75rem;
  filter: brightness(0) invert(1);
}
.hero-tagline {
  font-size: clamp(2.25rem, 7vw, 4rem);
  color: var(--white);
  margin-bottom: .75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero-session-dates {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 2rem;
}
.hero-session-dates span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .02em;
}
@media (min-width: 480px) {
  .hero-session-dates { flex-direction: row; justify-content: center; gap: 2rem; }
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-body p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-body p:last-of-type { margin-bottom: 0; }
.foundation-callout {
  margin-top: 2rem;
  padding: 1.125rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  text-align: left;
  font-size: .95rem;
  color: var(--text-muted);
}
.foundation-callout a { color: var(--blue); font-weight: 600; }
.foundation-callout a:hover { text-decoration: underline; }

/* ─── SESSIONS ───────────────────────────────────────────────────────────── */
.sessions { background: var(--bg-alt); }
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .sessions-grid { grid-template-columns: 1fr 1fr; }
  .session-card--combo { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .sessions-grid { grid-template-columns: 1fr 1fr 1fr; }
  .session-card--combo { grid-column: auto; }
}

.session-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 4px solid var(--blue);
  position: relative;
}
.session-card--combo { border-top-color: var(--navy); }

.session-badge {
  position: absolute;
  top: -13px;
  right: 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  border-radius: 20px;
}
.session-card h3 { font-size: 1.2rem; color: var(--navy); }
.session-details {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.session-details strong {
  display: block;
  color: var(--text);
  font-size: .9rem;
  margin-bottom: .15rem;
}
.session-price {
  margin-top: auto;
  padding-top: .875rem;
  border-top: 1px solid var(--gray);
}
.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.session-card .btn { width: 100%; text-align: center; margin-top: .75rem; }

.laundry-addon {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  border-left: 4px solid var(--blue);
}
.laundry-addon-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  flex-shrink: 0;
  padding-top: .2rem;
  white-space: nowrap;
}
.laundry-addon p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.laundry-addon strong { color: var(--text); }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub   { color: rgba(255,255,255,.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  left: 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--blue);
  opacity: .4;
  pointer-events: none;
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 700;
  font-size: .875rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.testimonial-role {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: .1rem;
}

/* ─── COACHES ────────────────────────────────────────────────────────────── */
.coaches { background: var(--bg-alt); }
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .coaches-grid { grid-template-columns: 1fr 1fr; }
}
.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}
.coach-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}
.coach-info { padding: 1.25rem 1.25rem 1.5rem; }
.coach-name { font-size: 1.15rem; color: var(--navy); margin-bottom: .2rem; }
.coach-title {
  font-family: 'Open Sans', sans-serif;
  font-size: .8rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.coach-bio { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-body { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-col-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-col-logo p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.footer-col address {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.85;
  color: rgba(255,255,255,.6);
}
.footer-col address strong {
  display: block;
  color: rgba(255,255,255,.85);
  margin-top: .875rem;
}
.footer-col address strong:first-child { margin-top: 0; }
.footer-col a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: var(--blue); }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6rem; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: .875rem 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--gray);
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 680px) { .contact-grid { grid-template-columns: 1.5fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: .7rem .875rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { min-height: 150px; resize: vertical; }

.contact-success {
  background: #d1fae5;
  border: 1.5px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
}
.contact-info h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  margin-bottom: .875rem;
}
.contact-info address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.contact-info address strong {
  display: block;
  color: var(--text);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 1.25rem;
}
.contact-info address strong:first-child { margin-top: 0; }
.contact-info a { color: var(--blue); }
.contact-info a:hover { text-decoration: underline; }

/* ─── POSITION BUNDLES ───────────────────────────────────────────────────── */
.bundles-intro {
  max-width: 680px;
  margin: 0 auto 2.75rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .bundles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .bundles-grid { grid-template-columns: 1fr 1fr 1fr; } }

.bundle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-top: 4px solid var(--blue);
}
.bundle-tags {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .875rem;
}
.bundle-tag {
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .28rem .7rem;
  border-radius: 20px;
}
.bundle-sep {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.bundle-card h3 { font-size: .95rem; color: var(--navy); margin-bottom: .4rem; }
.bundle-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── ACADEMY PAGE ───────────────────────────────────────────────────────── */
.academy-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.academy-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr 1fr; } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border-top: 3px solid var(--blue);
}
.feature-card h3 { font-size: .95rem; color: var(--navy); margin-bottom: .4rem; }
.feature-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.academy-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.academy-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: .75rem; }
.academy-cta p  { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* ─── SPONSORS ───────────────────────────────────────────────────────────── */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.sponsor-logo {
  max-height: 60px;
  width: auto;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .2s, opacity .2s;
}
.sponsor-logo:hover { filter: grayscale(0); opacity: 1; }

/* ─── CHECKOUT ───────────────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 768px) { .checkout-layout { grid-template-columns: 1.3fr 1fr; } }

.checkout-section-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gray);
}
.checkout-form { display: flex; flex-direction: column; }
.checkout-divider { border: none; border-top: 1px solid var(--gray); margin: 1.5rem 0 1.25rem; }

/* Radio product cards */
.product-option { position: absolute; opacity: 0; width: 0; height: 0; }
.product-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  margin-bottom: .75rem;
  user-select: none;
}
.product-option-label:hover { border-color: #9ecde8; }
.product-option:checked + .product-option-label { border-color: var(--blue); background: #eff7fd; }
.product-option-label--combo { border-color: rgba(0,0,128,.2); }
.product-option:checked + .product-option-label--combo { border-color: var(--navy); background: #f0f0ff; }
.product-option-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .65rem;
  border-radius: 20px;
  margin-bottom: .35rem;
}
.product-option-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--navy);
  margin-bottom: .15rem;
}
.product-option-detail { font-size: .8rem; color: var(--text-muted); line-height: 1.45; }
.product-option-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-option-label--sold-out {
  position: relative;
  cursor: not-allowed;
  opacity: .55;
  border-color: var(--gray) !important;
  background: #f5f5f5 !important;
}
.product-option-label--sold-out:hover { border-color: var(--gray) !important; }
.product-option-sold-out-badge {
  position: absolute;
  top: .6rem;
  right: .75rem;
  background: #888;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .55rem;
  border-radius: 20px;
}

/* Add-on row */
.addon-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.addon-row:has(input:checked) { border-color: var(--blue); background: #eff7fd; }
.addon-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
  cursor: pointer;
}
.addon-row label { cursor: pointer; font-size: .875rem; flex: 1; line-height: 1.4; }
.addon-price { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--navy); font-size: .95rem; flex-shrink: 0; }

/* Coupon */
.coupon-row { display: flex; gap: .5rem; }
.coupon-row input {
  flex: 1;
  padding: .65rem .875rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .15s;
}
.coupon-row input:focus { outline: none; border-color: var(--blue); }
.coupon-row button {
  padding: .65rem 1rem;
  background: var(--bg-alt);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  color: var(--navy);
  transition: background .15s;
  white-space: nowrap;
}
.coupon-row button:hover { background: var(--gray); }
.coupon-row button:disabled { opacity: .5; cursor: not-allowed; }
.coupon-msg { font-size: .8rem; margin-top: .5rem; min-height: 1.1rem; }
.coupon-msg.valid   { color: #059669; }
.coupon-msg.invalid { color: #dc2626; }

/* Summary panel */
.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border-top: 4px solid var(--blue);
}
@media (min-width: 768px) { .checkout-summary { position: sticky; top: 80px; } }
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--bg-alt);
}
.summary-item .s-label  { color: var(--text-muted); }
.summary-item .s-amount { font-weight: 700; color: var(--text); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 2px solid var(--navy);
}
.summary-total .s-label {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
}
.summary-total .s-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}
#checkout-btn { width: 100%; text-align: center; margin-top: 1.25rem; display: block; }
#checkout-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.checkout-error {
  margin-top: .875rem;
  padding: .75rem 1rem;
  background: #fee2e2;
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: .85rem;
  display: none;
}
.summary-empty { text-align: center; color: var(--text-muted); font-size: .875rem; padding: 1rem 0; }
.checkout-note { margin-top: 1rem; font-size: .75rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* Success / Cancel pages */
.result-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}
.result-card {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem;
}
.result-icon { font-size: 3rem; margin-bottom: 1rem; }
.result-card h1 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--navy); margin-bottom: .75rem; }
.result-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.65; margin-bottom: 1.5rem; }
.result-card .btn + .btn { margin-left: .75rem; }

/* ─── CAMPER FORM ────────────────────────────────────────────────────────── */
.form-group select {
  padding: .65rem .875rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-group select:focus { outline: none; border-color: var(--blue); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}
@media (min-width: 540px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.req { color: #dc2626; }
.optional-label { font-weight: 400; color: var(--text-muted); font-size: .8rem; }

.waiver-box {
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.waiver-box p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.waiver-check {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  cursor: pointer;
}
.waiver-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.camper-error {
  background: #fee2e2;
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: .875rem;
  padding: .875rem 1rem;
  margin-bottom: 1.5rem;
}

.camper-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2rem; }
@media (max-width: 540px) { .camper-form { padding: 1.25rem; } }

/* ─── REGISTER LAYOUT (multi-camper) ─────────────────────────────────────── */
.register-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 820px) { .register-layout { grid-template-columns: 1.35fr 1fr; } }

.register-main  { display: flex; flex-direction: column; }
.register-sidebar { display: flex; flex-direction: column; }
@media (min-width: 820px) { .register-sidebar { position: sticky; top: 80px; } }

.register-sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* Camper cards */
.camper-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: .875rem;
}
.camper-card-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.camper-card-age { font-weight: 400; font-size: .85rem; color: var(--text-muted); font-family: 'Open Sans', sans-serif; }
.camper-card-detail { font-size: .8rem; color: var(--text-muted); margin-bottom: .15rem; }
.camper-card-session { font-size: .875rem; color: var(--text); }
.camper-card-actions { display: flex; flex-direction: column; gap: .35rem; flex-shrink: 0; }

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: .8rem;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
  text-align: right;
}
.btn-link:hover { color: var(--navy); }
.btn-link--danger { color: #dc2626; }
.btn-link--danger:hover { color: #b91c1c; }

/* Cart summary groups */
.camper-summary-group { margin-bottom: .75rem; }
.camper-summary-name {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: .25rem;
}

/* ─── POS CHECKOUT LAYOUT ────────────────────────────────────────────────── */
.pos-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 820px) {
  .pos-layout {
    grid-template-columns: 1fr 400px;
    gap: 2rem;
  }
}

.pos-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pos-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 820px) {
  #pos-session-section {
    position: sticky;
    top: 80px;
  }
}

/* Camper form header: heading + cancel link side by side */
.camper-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Order panel reuses .checkout-summary — no extra rules needed unless overriding */

#payment-element {
  margin-bottom: .25rem;
}

/* ─── CHECKOUT WIZARD ────────────────────────────────────────────────────── */
.wiz-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 2rem;
}

/* Progress bar */
.wiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 0 .5rem;
}
.wiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: default;
  padding: .25rem .5rem;
  flex-shrink: 0;
}
.wiz-step[disabled] { cursor: default; }
.wiz-step:not([disabled]) { cursor: pointer; }
.wiz-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  background: var(--gray);
  color: var(--text-muted);
  transition: background .2s, color .2s;
}
.wiz-step-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  transition: color .2s;
}
.wiz-step--active .wiz-step-num  { background: var(--blue); color: var(--white); }
.wiz-step--active .wiz-step-label { color: var(--navy); }
.wiz-step--done .wiz-step-num   { background: var(--navy); color: var(--white); }
.wiz-step--done .wiz-step-label { color: var(--navy); }
.wiz-step--done .wiz-step-num::after { content: '✓'; font-size: .8rem; }
.wiz-step--done .wiz-step-num { font-size: 0; }

.wiz-connector {
  flex: 1;
  height: 2px;
  background: var(--gray);
  max-width: 80px;
  margin-bottom: 1.3rem;
  transition: background .2s;
}
.wiz-connector--done { background: var(--navy); }

/* Panel */
.wiz-panel-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

/* Pricing preview */
.wiz-pricing {
  background: var(--white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  margin-top: 1rem;
}
.wiz-pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding: .3rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--bg-alt);
}
.wiz-pricing-row:last-child { border-bottom: none; }
.wiz-pricing-row--discount { color: #059669; }
.wiz-pricing-row--total {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  padding-top: .5rem;
  margin-top: .2rem;
  border-top: 2px solid var(--navy) !important;
  border-bottom: none !important;
}

/* Nav buttons */
.wiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wiz-nav .btn { min-width: 130px; }

/* Order summary in step 3 */
.wiz-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  border-top: 4px solid var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── Notify Me page ───────────────────────────────────────────────────────── */
.notify-wrap { max-width: 520px; margin: 0 auto; }
.notify-intro { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.75rem; line-height: 1.6; }
.notify-form .form-group { margin-bottom: 1.1rem; }
.notify-pref-row { display: flex; gap: 1.5rem; margin-top: .35rem; }
.notify-pref-option { display: flex; align-items: center; gap: .45rem; font-size: .9rem; cursor: pointer; }
.notify-pref-option input { width: auto; accent-color: var(--blue); }
.notify-success { text-align: center; padding: 3rem 1rem; }
.notify-success svg { margin-bottom: 1rem; }
.notify-success h2 { font-family: 'Oswald', sans-serif; font-size: 1.75rem; color: var(--navy); margin-bottom: .5rem; }
.notify-success p { color: var(--text-muted); font-size: .95rem; }
.notify-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; border-radius: 6px; padding: .75rem 1rem; margin-bottom: 1.25rem; font-size: .875rem; }
