/* Magnify Coaching — booking wizard (frontend) */
.mc-booking {
  --mc-gold: #d8b23c;
  --mc-gold-dark: #b78e1f;
  --mc-gold-2: #cfa430;
  --mc-ink: #1a1405;
  --mc-ink-2: #100b02;
  --mc-line: rgba(216, 178, 60, 0.14);
  --mc-muted: #8f887a;
  --mc-panel-2: #232019;
  --mc-disabled: #2a2620;
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Barlow", system-ui, sans-serif;
}
.mc-booking * {
  box-sizing: border-box;
}
.mc-booking h1,
.mc-booking h2,
.mc-booking h3 {
  font-family: "Oswald", sans-serif;
}

.mc-layout {
  display: flex;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  background: var(--mc-card-bg, #1c1a15);
  color: var(--mc-card-text, #ece7da);
}
.mc-side {
  width: 320px;
  flex: 0 0 320px;
  background: linear-gradient(178deg, #e2be45 0%, #cfa430 42%, #b7891c 100%);
  color: #fff;
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
}
.mc-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 20% 8%, rgba(255, 255, 255, 0.22), transparent 60%);
  pointer-events: none;
}
.mc-main {
  flex: 1;
  min-width: 0;
  padding: 44px 52px 30px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  color: var(--mc-card-text, #ece7da);
  background: radial-gradient(1100px 620px at 74% -12%, rgba(216, 178, 60, 0.07), transparent 60%), var(--mc-card-bg, #100f0c);
  position: relative;
}

.mc-progress {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.mc-progress li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.mc-progress li:hover {
  background: rgba(26, 20, 5, 0.08);
}
.mc-progress li.active {
  background: rgba(26, 20, 5, 0.12);
}
.mc-progress-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.mc-progress-step {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #6b5310;
}
.mc-progress-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #3d2f08;
}
.mc-progress li.active .mc-progress-label {
  font-weight: 700;
  color: #100b02;
}
.mc-dot {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  border: 2px solid rgba(40, 30, 6, 0.5);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #e2be45;
  font-family: "Oswald", sans-serif;
}
.mc-progress li.done .mc-dot {
  background: #3a2c07;
  border-color: #1a1405;
}
.mc-progress li.active .mc-dot {
  background: #1a1405;
  border-color: #1a1405;
}

.mc-running-total {
  margin-top: 36px;
  padding: 16px 18px;
  background: rgba(30, 22, 4, 0.14);
  border: 1px solid rgba(60, 45, 6, 0.16);
  border-radius: 14px;
  position: relative;
}
.mc-running-total-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #5c4708;
  font-family: "Oswald", sans-serif;
}
.mc-running-total-amt {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1405;
  margin-top: 2px;
}
.mc-running-total-note {
  font-size: 12px;
  color: #5c4708;
  font-weight: 600;
}

.mc-header {
  margin-bottom: 26px;
}
.mc-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mc-eyebrow {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--mc-gold);
  white-space: nowrap;
}
.mc-eyebrow-rule {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--mc-line), transparent);
}
.mc-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.01em;
  margin: 8px 0 4px;
  color: #fff;
}
.mc-subtitle {
  margin: 0;
  color: var(--mc-muted);
  font-size: 15px;
  max-width: 560px;
}
.mc-body {
  flex: 1;
  animation: fadeUp 0.32s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mc-login-prompt {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--mc-muted);
}
.mc-login-prompt a {
  color: var(--mc-gold);
  font-weight: 600;
  text-decoration: none;
}
.mc-login-prompt a:hover {
  text-decoration: underline;
}

.mc-group {
  margin: 32px 0 12px !important;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--mc-gold);
  text-transform: uppercase;
}
.mc-group:first-child {
  margin-top: 0;
}
.mc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.mc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 18px 12px;
  border: 1px solid var(--mc-line);
  border-radius: 14px;
  background: var(--mc-panel-2);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  font: inherit;
  color: var(--mc-card-text, #ece7da);
}
.mc-card:hover {
  border-color: var(--mc-gold);
  box-shadow: 0 4px 14px rgba(216, 178, 60, 0.16);
  transform: translateY(-2px);
}
.mc-card.mc-selected,
.mc-card[aria-pressed="true"] {
  border-color: var(--mc-gold);
  box-shadow: 0 0 0 1px var(--mc-gold), 0 8px 30px rgba(216, 178, 60, 0.16);
}
.mc-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}
.mc-card .mc-avatar {
  border: 2px solid var(--mc-gold);
}
.mc-ph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--mc-ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}
.mc-card-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.mc-card-sub {
  font-size: 12px;
  color: var(--mc-muted);
}
.mc-card-price {
  color: var(--mc-gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Package cards: left-aligned, price-forward. */
.mc-cards.mc-pkg-cards {
  grid-template-columns: repeat(2, minmax(0, 260px));
}
.mc-card.mc-pkg-card {
  align-items: flex-start;
  text-align: left;
  padding: 22px;
  gap: 10px;
}
.mc-pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.mc-pkg-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
}
.mc-pkg-badge {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: var(--mc-ink);
  background: var(--mc-gold);
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.mc-pkg-price {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--mc-gold);
}
.mc-pkg-note {
  font-size: 13px;
  color: var(--mc-muted);
}

/* Coach cards: framed portrait photo (its own rounded corners, inset in the
   card) with name + role below, not overlaid. */
.mc-cards.mc-coach-cards {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  max-width: 780px;
}
.mc-card.mc-coach-card {
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 14px 14px 16px;
  gap: 12px;
  border-radius: 26px;
}
.mc-card.mc-coach-card img,
.mc-card.mc-coach-card .mc-ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  font-size: 42px;
  border: none;
  box-shadow: none;
}
.mc-coach-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.mc-coach-info .mc-card-name {
  font-size: 16px;
  text-transform: none;
  text-align: left;
  font-family: "GABRWFFR", sans-serif;
}
.mc-coach-rating {
  font-size: 12px;
  color: var(--mc-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Studio cards: framed photo tile (its own rounded corners, inset in the
   card) with name + address below, matching the coach-card treatment. */
.mc-cards.mc-studio-cards {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  max-width: 780px;
}
.mc-card.mc-studio-card {
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 14px 14px 16px;
  gap: 12px;
  border-radius: 26px;
}
.mc-studio-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: linear-gradient(135deg, #241f17, #100b02);
  position: relative;
  overflow: hidden;
}
.mc-studio-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.mc-studio-tag {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 8px;
  border-radius: 6px;
}
.mc-studio-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.mc-studio-info .mc-card-name {
  font-size: 16px;
  text-transform: none;
  text-align: left;
  font-family: "GABRWFFR", sans-serif;
}

.mc-slots {
  margin-top: 6px;
}
.mc-slot-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 0 8px;
  color: var(--mc-gold);
}
.mc-slot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mc-slot {
  padding: 12px 8px;
  border: 1px solid var(--mc-line);
  border-radius: 14px;
  background: var(--mc-panel-2);
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: center;
  transition: all 0.18s ease;
}
button.mc-slot:hover {
  border-color: var(--mc-gold);
  box-shadow: 0 4px 14px rgba(216, 178, 60, 0.16);
}
.mc-slot-off {
  color: #5a5346;
  border-color: var(--mc-line);
  background: var(--mc-disabled);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* date + time: calendar left, slots right */
.mc-dt {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.mc-dt .mc-cal {
  flex: 0 0 380px;
}
.mc-dt #mc-slots {
  flex: 1;
  min-width: 220px;
  margin-top: 0;
}
.mc-dt #mc-slots .mc-slot-label:first-child {
  margin-top: 0;
}
.mc-slot-hint {
  padding: 6px 0;
  color: var(--mc-muted);
}

/* multi-session scheduler */
.mc-recur {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  padding: 12px 14px;
  background: var(--mc-panel-2);
  border: 1px solid var(--mc-line);
  border-radius: 12px;
}
.mc-recur-lbl {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: var(--mc-gold);
}
.mc-recur select,
.mc-recur input[type="time"] {
  padding: 7px 9px;
  border: 1.5px solid var(--mc-line);
  border-radius: 8px;
  background: #1c1a15;
  color: #ece7da;
  font: inherit;
}
.mc-sess {
  margin: 0 0 16px;
}
.mc-sess-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mc-sess-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 150px;
  padding: 9px 13px;
  border: 1.5px solid var(--mc-line);
  border-radius: 10px;
  background: var(--mc-panel-2);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: all 0.18s ease;
}
.mc-sess-chip.active {
  border-color: var(--mc-gold);
  box-shadow: 0 0 0 1px var(--mc-gold);
}
.mc-sess-chip.filled .mc-sess-val {
  color: #fff;
  font-weight: 600;
}
.mc-sess-no {
  font-size: 12px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: var(--mc-gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mc-sess-val {
  font-size: 13px;
  color: var(--mc-muted);
}
.mc-sum-sessions b {
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .mc-dt {
    flex-direction: column;
  }
  .mc-dt .mc-cal {
    flex-basis: auto;
    width: 100%;
  }
}

/* custom month calendar */
.mc-cal {
  max-width: 380px;
}
.mc-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mc-cal-head strong {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.mc-cal-nav {
  width: 34px;
  height: 34px;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  background: var(--mc-panel-2);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.mc-cal-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.mc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.mc-cal-dow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--mc-muted);
  padding: 2px 0;
}
.mc-cal-cell {
  aspect-ratio: 1;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  background: var(--mc-panel-2);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.18s ease;
}
.mc-cal-blank {
  border: none;
  background: transparent;
  cursor: default;
}
.mc-cal-open:hover {
  border-color: var(--mc-gold);
  background: rgba(216, 178, 60, 0.12);
}
.mc-cal-sel {
  background: var(--mc-gold) !important;
  border-color: var(--mc-gold) !important;
  color: var(--mc-ink) !important;
  font-weight: 700;
}
/* slash out unavailable dates */
.mc-cal-past,
.mc-cal-closed,
.mc-cal-full {
  color: #5a5346;
  background: var(--mc-disabled);
  border-color: var(--mc-line);
  cursor: not-allowed;
  text-decoration: line-through;
}
.mc-cal-legend {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--mc-muted);
}
.mc-cal-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: -1px;
}
.mc-lg-open {
  background: rgba(216, 178, 60, 0.3);
  border: 1px solid var(--mc-gold);
}
.mc-lg-off {
  background: var(--mc-disabled);
  border: 1px solid var(--mc-line);
}

.mc-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mc-muted);
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
}
.mc-fields input,
.mc-fields textarea,
#mc-date {
  display: block;
  width: 100%;
  max-width: 360px;
  padding: 12px 14px;
  background: #1c1a15;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  margin: 7px 0 6px;
  color: #ece7da;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  outline: none;
}

/* details form: 2-column grid — name + phone side by side, email/notes full width */
.mc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  max-width: 640px;
}
.mc-fields .mc-fld {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mc-fields .mc-fld-wide {
  grid-column: 1 / -1;
}
.mc-fields .mc-fld input,
.mc-fields .mc-fld textarea {
  max-width: none;
  margin: 7px 0 6px;
}
.mc-fields .mc-terms,
.mc-fields .mc-account,
.mc-fields .mc-asuser,
.mc-fields .mc-login-toggle,
.mc-fields .mc-login-form,
.mc-fields .mc-error {
  grid-column: 1 / -1;
}

.mc-terms {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0 4px;
  font-size: 14px;
  color: var(--mc-muted);
  cursor: pointer;
  line-height: 1.4;
  max-width: 360px;
}
.mc-terms input {
  margin-top: 2px;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: var(--mc-gold);
  cursor: pointer;
}
.mc-account small {
  display: block;
  color: var(--mc-muted);
  font-size: 12px;
  margin-top: 2px;
}
.mc-asuser {
  margin: 14px 0 4px;
  font-size: 14px;
  color: var(--mc-card-text, #ece7da);
  background: var(--mc-panel-2);
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  padding: 9px 12px;
}
.mc-login-toggle {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--mc-muted);
}
.mc-login-form {
  margin: 8px 0 4px;
  padding: 14px;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  background: var(--mc-panel-2);
  max-width: 360px;
}
.mc-login-form input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  background: #1c1a15;
  color: #ece7da;
  margin-bottom: 8px;
  font: inherit;
}
.mc-login-form .mc-btn {
  width: 100%;
}
.mc-login-form .mc-error {
  margin: 8px 0 0;
}
.mc-terms-link {
  color: var(--mc-gold);
  font-weight: 600;
  text-decoration: underline;
}
.mc-terms-link:hover {
  color: var(--mc-gold-2);
}

/* terms popup */
.mc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mc-modal[hidden] {
  display: none;
}
.mc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 6, 0.7);
  backdrop-filter: blur(2px);
}
.mc-modal-box {
  position: relative;
  background: var(--mc-card-bg, #1c1a15);
  border: 1px solid var(--mc-line);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.mc-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--mc-muted);
  cursor: pointer;
  border-radius: 8px;
}
.mc-modal-x:hover {
  background: var(--mc-panel-2);
  color: #fff;
}
.mc-modal-title {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid var(--mc-line);
  font-size: 19px;
  color: var(--mc-card-text, #fff);
}
.mc-modal-body {
  padding: 18px 24px;
  overflow-y: auto;
  color: var(--mc-card-text, #ece7da);
  font-size: 14px;
  line-height: 1.6;
}
.mc-modal-body ol {
  padding-left: 20px;
  margin: 10px 0;
}
.mc-modal-body li {
  margin: 8px 0;
}
.mc-modal-foot {
  padding: 14px 24px;
  border-top: 1px solid var(--mc-line);
  text-align: right;
}

.mc-two {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.mc-two .mc-fields {
  flex: 1;
  min-width: 260px;
}
.mc-summary {
  flex: 0 0 300px;
  background: var(--mc-panel-2);
  border: 1px solid var(--mc-line);
  border-radius: 16px;
  padding: 22px 24px;
}
.mc-summary h3 {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mc-gold);
}
.mc-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mc-summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--mc-line);
  font-size: 13px;
}
.mc-summary li span {
  color: var(--mc-muted);
}
.mc-summary .mc-total {
  border-bottom: none;
  font-size: 15px;
  margin-top: 8px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}
.mc-summary .mc-total b {
  color: var(--mc-gold);
  font-size: 28px;
  font-weight: 700;
}

.mc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--mc-line);
}
.mc-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mc-nav-steplabel {
  font-size: 13px;
  color: var(--mc-muted);
}
.mc-btn {
  appearance: none;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  background: #ece7da;
  color: var(--mc-disabled);
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font: inherit;
  font-weight: 600;
  transition: all 0.18s ease;
}
.mc-btn.mc-back {
  visibility: visible;
}
.mc-btn.mc-primary {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  background: linear-gradient(180deg, #e2be45, #c8a02c);
  color: var(--mc-ink);
  box-shadow: 0 6px 20px rgba(216, 178, 60, 0.24);
}
.mc-btn.mc-primary:hover {
  filter: brightness(1.04);
}
.mc-btn:disabled {
  background: var(--mc-disabled);
  color: #5a5346;
  box-shadow: none;
  cursor: not-allowed;
}

/* my bookings table */
.mc-mybookings {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--mc-card-bg, #1c1a15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.mc-mybookings th {
  text-align: left;
  background: var(--mc-panel-2);
  color: var(--mc-gold);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--mc-line);
}
.mc-mybookings td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--mc-line);
  color: var(--mc-card-text, #ece7da);
}
.mc-mybookings tr:last-child td {
  border-bottom: none;
}
.mc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}
.mc-badge-pending {
  background: #fff4d6;
  color: #9a7b12;
}
.mc-badge-confirmed {
  background: #e3f6e8;
  color: #1f8a45;
}
.mc-badge-cancelled {
  background: #fbe3e3;
  color: #b32d2e;
}
.mc-badge-completed {
  background: #e3eefb;
  color: #1f6f9e;
}
.mc-pay {
  padding: 7px 14px;
  font-size: 13px;
}

.mc-loading,
.mc-empty {
  padding: 24px;
  color: var(--mc-muted);
}
.mc-spinner {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(216, 178, 60, 0.25);
  border-top-color: var(--mc-gold);
  border-radius: 50%;
  animation: mc-spin 0.7s linear infinite;
}
.mc-loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.mc-loading-text p {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mc-gold);
}
@keyframes mc-spin {
  to {
    transform: rotate(360deg);
  }
}
.mc-error {
  color: #e07a7a;
  font-weight: 600;
}

/* built-in QR payment screen — left column of the .mc-two wizard layout */
.mc-pay {
  flex: 1;
  min-width: 260px;
}
.mc-two > .mc-pay {
  padding: 0;
}
.mc-pay-amt {
  font-size: 16px;
  color: var(--mc-muted);
  margin: 0 0 18px;
}
.mc-pay-amt b {
  color: var(--mc-gold);
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}
.mc-pay-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.mc-pay-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--mc-line);
  border-radius: 14px;
  background: var(--mc-panel-2);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: #fff;
  text-align: left;
  transition: all 0.18s ease;
}
.mc-pay-tab-ico {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: linear-gradient(140deg, #8a7126, #6b5310);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--mc-ink);
}
.mc-pay-tab.active {
  border-color: var(--mc-gold);
  box-shadow: 0 0 0 1px var(--mc-gold);
}
.mc-pay-tab.active .mc-pay-tab-ico {
  background: var(--mc-gold);
}
.mc-pay-box {
  border: 1px solid var(--mc-line);
  background: var(--mc-panel-2);
  border-radius: 14px;
  padding: 20px;
}
.mc-pay-acct {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 14px;
}
.mc-pay-acct div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mc-pay-acct span {
  color: var(--mc-muted);
}
.mc-pay-acct b {
  color: #fff;
}
.mc-pay-qr img {
  max-width: 220px;
  width: 100%;
  border: 1px solid var(--mc-line);
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}
.mc-pay-qr span {
  display: block;
  margin-top: 6px;
  color: var(--mc-gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mc-pay-ins {
  margin-top: 14px;
  text-align: left;
  font-size: 13.5px;
  color: var(--mc-muted);
  line-height: 1.6;
}
.mc-pay-upload {
  margin: 18px 0 6px;
}
.mc-pay-upload .mc-label {
  display: block;
  margin-bottom: 8px;
}
.mc-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  padding: 24px;
  border: 2px dashed var(--mc-line);
  border-radius: 14px;
  background: var(--mc-panel-2);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.mc-drop:hover {
  border-color: var(--mc-gold);
}
.mc-drop.mc-drop-over {
  border-color: var(--mc-gold);
  background: rgba(216, 178, 60, 0.08);
}
.mc-drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.mc-drop-svg {
  margin-bottom: 8px;
}
.mc-drop-text {
  margin: 0;
  font-size: 14px;
  color: var(--mc-muted);
}
.mc-drop-link {
  color: var(--mc-gold);
  font-weight: 700;
  text-decoration: underline;
}
.mc-drop-hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: #5a5346;
  line-height: 1.55;
}
.mc-drop.has-file {
  padding: 0;
  border-style: solid;
  border-color: var(--mc-line);
  background: #1c1a15;
}
.mc-drop-img {
  display: block;
  max-width: 100%;
  max-height: 300px;
  border-radius: 12px;
}
.mc-drop-change {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 13px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.mc-done-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  background: var(--mc-card-bg, #1c1a15);
  color: var(--mc-card-text, #ece7da);
}
.mc-done {
  text-align: center;
  padding: 60px 20px;
  max-width: 520px;
}
.mc-done h2 {
  color: #fff;
  margin: 0 0 10px;
}
.mc-done-sub {
  color: var(--mc-muted);
  margin: 0 0 28px;
}
.mc-done-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.mc-done-actions .mc-btn {
  display: inline-block;
  text-decoration: none;
}
.mc-check {
  width: 84px;
  height: 84px;
  line-height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e2be45, #c8a02c);
  color: var(--mc-ink);
  font-size: 42px;
  margin: 0 auto 20px;
}

@media (max-width: 900px) {
  .mc-main {
    padding: 32px 28px 24px;
  }
  .mc-side {
    padding: 30px 24px;
  }
}

@media (max-width: 720px) {
  .mc-layout {
    flex-direction: column;
  }
  .mc-side {
    width: 100%;
    flex: auto;
  }
  .mc-progress {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .mc-progress li {
    padding: 4px 8px;
    font-size: 13px;
  }
  .mc-fields {
    grid-template-columns: 1fr;
  }
  .mc-slot-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Session-type (in-studio vs online) choice cards. */
.mc-mode-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.mc-mode-card {
  align-items: center;
  text-align: center;
  min-height: 150px;
  justify-content: center;
}
.mc-mode-ico {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
}
