@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --e4k-orange: #dd8a03;
  --e4k-orange-deep: #db6015;
  --e4k-orange-50: #fdf4e3;
  --e4k-orange-100: #fadfa8;
  --e4k-orange-200: #f5bf66;
  --e4k-navy: #12284c;
  --e4k-navy-50: #eaeef5;
  --e4k-navy-100: #c5cedf;
  --e4k-navy-400: #23406f;
  --e4k-green: #76bc21;
  --e4k-teal: #0099a8;
  --e4k-white: #ffffff;
  --e4k-gray-50: #f7f7f8;
  --e4k-gray-100: #eeeef1;
  --e4k-gray-200: #dadce2;
  --e4k-gray-300: #b7bac5;
  --e4k-gray-400: #878b9a;
  --e4k-gray-500: #5a5e6b;
  --ink: var(--e4k-navy);
  --muted: var(--e4k-gray-500);
  --line: var(--e4k-gray-200);
  --soft: var(--e4k-gray-50);
  --accent: var(--e4k-orange-deep);
  --accent-soft: var(--e4k-orange-50);
  --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --radius: 18px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-sm: 0 1px 2px rgba(18, 40, 76, 0.08);
  --shadow-md: 0 4px 12px rgba(18, 40, 76, 0.1);
  --shadow-lg: 0 22px 60px -18px rgba(18, 40, 76, 0.28);
  --shadow-orange: 0 10px 24px -8px rgba(219, 96, 21, 0.35);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  min-height: 100vh;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--e4k-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
p {
  margin-top: 0;
}

.booking-shell {
  width: min(690px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(21px, 4.5vh, 48px) 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

body[data-step="slot"] .booking-shell {
  width: min(1040px, calc(100vw - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: 18px;
  align-items: stretch;
}

body[data-step="confirmation"] .booking-shell {
  width: min(492px, calc(100vw - 18px));
  padding-top: clamp(13px, 3vh, 36px);
}

.booking-main {
  min-width: 0;
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: 18px;
}

body[data-step="slot"] .booking-main {
  max-width: none;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

body[data-step="slot"] .brand-row,
body:not([data-line="kids"]) .brand-row {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}

body[data-step="confirmation"] .brand-row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body[data-step="confirmation"] #pageTitle {
  display: none;
}

.brand-logo {
  width: auto;
  height: 41px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--e4k-teal);
  color: var(--e4k-white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--e4k-orange-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--e4k-orange-deep);
  font-size: clamp(12px, 1.5vw, 15px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.step-progress {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.progress-chip {
  min-width: 59px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--e4k-orange-deep);
  color: var(--e4k-white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: var(--shadow-orange);
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--e4k-orange-50);
  box-shadow: inset 0 1px 3px rgba(18, 40, 76, 0.12);
}

.progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--e4k-orange), var(--e4k-orange-deep));
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card {
  display: none;
  min-height: 345px;
  padding: clamp(20px, 3.75vw, 33px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--e4k-orange);
  border-radius: var(--radius);
  background: var(--e4k-white);
  box-shadow: var(--shadow-lg);
}

.step-card.active {
  display: block;
}

.step-card > .eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--e4k-navy-50);
  color: var(--e4k-navy);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

body[data-step="quiz"] .step-card > .eyebrow {
  display: none;
}

body[data-step="quiz"] #quizTitle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.line-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.quiz-stack {
  display: grid;
  gap: 15px;
}

.quiz-question {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-question-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.quiz-image {
  width: 100%;
  height: clamp(128px, 28vw, 190px);
  display: block;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(18, 40, 76, 0.13);
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-option {
  position: relative;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 69px;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  background: var(--e4k-white);
  color: var(--ink);
  font-size: clamp(14px, 1.9vw, 20px);
  font-weight: 800;
  line-height: 1.22;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.quiz-option:hover {
  border-color: var(--e4k-orange-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.quiz-option.active {
  border-color: var(--e4k-orange-deep);
  background: var(--e4k-orange-50);
  box-shadow: var(--shadow-orange);
}

.quiz-option:focus-within {
  outline: 3px solid rgba(219, 96, 21, 0.2);
  outline-offset: 2px;
}

.quiz-option-letter {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--e4k-navy-50);
  color: var(--e4k-navy);
  font-size: 12px;
  font-weight: 800;
}

.quiz-option.active .quiz-option-letter {
  background: var(--e4k-orange-deep);
  color: var(--e4k-white);
}

.line-button,
.slot-button {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--e4k-white);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.line-button {
  min-height: 81px;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
}

.line-button span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.line-button.active,
.slot-button.active {
  border-color: var(--e4k-orange-deep);
  background: var(--e4k-orange-50);
  box-shadow: inset 0 0 0 1px var(--e4k-orange-deep), var(--shadow-md);
}

.single-field,
.phone-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.single-field input,
.phone-grid input,
.phone-grid select {
  height: 44px;
  font-size: 14px;
}

.phone-grid {
  display: grid;
  /* Wide enough for name-first country options like "El Salvador (+503)". */
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 11px;
}

.phone-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

input,
select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 11px;
  background: var(--e4k-white);
  color: var(--ink);
}

input:focus,
select:focus,
button:focus {
  outline: 3px solid rgba(219, 96, 21, 0.2);
  outline-offset: 2px;
}

.meta-line {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.slot-list {
  display: grid;
  gap: 11px;
  max-height: min(390px, 58vh);
  overflow: auto;
  padding-right: 5px;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  box-shadow: inset 0 -18px 18px -22px rgba(18, 40, 76, 0.55);
}

.slot-list::-webkit-scrollbar {
  width: 8px;
}

.slot-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--e4k-gray-300);
}

.slot-group {
  display: grid;
  gap: 8px;
}

.slot-group-label {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slot-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
}

.slot-button:hover {
  border-color: var(--e4k-orange-200);
  box-shadow: var(--shadow-md);
}

.slot-button strong,
.slot-button span {
  display: block;
}

.slot-button strong {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.slot-button span {
  color: var(--muted);
  font-size: 11px;
}

.slot-reason {
  margin-bottom: 6px;
  color: #106f63 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.slot-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eff5f4;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.show-more-button {
  min-height: 33px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.timezone-picker {
  width: min(100%, 430px);
  display: grid;
  gap: 6px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.timezone-picker span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timezone-picker select {
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 36px 0 14px;
  background: var(--e4k-white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  padding: 12px;
  border: 1px dashed var(--e4k-gray-300);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--e4k-gray-50);
}

.step-actions,
.join-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
}

.primary-button,
.secondary-button,
.secondary-link {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  border: 1px solid var(--e4k-orange-deep);
  background: var(--e4k-orange-deep);
  color: var(--e4k-white);
  box-shadow: var(--shadow-orange);
}

.primary-button:hover:not(:disabled) {
  background: #be4f0e;
}

.primary-button:disabled {
  cursor: not-allowed;
  border-color: #c4d2cf;
  background: #c4d2cf;
  color: var(--e4k-white);
  box-shadow: none;
}

.secondary-button,
.secondary-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--e4k-white);
}

.form-message {
  min-height: 17px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.confirmation {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--e4k-white);
  box-shadow: var(--shadow-lg);
}

.success-header {
  display: grid;
  gap: 11px;
  padding: 25px 24px 0;
}

.confirmation h2 {
  margin-bottom: 0;
  color: var(--e4k-navy);
  font-size: clamp(28px, 8vw, 34px);
  line-height: 1.12;
}

.confirmation-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.success-badge {
  width: fit-content;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 11px;
  background: #edf8e5;
  color: #3f6610;
  font-size: 12px;
  font-weight: 800;
}

.success-badge-icon {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--e4k-green);
  color: var(--e4k-white);
  font-size: 10px;
  line-height: 1;
}

.success-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--e4k-navy);
  box-shadow: var(--shadow-orange);
}

.success-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.success-video,
.video-note,
.success-details,
.success-whatsapp-note,
.success-urgent-banner,
.success-links {
  margin-inline: 24px;
}

.success-urgent-banner {
  display: grid;
  gap: 13px;
  padding: 17px;
  border: 1px solid #f5bf66;
  border-radius: 14px;
  background: #fff7e8;
  box-shadow: 0 12px 28px -18px rgba(219, 96, 21, 0.55);
}

.success-urgent-banner strong,
.success-urgent-banner small {
  display: block;
}

.success-urgent-banner strong {
  color: var(--e4k-orange-deep);
  font-size: 18px;
  line-height: 1.2;
}

.success-urgent-banner small {
  margin-top: 4px;
  color: var(--e4k-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.success-urgent-banner a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--e4k-orange-deep);
  color: var(--e4k-white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
}

.video-note {
  margin-top: -7px;
  color: var(--e4k-gray-400);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.success-details {
  display: grid;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--e4k-orange-100);
  border-top: 4px solid var(--e4k-orange-deep);
  border-radius: 14px;
  background: var(--e4k-orange-50);
}

.success-details-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.success-details h3,
.success-links h3,
.success-articles h3 {
  margin: 0;
  color: var(--e4k-navy);
  font-size: 18px;
  line-height: 1.25;
}

.success-details-heading span {
  flex: none;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--e4k-white);
  color: var(--e4k-orange-deep);
  font-size: 11px;
  font-weight: 800;
}

.success-detail-list {
  display: grid;
  gap: 13px;
}

.success-detail-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.success-detail-row strong {
  color: var(--e4k-navy);
}

.success-detail-icon,
.success-link-icon {
  position: relative;
  width: 20px;
  height: 20px;
  color: var(--e4k-orange-deep);
}

.success-icon-calendar {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.success-icon-calendar::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 2px;
  background: currentColor;
}

.success-icon-calendar::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: -4px;
  height: 7px;
  border-inline: 2px solid currentColor;
}

.success-icon-clock {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.success-icon-clock::before,
.success-icon-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 0;
}

.success-icon-clock::before {
  height: 6px;
  transform: translate(-50%, -1px);
}

.success-icon-clock::after {
  height: 5px;
  transform: translate(-50%, -1px) rotate(120deg);
}

.success-icon-person::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.success-icon-person::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 1px;
  width: 16px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.success-actions {
  margin-top: 1px;
}

.success-reminder {
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.success-whatsapp-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid #c7e69c;
  border-radius: 14px;
  background: #eaf6da;
  text-decoration: none;
}

.success-whatsapp-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #25d366;
  color: var(--e4k-white);
  font-size: 13px;
  font-weight: 800;
}

.success-whatsapp-note strong,
.success-whatsapp-note small,
.success-link-card strong,
.success-link-card small,
.success-review-card strong,
.success-review-card small {
  display: block;
}

.success-whatsapp-note strong {
  color: var(--e4k-navy);
  font-size: 15px;
}

.success-whatsapp-note small {
  margin-top: 2px;
  color: #4e7d16;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.success-links {
  display: grid;
  gap: 12px;
}

.success-link-card,
.success-review-card,
.success-articles a {
  text-decoration: none;
}

.success-link-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--e4k-orange-deep);
  border-radius: 14px;
  background: var(--e4k-white);
  color: var(--e4k-navy);
  box-shadow: var(--shadow-sm);
}

.success-icon-home {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--e4k-orange), var(--e4k-orange-deep));
  color: var(--e4k-white);
}

.success-icon-home::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
}

.success-icon-home::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 21px;
  height: 21px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.success-link-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.success-link-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.success-review-card {
  display: grid;
  gap: 7px;
  padding: 17px;
  border-radius: 14px;
  background: var(--e4k-navy);
  color: var(--e4k-white);
  box-shadow: var(--shadow-md);
}

.success-stars {
  color: #f4c430;
  font-size: 16px;
  letter-spacing: 0;
}

.success-review-card strong {
  color: var(--e4k-white);
  font-size: 15px;
  line-height: 1.35;
}

.success-review-card small {
  color: var(--e4k-navy-100);
  font-size: 12px;
  font-weight: 700;
}

.success-articles {
  display: grid;
  gap: 11px;
  padding: 20px 24px 25px;
  background: var(--e4k-gray-50);
  border-top: 1px solid var(--line);
}

.success-articles p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.success-articles div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.success-articles a {
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--e4k-orange-deep);
  border-radius: 12px;
  background: var(--e4k-white);
  color: var(--e4k-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.booking-side {
  display: none;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--e4k-white);
  box-shadow: var(--shadow-lg);
}

body[data-step="slot"] .booking-side,
body[data-step="confirmation"] .booking-side {
  display: block;
  margin-top: 108px;
}

body[data-step="confirmation"] .booking-side {
  display: none;
}

.side-details {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
}

.side-details h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.side-meta {
  display: grid;
  gap: 9px;
}

.side-meta-row {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.side-meta-row strong {
  font-size: 13px;
  font-weight: 800;
}

.side-meta-icon {
  position: relative;
  width: 23px;
  height: 23px;
  display: inline-block;
  color: var(--ink);
}

.side-meta-clock {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.side-meta-clock::before,
.side-meta-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 0;
}

.side-meta-clock::before {
  height: 7px;
  transform: translate(-50%, -1px) rotate(0deg);
}

.side-meta-clock::after {
  height: 6px;
  transform: translate(-50%, -1px) rotate(120deg);
}

.side-meta-pin::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.side-meta-pin::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.side-description {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.48;
}

.side-bullets {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 17px;
}

.side-bullets li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

@media (max-width: 940px) {
  body[data-step="slot"] .booking-shell {
    width: min(570px, calc(100vw - 24px));
    grid-template-columns: 1fr;
  }

  body[data-step="slot"] .booking-side {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .booking-shell {
    width: min(100vw - 18px, 480px);
    padding-top: 17px;
  }

  .brand-logo {
    height: 33px;
  }

  h1 {
    font-size: 12px;
  }

  h2 {
    font-size: 21px;
  }

  .step-card {
    min-height: 293px;
    padding: 17px 14px;
    border-radius: 15px;
  }

  .step-progress {
    gap: 8px;
  }

  .progress-chip {
    min-width: 48px;
    height: 32px;
    font-size: 13px;
  }

  .quiz-image {
    height: 128px;
  }

  .quiz-question-title {
    font-size: 22px;
  }

  .quiz-option {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 60px;
    padding: 12px;
    font-size: 15px;
  }

  .quiz-option-letter {
    width: 30px;
    height: 30px;
  }

  .side-details {
    padding: 20px;
  }

  .side-details h2 {
    font-size: 19px;
  }

  .side-description {
    font-size: 12px;
  }

  .side-bullets li {
    font-size: 12px;
  }

  .line-buttons,
  .phone-grid {
    grid-template-columns: 1fr;
  }

  .single-field input,
  .phone-grid input,
  .phone-grid select,
  .timezone-picker select {
    font-size: 16px;
  }

  .slot-list {
    max-height: min(420px, 56vh);
  }

  .success-header {
    padding: 22px 18px 0;
  }

  .success-video,
  .video-note,
  .success-details,
  .success-whatsapp-note,
  .success-urgent-banner,
  .success-links {
    margin-inline: 18px;
  }

  .success-details,
  .success-whatsapp-note,
  .success-urgent-banner,
  .success-link-card,
  .success-review-card {
    border-radius: 12px;
  }

  .success-details-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .success-articles {
    padding-inline: 18px;
  }

  .success-articles div {
    grid-template-columns: 1fr;
  }

  .slot-button {
    grid-template-columns: 1fr;
  }

  .step-actions {
    justify-content: stretch;
  }

  .primary-button,
  .secondary-button,
  .secondary-link {
    flex: 1 1 auto;
  }
}
