:root {
  --brand: #1565ff;
  --brand-dark: #0d47c9;
  --brand-soft: #e8f0ff;
  --brand-pale: #f5f8ff;
  --ink: #141a24;
  --muted: #667085;
  --line: #e4e9f1;
  --danger: #d83b32;
  --success: #087a55;
  --naver-green: #03a94d;
  --naver-green-soft: #eaf9f0;
  --surface: #ffffff;
  --page: #f4f7fb;
  --radius: 20px;
  --shadow: 0 16px 42px rgba(27, 55, 100, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(21, 101, 255, 0.34);
  outline-offset: 3px;
}

.booking-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(228, 233, 241, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.booking-header__inner {
  display: flex;
  width: 100%;
  max-width: 1040px;
  min-height: 62px;
  margin: 0 auto;
  padding: 10px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
}

.brand__name {
  color: var(--brand);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand__branch {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}

.header-call__label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.header-call__number {
  font-size: 13px;
  font-weight: 800;
}

.booking-intro {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.2) 0 7%, transparent 7.5%),
    radial-gradient(circle at 93% 42%, rgba(255, 255, 255, 0.1) 0 13%, transparent 13.5%),
    linear-gradient(135deg, #1565ff 0%, #0d47c9 100%);
}

.booking-intro::after {
  position: absolute;
  right: -70px;
  bottom: -84px;
  width: 230px;
  height: 230px;
  border: 36px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.booking-intro__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 38px 20px 34px;
}

.booking-intro__eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.booking-intro h1 {
  margin: 0;
  font-size: clamp(28px, 8vw, 43px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.booking-intro h1 strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 5.3vw, 23px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.booking-intro__inner > p:not(.booking-intro__eyebrow) {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.booking-steps {
  display: grid;
  max-width: 390px;
  margin: 27px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.booking-steps li {
  position: relative;
  display: flex;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  gap: 7px;
}

.booking-steps li:not(:last-child)::after {
  position: absolute;
  top: 13px;
  right: 7px;
  left: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}

.booking-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #1b58d2;
  place-items: center;
}

.booking-steps .is-active {
  color: #fff;
}

.booking-steps .is-active span {
  border-color: #fff;
  color: var(--brand-dark);
  background: #fff;
}

.booking-area {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 14px 58px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.booking-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.calendar-card,
.time-card {
  padding: 20px 16px;
}

.card-heading {
  display: flex;
  min-height: 55px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-kicker {
  margin: 0 0 3px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.card-heading h2,
.details-card h2,
.confirmation h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.calendar-toolbar {
  display: grid;
  margin: 18px 0 12px;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
}

.calendar-title {
  margin: 0;
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.month-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transition: border-color 150ms ease, background 150ms ease;
}

.month-button:hover:not(:disabled) {
  border-color: #a9c5ff;
  background: var(--brand-pale);
}

.month-button:disabled {
  color: #bcc4d0;
  background: #f7f8fa;
  cursor: not-allowed;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekdays {
  margin-bottom: 5px;
}

.weekdays span {
  padding: 5px 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.weekdays .is-sunday {
  color: var(--danger);
}

.calendar-cell {
  display: grid;
  min-height: 46px;
  padding: 2px;
  place-items: center;
}

.calendar-day {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  place-items: center;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.calendar-day:hover:not(:disabled):not(.is-selected) {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.calendar-day:active:not(:disabled) {
  transform: scale(0.95);
}

.calendar-day.is-sunday:not(.is-selected) {
  color: var(--danger);
}

.calendar-day.is-today:not(.is-selected):not(:disabled)::after {
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.calendar-day.is-selected {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 7px 18px rgba(21, 101, 255, 0.32);
}

.calendar-day:disabled {
  color: #c7cdd6;
  cursor: not-allowed;
}

.calendar-day.is-past:not(.is-selected) {
  color: #d5dae2;
  opacity: 0.58;
}

.calendar-help {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.card-heading--time {
  display: block;
}

.selected-date-label {
  display: inline-block;
  margin: 10px 0 0;
  padding: 7px 11px;
  border-radius: 10px;
  color: var(--muted);
  background: #f5f7fa;
  font-size: 12px;
  font-weight: 700;
}

.selected-date-label.has-date {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.availability-status {
  display: flex;
  min-height: 34px;
  margin: 17px 0 13px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  background: #f6f8fb;
  font-size: 11px;
  align-items: center;
  gap: 7px;
}

.availability-status[hidden] {
  display: none;
}

#time-content {
  margin-top: 17px;
}

.status-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9da7b5;
}

.availability-status.is-ready {
  color: var(--success);
  background: #eefaf6;
}

.availability-status.is-ready .status-dot {
  background: #10a477;
}

.availability-status.is-error {
  color: #9a3b35;
  background: #fff3f2;
}

.availability-status.is-error .status-dot {
  background: var(--danger);
}

.time-loading {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.time-loading span {
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f1f3f6 20%, #fafbfc 45%, #f1f3f6 70%);
  background-size: 250% 100%;
  animation: loading-slide 1.3s linear infinite;
}

.time-section + .time-section {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.time-section__label {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-slot {
  position: relative;
  min-height: 47px;
  padding: 6px 3px;
  border: 1px solid #dce3ed;
  border-radius: 11px;
  color: #374151;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease, transform 140ms ease;
}

.time-slot:hover:not(:disabled):not(.is-selected) {
  border-color: #86adff;
  color: var(--brand-dark);
  background: var(--brand-pale);
}

.time-slot:active:not(:disabled) {
  transform: scale(0.97);
}

.time-slot.is-selected {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
  box-shadow: 0 7px 16px rgba(21, 101, 255, 0.24);
}

.time-slot:disabled {
  border-color: #edf0f4;
  color: #b9c0ca;
  background: #f5f6f8;
  text-decoration: line-through;
  cursor: not-allowed;
}

.time-slot .slot-note {
  display: block;
  margin-top: -1px;
  font-size: 8px;
  font-weight: 600;
  text-decoration: none;
}

.time-legend {
  display: flex;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  align-items: center;
  gap: 6px;
}

.time-legend span {
  width: 10px;
  height: 10px;
  border: 1px solid #e4e8ed;
  border-radius: 3px;
  background: #f5f6f8;
}

.fallback-panel,
.empty-panel {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #ffd7d3;
  border-radius: 14px;
  background: #fff8f7;
  text-align: center;
}

.empty-panel {
  border-color: var(--line);
  background: #f7f9fc;
}

.fallback-panel strong,
.empty-panel strong {
  font-size: 14px;
}

.fallback-panel p,
.empty-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.fallback-actions {
  display: grid;
  margin: 14px 0 9px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fallback-actions a {
  padding: 10px 8px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.fallback-actions a:last-child {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

#retry-availability {
  padding: 5px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.details-card {
  margin-top: 14px;
  padding: 23px 18px;
}

.details-card__header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.selection-summary {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--brand);
  border-radius: 4px 12px 12px 4px;
  color: var(--brand-dark);
  background: var(--brand-pale);
  font-size: 14px;
  font-weight: 800;
}

#reservation-form {
  padding-top: 20px;
}

.form-section {
  padding: 19px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.form-section + .form-section,
.form-section + .info-disclosure,
.info-disclosure + .agreement-list {
  margin-top: 12px;
}

.form-section h3 {
  margin: 0 0 19px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.form-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-group + .field {
  margin-top: 22px;
}

.form-group legend {
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
}

.required-mark {
  margin-left: 3px;
  color: var(--naver-green);
  font-size: 10px;
  font-weight: 800;
  vertical-align: 1px;
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice-option {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-check {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #c8d0dc;
  border-radius: 5px;
  background: #fff;
  transition: border-color 140ms ease, background 140ms ease;
}

.choice-option input:focus-visible + .choice-check {
  outline: 3px solid rgba(3, 169, 77, 0.2);
  outline-offset: 2px;
}

.choice-option input:checked + .choice-check {
  border-color: var(--naver-green);
  background: var(--naver-green);
}

.form-group[aria-invalid="true"] .choice-check {
  border-color: var(--danger);
}

.form-group[aria-invalid="true"] .choice-option input:checked + .choice-check {
  border-color: var(--naver-green);
}

.choice-option input:checked + .choice-check::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.form-grid {
  display: grid;
  gap: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9e0ea;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7afba;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 101, 255, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field textarea {
  display: block;
  min-height: 112px;
  padding-bottom: 31px;
  resize: vertical;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #7d8795;
  border-bottom: 1.5px solid #7d8795;
  pointer-events: none;
  content: "";
  transform: translateY(-70%) rotate(45deg);
}

.field select {
  padding-right: 42px;
  appearance: none;
  cursor: pointer;
}

.request-field {
  position: relative;
  margin-top: 20px;
}

.character-count {
  position: absolute;
  right: 13px;
  bottom: 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}

.request-field:has(.field-error:not(:empty)) .character-count {
  bottom: 31px;
}

.form-disclosure,
.info-disclosure {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.form-disclosure {
  margin-top: 19px;
  background: #fafbfc;
}

.form-disclosure summary,
.info-disclosure summary {
  position: relative;
  padding: 15px 44px 15px 16px;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.form-disclosure summary::-webkit-details-marker,
.info-disclosure summary::-webkit-details-marker {
  display: none;
}

.form-disclosure summary::after,
.info-disclosure summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #7d8795;
  border-bottom: 1.5px solid #7d8795;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 150ms ease;
}

.form-disclosure[open] summary::after,
.info-disclosure[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.form-grid--visitor {
  padding: 3px 16px 17px;
}

.booking-notice h3 {
  margin-bottom: 14px;
}

.notice-card {
  padding: 16px;
  border-radius: 13px;
  color: #424955;
  background: #f6f7f9;
  font-size: 12px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.notice-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
}

.notice-card h4 {
  margin: 16px 0 3px;
  color: var(--ink);
  font-size: 14px;
}

.notice-card p {
  margin: 0 0 9px;
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.info-disclosure {
  overflow: clip;
}

.seller-disclosure summary {
  font-size: 15px;
  font-weight: 800;
}

.seller-info {
  margin: 0;
  padding: 0 16px 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.seller-info div {
  display: grid;
  padding-top: 12px;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
}

.seller-info dt {
  color: var(--muted);
}

.seller-info dd {
  min-width: 0;
  margin: 0;
  font-weight: 700;
}

.seller-info a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.agreement-list {
  display: grid;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
}

.agreement-list .info-disclosure {
  border: 0;
  border-radius: 0;
}

.agreement-list .info-disclosure + .info-disclosure {
  border-top: 1px solid var(--line);
}

.policy-copy {
  padding: 16px;
  border-top: 1px solid var(--line);
  color: #505867;
  background: #fafbfc;
  font-size: 11px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.policy-copy h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
}

.policy-copy p {
  margin: 0 0 10px;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.policy-copy ul,
.policy-copy ol {
  margin: 0 0 10px;
  padding-left: 19px;
}

.policy-copy li + li {
  margin-top: 7px;
}

.field-help,
.field-error {
  margin: 5px 0 0;
  font-size: 10px;
}

.field-help {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-weight: 600;
}

.field-error:empty {
  display: none;
}

.submit-error {
  margin-top: 15px;
  padding: 11px 13px;
  border-radius: 10px;
  color: #9a302a;
  background: #fff1f0;
  font-size: 12px;
  font-weight: 600;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(21, 101, 255, 0.24);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.submit-button:hover:not(:disabled) {
  background: var(--brand-dark);
}

.submit-button:active:not(:disabled) {
  transform: translateY(1px);
}

.submit-button:disabled {
  color: #e8ebef;
  background: #9ca6b5;
  box-shadow: none;
  cursor: wait;
}

.naver-mark {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--naver-green);
  font-size: 19px;
  font-weight: 900;
  place-items: center;
}

.naver-booking-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: var(--naver-green);
}

.naver-booking-link:hover {
  color: #fff;
  background: #028d40;
}

.naver-mark--button {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  color: var(--naver-green);
  background: #fff;
  font-size: 14px;
}

.details-card > .booking-notice {
  margin-top: 18px;
}

.submit-note {
  margin: 8px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.confirmation {
  margin-top: 14px;
  padding: 38px 20px;
  text-align: center;
}

.confirmation__mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(21, 101, 255, 0.26);
  font-size: 28px;
  font-weight: 900;
  place-items: center;
}

.confirmation > p:not(.card-kicker):not(.confirmation__time):not(.confirmation__status) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.confirmation__time {
  display: inline-block;
  margin: 17px 0 0;
  padding: 11px 16px;
  border-radius: 12px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 15px;
  font-weight: 900;
}

.confirmation__status {
  display: inline-flex;
  align-items: center;
  margin: 12px 0 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--success);
  background: var(--naver-green-soft);
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
}

.confirmation__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--naver-green);
}

.confirmation__actions {
  display: grid;
  max-width: 370px;
  margin: 23px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.confirmation__actions a {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
}

.confirmation__actions a:last-child {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.booking-footer {
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
  color: #aeb8c6;
  background: #121a27;
  text-align: center;
  font-size: 11px;
}

.booking-footer p {
  margin: 2px 0;
}

.booking-footer strong {
  color: #fff;
  font-size: 13px;
}

@keyframes loading-slide {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (min-width: 600px) {
  .mo-copy-break {
    display: none;
  }

  .booking-area {
    padding: 28px 24px 72px;
  }

  .calendar-card,
  .time-card,
  .details-card {
    padding: 26px;
  }

  .calendar-day {
    width: 43px;
    height: 43px;
  }

  .time-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .details-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .selection-summary {
    flex: 0 0 auto;
    margin-top: 0;
  }
}

@media (min-width: 860px) {
  .booking-intro__inner {
    padding: 52px 30px 50px;
  }

  .booking-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .calendar-card,
  .time-card {
    min-height: 540px;
    padding: 28px;
  }

  .card-heading h2,
  .details-card h2,
  .confirmation h2 {
    font-size: 20px;
  }

  .selected-date-label {
    float: right;
    margin-top: -39px;
  }

  .availability-status {
    clear: both;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
