/* ============================================
   Product Page Styles (legacy look inherited from original site)
   Used by /courses/free-class/ and /courses/introduction/
   ============================================ */

/* ==============================
   Hero (centered vertical stack)
   ============================== */
.hero {
  position: relative;
  background: #000000;
  padding: calc(var(--header-height) + 86px) 20px 60px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tagline with flanking lines */
.hero-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-tagline-line {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-tagline-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Main title */
.hero .title {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #ffffff;
}

.hero .title .accent {
  font-style: italic;
  color: #C19635;
}

/* Location subtitle */
.hero .subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin: 0 0 30px;
}

/* Frosted glass CTA button */
.hero .cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 150, 53, 0.3);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(193, 150, 53, 0.06);
}

.hero .cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(193, 150, 53, 0.5);
  box-shadow: 0 0 30px rgba(193, 150, 53, 0.12);
  transform: translateY(-1px);
  color: #fff;
}

/* ==============================
   Hero Gallery (below text)
   ============================== */
.hero-gallery {
  max-width: 900px;
  margin: 80px auto 0;
}

.hero-main-photo {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #111;
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-thumbnail {
  width: 100px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-thumbnail.active {
  opacity: 1;
  border-color: #C19635;
}

.hero-thumbnail:hover {
  opacity: 1;
}

.hero-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery placeholder (before images load) */
.hero-gallery-placeholder {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 14px;
}

/* ==============================
   Quick Details (vertical list)
   ============================== */
.quick-details {
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #000000;
}

.quick-details-inner {
  max-width: 500px;
  margin: 0 auto;
}

.quick-details h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0 0 28px;
}

.quick-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-details-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-details-list li:last-child {
  border-bottom: none;
}

.quick-details-list .question {
  color: #999999;
  font-size: 14px;
}

.quick-details-list .answer {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.quick-details-list .answer .stars {
  color: #C19635;
  margin-left: 6px;
}

.quick-details-list .answer--gold {
  color: #C19635;
  font-weight: 700;
}

/* ==============================
   About Section (image left + features right)
   ============================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient fade to black on right edge */
.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #000000);
}

.about-content {
  background: #000000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 30px;
  color: #ffffff;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.info-list .icon {
  width: 24px;
  color: #cccccc;
  font-size: 16px;
  flex-shrink: 0;
}

.info-list .text h4 {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.info-list .text p {
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
  margin: 0;
}

/* Pill-shaped CTA inside about features */
.course-btn {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.course-btn:hover {
  border-color: #C19635;
  color: #C19635;
}

/* ==============================
   Timeline (alternating left-right)
   ============================== */
.lm-timeline-hero {
  padding: 80px 20px;
  position: relative;
  background: #1a1a1a;
}

.lm-timeline-hero--charcoal {
  background: #222222;
}

.lm-timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* Center vertical gradient line */
.lm-timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, #C19635, #6B3737, #C19635);
  transform: translateX(-50%);
  z-index: 1;
}

.lm-timeline-item {
  position: relative;
  padding: 30px 0;
}

/* Center gold dot */
.lm-timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #C19635;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  box-shadow: 0 0 15px rgba(193, 150, 53, 0.4);
  z-index: 10;
}

/* Glass card */
.lm-timeline-content {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  position: relative;
  width: calc(50% - 40px);
  border: 1px solid rgba(193, 150, 53, 0.2);
  transition: all 0.3s ease;
}

.lm-timeline-content:hover {
  border-color: #C19635;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(193, 150, 53, 0.2);
}

/* Odd items: left side */
.lm-timeline-item:nth-child(odd) .lm-timeline-content {
  margin-right: auto;
  text-align: right;
}

/* Even items: right side */
.lm-timeline-item:nth-child(even) .lm-timeline-content {
  margin-left: auto;
  text-align: left;
}

/* Large watermark number */
.lm-timeline-number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(193, 150, 53, 0.1);
  position: absolute;
  top: -20px;
}

.lm-timeline-item:nth-child(odd) .lm-timeline-number {
  right: 20px;
}

.lm-timeline-item:nth-child(even) .lm-timeline-number {
  left: 20px;
}

.lm-timeline-title {
  font-size: 32px;
  margin: 0 0 10px;
  color: #ffffff;
}

.lm-timeline-description {
  font-size: 18px;
  color: #B8B5A6;
  line-height: 1.4;
  margin: 0;
}

/* ==============================
   Reviews (subtle cards)
   ============================== */
.reviews-section {
  padding: 60px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #000000;
}

.reviews-inner {
  max-width: 950px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}

.reviews-header h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 6px;
  color: #ffffff;
}

.reviews-header p {
  color: #999999;
  font-size: 13px;
  margin: 0;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.google-badge .rating {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #ffffff;
}

.google-badge .stars {
  color: #C19635;
  font-size: 14px;
  letter-spacing: 2px;
}

.google-badge .count {
  color: #999999;
  font-size: 11px;
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 4px;
}

.review-stars {
  color: #C19635;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: #cccccc;
  margin: 0 0 14px;
  font-style: italic;
}

.review-author {
  font-size: 11px;
  color: #999999;
  margin: 0;
}

.review-author strong {
  color: #ffffff;
}

/* ==============================
   Booking Section (Free Class — calendar layout)
   ============================== */
.booking-section {
  background: #090a0c;
  padding: 80px 20px;
}

.booking-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.booking-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 4px;
}

.booking-subtitle {
  font-size: 16px;
  color: #8a8e94;
  margin: 0 0 40px;
}

.booking-subtitle span {
  color: #C19635;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.calendar-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.flatpickr-wrapper {
  padding: 16px;
  border-radius: 8px;
  background: #1a1a1a;
}

.calendar-right {
  position: sticky;
  top: 100px;
}

.selection-panel {
  background: #121416;
  border-radius: 8px;
  padding: 22px 32px 32px;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
  border: 1px solid rgba(193, 150, 53, 0.3);
  border-left: 2px solid #C19635;
}

.no-selection {
  text-align: center;
  padding: 40px 20px;
}

.no-selection-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-selection h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 8px;
}

.no-selection p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.selection-info {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.selection-info::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(193, 150, 53, 0.4);
  margin: 16px auto;
}

.selection-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0 0 14px;
}

.selection-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 4px;
}

.selection-date {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 4px;
}

.selection-time {
  font-size: 13px;
  color: #60656c;
  margin: 0;
}

.selection-spots {
  font-size: 14px;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.selection-spots::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
}

.selection-spots.warning::before { background: #FF8C42; }
.selection-spots.low::before { background: #FF6B6B; }

/* Register button (gold pill) */
.register-btn {
  background: var(--color-gold);
  color: #000000;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.register-btn:hover:not(:disabled) {
  background: #D4A031;
}

.register-btn:disabled {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

/* Terms checkbox */
.terms-checkbox {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.terms-checkbox label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  gap: 10px;
  line-height: 1.5;
}

.terms-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  margin-top: 1px;
  position: relative;
  transition: all 0.2s ease;
}

.terms-checkbox input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.terms-checkbox input[type="checkbox"]:checked {
  background: #C19635;
  border-color: #C19635;
}

.terms-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-checkbox a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.terms-checkbox a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Selection panel — role label */
.selection-role-label {
  margin: 0 0 12px;
  padding-top: 0;
  font-size: 10px;
  font-weight: 600;
  color: #8a8e94;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-family: var(--font-body);
}

.terms-checkbox::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(193, 150, 53, 0.4);
  margin: 16px auto;
}

/* Spots text in role buttons */
.role-option .spots-text {
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

/* ==============================
   Booking Section (Intro — multi-step form)
   ============================== */
.booking-section--intro .booking-inner {
  max-width: 450px;
}

.section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.next-start-date {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 30px;
}

.next-start-date .date-highlight {
  color: #ffffff;
}

/* Step card */
.booking-step {
  background: #121416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid #C19635;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  text-align: left;
}

.booking-step.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Fixed-height content areas so steps don't resize */
#roleContent {
  min-height: 62px;
}

#dateContent {
  min-height: 80px;
}

#summaryContent {
  min-height: 180px;
}

.booking-step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.booking-step__number {
  font-size: 20px;
  font-weight: 600;
  color: rgba(193, 150, 53, 0.75);
}

.booking-step__title {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: #ffffff;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Course columns */
.course-columns {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.course-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.day-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.course-card-option {
  background: #121416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.course-card-option:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.course-card-option.selected {
  border-color: rgba(193, 150, 53, 0.3);
  border-left: 2px solid #C19635;
  background: #121416;
}

.course-card-option h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 4px;
}

.course-card-option .time {
  font-size: 13px;
  color: #999999;
  margin: 0 0 12px;
}

.course-card-option .price {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* "Both" card */
.both-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #121416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.both-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.both-card.selected {
  border-color: rgba(193, 150, 53, 0.3);
  border-left: 2px solid #C19635;
  background: #121416;
}

.both-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 2px;
}

.both-card .details {
  font-size: 12px;
  color: #999999;
  margin: 0;
}

.both-card .save {
  color: #81C784;
  font-weight: 600;
}

.both-card .price {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* Info button (tooltip trigger) */
.info-btn {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
  font-family: Georgia, serif;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.info-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.info-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #181a1e;
  border: 1px solid rgba(193, 150, 53, 0.2);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  width: 260px;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  font-style: normal;
  font-family: var(--font-body);
}

.info-popup strong {
  color: #C19635;
  font-weight: 500;
}

.info-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #181a1e;
}

@media (hover: hover) {
  .info-btn:hover + .info-popup,
  .info-btn:focus + .info-popup {
    opacity: 1;
    visibility: visible;
  }
}

/* Role selection */
.role-options {
  display: flex;
  gap: 12px;
}

.role-option {
  flex: 1;
  padding: 18px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.6;
}

.role-option:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.role-option.selected {
  border-color: var(--color-gold);
  color: #ffffff;
}

.no-role-message {
  text-align: center;
  color: #999999;
  font-size: 14px;
  padding: 20px;
}

/* Date selection */
.date-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.date-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 16px 0 6px;
}

.date-label:first-child {
  margin-top: 0;
}

.date-option {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: #121416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.date-option:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.date-option.selected {
  border-color: rgba(193, 150, 53, 0.3);
  border-left: 2px solid #C19635;
  background: #121416;
}

/* Custom radio — hidden, selection shown via border */
.date-option input[type="radio"] {
  display: none;
}

.date-text {
  flex: 1;
}

.date-course-name {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.date-value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 2px 0 0;
}

.date-spots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.spots-text {
  font-size: 11px;
  font-weight: 500;
}

.spots-text--available { color: #81C784; }
.spots-text--low { color: #FFB74D; }
.spots-text--critical { color: #E57373; }
.spots-text--sold-out { color: #E57373; }

.date-placeholder {
  padding: 20px;
  text-align: center;
  color: #999999;
  font-size: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Free class — date card (replaces flatpickr placeholder) */
.fc-date-card {
  background: #121416;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-date-card:hover { border-color: rgba(255, 255, 255, 0.12); }
.fc-date-card.selected { border-color: rgba(193, 150, 53, 0.3); border-left: 2px solid #C19635; }

.fc-date-card__radio {
  display: none;
}

.fc-date-card__info {
  flex: 1;
  min-width: 0;
}

.fc-date-card__day {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.fc-date-card__time {
  font-size: 13px;
  color: #60656c;
  margin: 2px 0 0;
}

.fc-date-card__spots {
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

/* Checkout loading state */
.checkout-btn--loading,
.register-btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Booking summary */
.booking-summary {
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin-top: 8px;
  text-align: left;
}

.summary-items {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.summary-row {
  display: flex;
  justify-content: space-between;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-label {
  font-size: 14px;
  color: #999999;
}

.summary-price {
  font-family: var(--font-body);
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
}

.summary-discount {
  font-size: 13px;
  color: #81C784;
  text-align: right;
  margin-top: 6px;
}

/* Checkout button */
.checkout-btn {
  width: 100%;
  padding: 16px 32px;
  background: #C19635;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.checkout-btn:hover:not(:disabled) {
  background: #D4A031;
}

.checkout-btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.2);
}

/* ==============================
   FAQ (with SVG icons)
   ============================== */
.course-faq {
  background: #0a0a0a;
  padding: 80px 0;
}

.course-faq__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.course-faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.course-faq__label {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}

.course-faq__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  margin: 0;
}

.course-faq__list {
  display: flex;
  flex-direction: column;
}

.course-faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.course-faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.course-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.course-faq__question-text {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.course-faq__question:hover .course-faq__question-text {
  color: #C19635;
}

.course-faq__icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.course-faq__question:hover .course-faq__icon {
  color: #C19635;
}

.course-faq__item.active .course-faq__icon {
  transform: rotate(45deg);
  color: #C19635;
}

.course-faq__item.active .course-faq__question-text {
  color: #C19635;
}

.course-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.course-faq__item.active .course-faq__answer {
  max-height: 300px;
}

.course-faq__answer-content {
  padding: 0 0 22px 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ==============================
   Checkout Page
   ============================== */
body:has(.checkout-page) #site-header {
  display: none;
}

.checkout-page {
  background: #f4f3f1;
  min-height: 100vh;
  padding: 48px 20px 80px;
  display: flex;
  justify-content: center;
}

.checkout-container {
  max-width: 500px;
  width: 100%;
}

.checkout-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.checkout-logo img {
  height: 140px;
  width: auto;
}

/* Checkout header */
.checkout-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.checkout-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 500;
  color: rgba(193, 150, 53, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.checkout-secure .lock-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex-shrink: 0;
}

.checkout-container h1 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
}

.checkout-tagline {
  display: none;
}

/* Step cards */
.step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-weight: 400;
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.step-title {
  font-size: 11px;
  font-weight: 600;
  color: #C19635;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Order summary (inside step-card) */
.checkout-summary {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.checkout-summary h2 {
  display: none;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 15px;
  color: #1a1a1a;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  margin-bottom: 0;
}

.checkout-item:last-of-type {
  border-bottom: none;
}

.checkout-item-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.checkout-item-detail {
  font-size: 12px;
  color: #888888;
  margin-top: 3px;
}

.checkout-item-detail .detail-dot {
  color: rgba(0, 0, 0, 0.25);
}

.checkout-item-price {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  margin-left: 20px;
}

/* Product name header row (checkout summary) */
.checkout-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-product-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Individual class detail rows (indented under product header) */
.checkout-class-detail {
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.checkout-class-detail:last-of-type {
  border-bottom: none;
}

.checkout-class-name {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.checkout-class-info {
  font-size: 11px;
  color: #888888;
  margin-top: 2px;
}

.checkout-class-info .detail-dot {
  color: rgba(0, 0, 0, 0.25);
}

.checkout-discount {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  color: #388E3C;
}

.checkout-divider {
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  margin: 8px 0;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
}

.checkout-total-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-total-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
}

.checkout-total-free {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #4CAF50;
}

/* Form (inside step-card) */
.checkout-form {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.checkout-form h2 {
  display: none;
}

.checkout-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.checkout-field--full {
  margin-bottom: 12px;
}

.checkout-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-input {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 12px 14px;
  color: #1a1a1a;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.checkout-input:focus {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
}

.checkout-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.checkout-input:-webkit-autofill,
.checkout-input:-webkit-autofill:hover,
.checkout-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-text-fill-color: #1a1a1a;
  transition: background-color 5000s ease-in-out 0s;
}

/* Square card element container */
.checkout-card-element {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 12px 14px;
  min-height: 20px;
  transition: border-color 0.2s ease;
}

.checkout-card-element--focus {
  border-color: rgba(59, 130, 246, 0.4);
}

.checkout-card-element--invalid {
  border-color: #E57373;
}

/* Payment section (inside step-card) */
.checkout-payment {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.checkout-payment h2 {
  display: none;
}

.checkout-card-error {
  color: #E57373;
  font-size: 13px;
  margin-top: 8px;
}

/* Submit button */
.checkout-submit {
  width: 100%;
  padding: 16px;
  background: #4a9a8a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  margin-top: 8px;
}

.checkout-submit:hover:not(:disabled) {
  background: #3d8577;
  box-shadow: 0 2px 8px rgba(74, 154, 138, 0.25);
}

.submit-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.submit-secure .lock-icon {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.checkout-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #cccccc;
}

.checkout-submit--loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Processing overlay */
.checkout-processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.checkout-processing-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-processing-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
  to { transform: rotate(360deg); }
}

.checkout-processing-text {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Payment card fields */
.form-field {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 11px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 12px 14px;
  color: #1a1a1a;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-field {
  flex: 1;
}

.card-row {
  display: flex;
  gap: 12px;
}

.card-row .form-field {
  flex: 1;
}

.payment-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.payment-disabled .form-input,
.payment-disabled .checkout-input {
  cursor: not-allowed;
}

.card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
}

.card-brand {
  width: 28px;
  height: 18px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--font-nav);
}

/* ==============================
   Payment Section
   ============================== */
.checkout-payment-section {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Wallet buttons */
.checkout-wallets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.checkout-wallet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 0;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  height: 36px;
  -webkit-appearance: none;
  appearance: none;
}

.checkout-wallet-btn:hover {
  opacity: 0.85;
}

.checkout-wallet-btn--apple {
  background: #000000;
  color: #ffffff;
}

.checkout-wallet-btn--google {
  background: #000000;
  color: #ffffff;
}

.checkout-wallet-btn svg {
  height: 16px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.checkout-wallet-btn span {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
}

.checkout-wallet-btn--apple svg {
  height: 18px;
  margin-right: 4px;
}

.checkout-wallet-btn--google svg {
  height: 18px;
  margin-right: 6px;
}

/* Card fields placeholder layout */
.checkout-card-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checkout-card-number {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px 6px 0 0;
  padding: 12px 14px;
  min-height: 20px;
}

.checkout-card-row {
  display: flex;
}

.checkout-card-expiry,
.checkout-card-cvv {
  flex: 1;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: none;
  padding: 12px 14px;
  min-height: 20px;
}

.checkout-card-expiry {
  border-radius: 0 0 0 6px;
  border-right: none;
}

.checkout-card-cvv {
  border-radius: 0 0 6px 0;
}

.checkout-card-input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  color: #1a1a1a;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  line-height: 20px;
  box-sizing: border-box;
}

.checkout-card-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/* "Or pay with card" divider */
.checkout-divider-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.checkout-divider-text::before,
.checkout-divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.checkout-divider-text span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card section */
.checkout-card-section .checkout-field {
  margin-bottom: 14px;
}

.checkout-card-section .checkout-field:last-child {
  margin-bottom: 0;
}

/* Square Web Payments SDK card form container */
/* Square renders two-line layout when container < 480px */
#cardContainer,
#pos-card-container {
  min-height: 89px;
}

/* Wallet button containers — Square SDK renders buttons here */
#applePayContainer,
#googlePayContainer {
  min-height: 0;
}

#applePayContainer:empty,
#googlePayContainer:empty {
  display: none;
}

/* Hide wallets section + divider when both wallet containers are empty */
.checkout-wallets:has(#applePayContainer:empty):has(#googlePayContainer:empty) {
  display: none;
}

.checkout-wallets:has(#applePayContainer:empty):has(#googlePayContainer:empty) + .checkout-divider-text {
  display: none;
}

/* Error message */
.checkout-error {
  background: rgba(211, 47, 47, 0.06);
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: #c62828;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

/* Success state */
.checkout-success {
  text-align: center;
  padding: 48px 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.checkout-success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  color: #81C784;
}

.checkout-success h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #3a3a3a;
  margin: 0 0 12px;
}

.checkout-success p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 8px;
}

.checkout-success .order-number {
  color: #5a7d72;
  font-weight: 600;
}

.checkout-success-link {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 36px;
  background: #4a9a8a;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.checkout-success-link:hover {
  background: #3d8577;
  box-shadow: 0 2px 12px rgba(74, 154, 138, 0.25);
}

/* Empty cart state */
.checkout-empty {
  text-align: center;
  padding: 60px 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.checkout-empty h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.checkout-empty p {
  font-size: 15px;
  color: #666666;
  margin: 0 0 24px;
}

/* ==============================
   Responsive
   ============================== */
@media screen and (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .about-image::after {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .calendar-right {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: calc(var(--header-height) + 40px) 16px 30px;
  }

  .hero .title {
    font-size: 42px;
  }

  .hero-gallery {
    margin: 50px auto 0;
  }

  .hero-main-photo {
    height: 280px;
  }

  .hero-thumbnail {
    width: 70px;
    height: 50px;
  }

  .about-content {
    padding: 40px 24px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  /* Timeline: all items left-aligned */
  .lm-timeline-hero {
    padding: 50px 20px;
  }

  .lm-timeline-content {
    width: 65%;
    padding: 15px 18px;
  }

  .lm-timeline-item:nth-child(odd) .lm-timeline-content,
  .lm-timeline-item:nth-child(even) .lm-timeline-content {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .lm-timeline-item::after {
    width: 16px;
    height: 16px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-top: -8px;
  }

  .lm-timeline-number {
    font-size: 48px;
    top: -10px;
  }

  .lm-timeline-item:nth-child(odd) .lm-timeline-number {
    left: 10px;
    right: auto;
  }

  .lm-timeline-item:nth-child(even) .lm-timeline-number {
    right: 10px;
    left: auto;
  }

  .lm-timeline-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .lm-timeline-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .booking-inner h2 {
    font-size: 30px;
  }

  .booking-step {
    padding: 20px;
  }

  /* FAQ responsive */
  .course-faq {
    padding: 60px 0;
  }

  .course-faq__container {
    padding: 0 20px;
  }

  .course-faq__header {
    margin-bottom: 35px;
  }

  .course-faq__title {
    font-size: 28px;
  }

  .course-faq__question {
    padding: 18px 0;
  }

  .course-faq__question-text {
    font-size: 15px;
  }

  .course-faq__answer-content {
    font-size: 13px;
    padding-bottom: 18px;
  }

  .checkout-page {
    padding: 36px 16px 60px;
  }

  .checkout-container h1 {
    font-size: 26px;
  }

  .step-card {
    padding: 20px 22px;
  }

  .checkout-payment-section {
    padding: 20px 22px;
  }

  .checkout-row,
  .card-row {
    flex-direction: column;
    gap: 0;
  }
}
