:root {
  --primary: #0f766e;
  --primary-dark: #0b5f59;
  --primary-soft: #ecfdf5;
  --success: #16a34a;
  --text: #17212b;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #ffffff;
  --background: #f5f7f8;
  --disabled: #f2f4f7;
  --danger: #dc2626;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  font-family: Tahoma, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 118, 110, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(15, 118, 110, 0.06), transparent 25rem),
    var(--background);
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 28px 0 36px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #159c8e);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
  font-size: 25px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.secure-badge svg,
.text-button svg,
.pricing-note svg,
.privacy-note svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.booking-card {
  padding: 36px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.intro {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.intro h1 {
  margin: 0;
  font-size: clamp(23px, 5vw, 31px);
  line-height: 1.45;
}

.intro > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  min-width: 74px;
  justify-items: center;
  gap: 7px;
  color: #98a2b3;
}

.step span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.step strong {
  font-size: 11px;
  white-space: nowrap;
}

.step.active,
.step.completed {
  color: var(--success);
}

.step.active span {
  border-color: var(--success);
  color: #fff;
  background: var(--success);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.22);
}

.step.completed span {
  border-color: var(--success);
  color: #fff;
  background: var(--success);
}

.step-line {
  width: 58px;
  height: 2px;
  margin-top: 16px;
  background: #d0d5dd;
  transition: background 0.2s;
}

.step-line.completed {
  background: var(--success);
}

.field-group {
  margin-bottom: 22px;
}

.field-group > label,
.section-heading h2 {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 800;
}

.select-wrap,
.input-wrap {
  position: relative;
}

.select-wrap select,
.input-wrap input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrap select {
  padding: 0 16px 0 48px;
  appearance: none;
  cursor: pointer;
}

.select-wrap > svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 22px;
  height: 22px;
  pointer-events: none;
  transform: translateY(-50%);
  fill: #667085;
}

.input-wrap input {
  padding: 0 48px 0 15px;
}

.input-wrap[dir="ltr"] input {
  padding: 0 15px 0 48px;
  direction: ltr;
  text-align: left;
}

.input-wrap > svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
  fill: #98a2b3;
}

.input-wrap[dir="ltr"] > svg {
  right: auto;
  left: 16px;
}

.select-wrap select:focus,
.input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
  outline: none;
}

.input-wrap.invalid input {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 19px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 11px;
}

.calendar-field {
  position: relative;
}

.date-trigger {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  text-align: right;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.date-trigger:hover,
.date-trigger[aria-expanded="true"] {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.07);
}

.date-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  color: var(--primary);
  background: var(--primary-soft);
}

.date-icon svg,
.date-trigger .chevron {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.date-copy {
  flex: 1;
}

.date-copy small,
.date-copy strong {
  display: block;
}

.date-copy small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.date-copy strong {
  font-size: 14px;
}

.date-trigger .chevron {
  color: #98a2b3;
  transition: transform 0.2s;
}

.date-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.calendar {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: min(100%, 380px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-header strong {
  font-size: 15px;
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.icon-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: #475467;
}

.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.weekdays {
  margin-bottom: 7px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.calendar-days button,
.calendar-placeholder {
  aspect-ratio: 1;
}

.calendar-days button {
  border: 0;
  border-radius: 10px;
  color: #344054;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.calendar-days button:hover:not(:disabled) {
  background: var(--primary-soft);
}

.calendar-days button.today {
  box-shadow: inset 0 0 0 1px var(--primary);
  color: var(--primary);
  font-weight: 800;
}

.calendar-days button.selected {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.22);
}

.calendar-days button:disabled {
  color: #d0d5dd;
  cursor: not-allowed;
}

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
  color: var(--muted);
  font-size: 10px;
}

.calendar-footer button {
  border: 0;
  color: var(--primary);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.calendar-legend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.calendar-legend i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--primary);
  border-radius: 3px;
}

.slots-section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 5px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 0;
  color: var(--primary);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.availability-loading {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.spinner,
.button-spinner {
  display: inline-block;
  border: 2px solid rgba(15, 118, 110, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.spinner {
  width: 20px;
  height: 20px;
}

.button-spinner {
  width: 17px;
  height: 17px;
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
}

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

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

.slot-button {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  text-align: right;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.slot-button:hover:not(:disabled):not(.unavailable) {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.slot-button.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.slot-button:disabled,
.slot-button.unavailable {
  border-color: #eaecf0;
  color: #98a2b3;
  background: var(--disabled);
  cursor: not-allowed;
}

.slot-copy strong,
.slot-copy small {
  display: block;
}

.slot-copy strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.slot-copy small {
  color: var(--muted);
  font-size: 10px;
}

.slot-button:disabled .slot-copy small,
.slot-button.unavailable .slot-copy small {
  color: #b3b8c1;
}

.slot-check {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
}

.slot-check svg {
  display: none;
  width: 14px;
  height: 14px;
  fill: #fff;
}

.slot-button.selected .slot-check {
  border-color: var(--primary);
  background: var(--primary);
}

.slot-button.selected .slot-check svg {
  display: block;
}

.slot-button:disabled .slot-check,
.slot-button.unavailable .slot-check {
  width: auto;
  height: auto;
  padding: 4px 6px;
  border: 0;
  border-radius: 6px;
  color: #98a2b3;
  background: #e4e7ec;
  font-size: 9px;
  white-space: nowrap;
}


.slot-warning {
  margin-top: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  line-height: 1.65;
}

.slot-warning.required {
  color: #9a3412;
  background: #fff7ed;
}

.slot-warning.recommended {
  color: #854d0e;
  background: #fefce8;
}

.slot-button.unavailable:focus-visible {
  outline: 2px solid #98a2b3;
  outline-offset: 2px;
}

.slot-button.night {
  grid-column: 1 / -1;
}

.pricing-note,
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 15px 0 0;
  padding: 11px 12px;
  border-radius: 11px;
  color: #44615e;
  background: #f2fbf8;
  font-size: 10px;
  line-height: 1.8;
}

.pricing-note p,
.privacy-note {
  margin-bottom: 0;
}

.pricing-note p {
  margin: 0;
}

.selection-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid #ccebe4;
  border-radius: 14px;
  background: #f7fffc;
}

.selection-summary span,
.selection-summary strong {
  display: block;
}

.selection-summary > div > span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}

.selection-summary strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.selected-count {
  color: var(--muted);
  font-size: 11px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.primary-button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  color: #fff;
  background: var(--success);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.18);
}

.primary-button:hover:not(:disabled) {
  background: #15803d;
  transform: translateY(-1px);
}

.primary-button:disabled {
  color: #98a2b3;
  background: #e4e7ec;
  box-shadow: none;
  cursor: not-allowed;
}

.primary-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.secondary-button {
  min-width: 120px;
  border: 1px solid var(--line);
  color: #475467;
  background: #fff;
}

.secondary-button:hover {
  background: #f9fafb;
}

.compact-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafbfb;
}

.compact-summary div {
  min-width: 0;
}

.compact-summary small,
.compact-summary strong {
  display: block;
}

.compact-summary small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
}

.compact-summary strong {
  font-size: 12px;
  line-height: 1.8;
}

.compact-summary-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
}

.compact-summary-total strong {
  color: var(--primary-dark);
  font-size: 18px;
}

.form-error {
  margin-top: -4px;
  padding: 11px 13px;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #b91c1c;
  background: #fef2f2;
  font-size: 11px;
  line-height: 1.8;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-top: 8px;
}

.form-actions .primary-button {
  margin-top: 0;
}

.privacy-note {
  color: #667085;
  background: #f8fafc;
}

.success-step {
  text-align: center;
}

.success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: #ecfdf3;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.success-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.success-step h2 {
  margin: 0;
  font-size: 25px;
}

.success-step > p:not(.eyebrow) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.reference-box {
  margin: 24px auto 20px;
  padding: 15px;
  border: 1px dashed #8ed8c9;
  border-radius: 14px;
  background: #f6fffc;
}

.reference-box small,
.reference-box strong {
  display: block;
}

.reference-box small {
  color: var(--muted);
  font-size: 10px;
}

.reference-box strong {
  margin: 7px 0;
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
}

.reference-box button {
  border: 0;
  color: var(--primary);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.success-details {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  text-align: right;
  overflow: hidden;
}

.success-details div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f1f3;
}

.success-details div:last-child {
  border-bottom: 0;
}

.success-details dt {
  color: var(--muted);
  font-size: 11px;
}

.success-details dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.wide {
  width: 100%;
  margin-top: 18px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 50%;
  bottom: 24px;
  max-width: min(90vw, 420px);
  padding: 12px 16px;
  border-radius: 11px;
  color: #fff;
  background: #17212b;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  font-size: 12px;
  line-height: 1.7;
  transform: translateX(50%);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  color: #98a2b3;
  font-size: 11px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.enamad-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  outline: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.enamad-link:hover {
  transform: translateY(-2px);
}

.enamad-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.22);
}

.enamad-link img {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 760px);
    padding-top: 15px;
  }

  .booking-card {
    padding: 24px 17px;
    border-radius: 21px;
  }

  .secure-badge {
    display: none;
  }

  .steps {
    margin: 25px 0 29px;
  }

  .step {
    min-width: 62px;
  }

  .step strong {
    font-size: 9px;
  }

  .step-line {
    width: 34px;
  }

  .calendar {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

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

  .slot-button.night {
    grid-column: auto;
  }

  .selection-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-summary {
    grid-template-columns: 1fr;
  }

  .compact-summary-total {
    grid-column: auto;
  }
}

/* Identity verification and payment flow */
.steps-four .step {
  min-width: 66px;
}

.steps-four .step-line {
  width: 42px;
}

.otp-step {
  text-align: center;
}

.otp-step h2 {
  margin: 0;
  font-size: 24px;
}

.otp-step > p:not(.eyebrow) {
  margin: 9px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.otp-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-soft);
}

.otp-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.otp-field {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
  text-align: right;
}

.otp-field input {
  width: 100%;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 12px;
  text-align: center;
  direction: ltr;
}

.otp-field input.invalid {
  border-color: #fca5a5;
  background: #fffafa;
}

.otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 360px;
  margin: 8px auto 18px;
  color: var(--muted);
  font-size: 11px;
}

.otp-meta .text-button {
  border: 0;
  background: transparent;
}

.otp-meta .text-button:disabled {
  color: #98a2b3;
  cursor: not-allowed;
}

.payment-amount {
  margin: 22px 0 16px;
  padding: 16px;
  border: 1px solid #bbf7d0;
  border-radius: 15px;
  background: #f0fdf4;
}

.payment-amount small,
.payment-amount strong {
  display: block;
}

.payment-amount small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.payment-amount strong {
  color: #166534;
  font-size: 24px;
}

.bank-card {
  position: relative;
  max-width: 470px;
  margin: 0 auto 18px;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.19), transparent 7rem),
    linear-gradient(135deg, #0f766e, #0b4f49);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.22);
  overflow: hidden;
}

.bank-card::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -110px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}

.bank-card-top,
.bank-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.bank-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 28px 0 26px;
  font-family: Arial, sans-serif;
  font-size: clamp(21px, 5vw, 29px);
  letter-spacing: 2px;
  white-space: nowrap;
}

.bank-card-bottom {
  align-items: flex-end;
}

.bank-card-bottom span,
.bank-card-bottom strong {
  display: block;
}

.bank-card-bottom strong {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.bank-card button {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 9px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.payment-warning {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #fde68a;
  border-radius: 12px;
  color: #92400e;
  background: #fffbeb;
  font-size: 11px;
  line-height: 1.9;
  text-align: right;
}

@media (max-width: 620px) {
  .steps-four .step {
    min-width: 48px;
  }

  .steps-four .step-line {
    width: 18px;
  }

  .steps-four .step strong {
    max-width: 54px;
    line-height: 1.5;
    text-align: center;
  }

  .otp-field input {
    letter-spacing: 8px;
  }

  .bank-card {
    padding: 20px 16px;
  }

  .bank-card > strong {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

/* Customer login, account dashboard, and guided booking flow */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-login-button {
  min-height: 38px;
  padding: 7px 17px;
  border: 1px solid var(--primary);
  border-radius: 11px;
  color: var(--primary-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.header-login-button:hover {
  color: #fff;
  background: var(--primary);
}

.identity-warning {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid #fecaca;
  border-radius: 13px;
  color: #b91c1c;
  background: #fff1f2;
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
  text-align: right;
}

.otp-meta .text-button:not(:disabled),
.resend-action:not(:disabled) {
  font-size: 16px;
  font-weight: 900;
}

.success-step > .payment-instruction {
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

.payment-warning {
  padding: 17px 18px;
  font-size: 17px;
  font-weight: 800;
  line-height: 2;
}

.support-contact {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.support-contact a {
  color: var(--primary-dark);
  text-decoration: none;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
}

.login-modal {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100vh - 36px);
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
  overflow: auto;
}

.login-modal h2 {
  margin: 0 0 24px;
  font-size: 23px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  color: #667085;
  background: #f2f4f7;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.customer-dashboard h2 {
  margin: 0;
  font-size: 25px;
}

.dashboard-heading,
.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-heading {
  margin-bottom: 22px;
}

.danger-text {
  color: var(--danger);
}

.orders-list {
  display: grid;
  gap: 18px;
}

.empty-orders {
  margin: 0;
  padding: 28px 18px;
  border: 1px dashed #d0d5dd;
  border-radius: 15px;
  color: var(--muted);
  text-align: center;
}

.order-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.order-card-header {
  margin-bottom: 14px;
}

.order-card-header > strong {
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.order-status {
  padding: 6px 10px;
  border-radius: 999px;
  color: #475467;
  background: #f2f4f7;
  font-size: 11px;
  font-weight: 800;
}

.order-confirmed .order-status {
  color: #166534;
  background: #dcfce7;
}

.order-rejected .order-status,
.order-cancelled .order-status {
  color: #991b1b;
  background: #fee2e2;
}

.confirmed-order-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.success-details a {
  color: var(--primary-dark);
  font-weight: 800;
}

.residence-map {
  display: block;
  width: 100%;
  height: 290px;
  margin-top: 16px;
  border: 0;
  border-radius: 15px;
  background: #f2f4f7;
}

.keyless-explanation {
  margin: 16px 0 0;
  padding: 17px 18px;
  border: 1px solid #ccebe4;
  border-radius: 13px;
  color: #134e4a;
  background: #f0fdfa;
  font-size: 17px;
  font-weight: 800;
  line-height: 2;
}

.access-countdown {
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
}

.access-countdown-before {
  border: 1px solid #86efac;
  color: #166534;
  background: #f0fdf4;
}

.access-countdown-active {
  border: 1px solid #fca5a5;
  color: #b91c1c;
  background: #fef2f2;
}

.access-countdown strong,
.access-countdown span {
  display: block;
}

.access-countdown strong {
  font-size: 18px;
  line-height: 1.9;
}

.access-countdown span {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: clamp(25px, 6vw, 36px);
  font-weight: 900;
  direction: ltr;
}

@media (max-width: 620px) {
  .header-actions {
    gap: 8px;
  }

  .header-login-button {
    padding: 6px 12px;
    font-size: 12px;
  }

  .login-modal {
    padding: 26px 17px 20px;
  }

  .identity-warning,
  .success-step > .payment-instruction,
  .payment-warning,
  .keyless-explanation,
  .access-countdown strong {
    font-size: 15px;
  }

  .residence-map {
    height: 240px;
  }

  .order-card {
    padding: 14px;
  }
}

/* Mobile readability improvements */
@media (max-width: 620px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }

  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small,
  .secure-badge,
  .step strong,
  .field-error,
  .calendar-weekdays,
  .calendar-footer button,
  .pricing-note,
  .privacy-note,
  .otp-meta,
  .order-status {
    font-size: 12px;
  }

  .eyebrow,
  .intro > p:last-child,
  .section-heading p,
  .otp-step > p:not(.eyebrow),
  .success-step > p,
  .empty-orders {
    font-size: 15px;
  }

  .field-group > label,
  .section-heading h2,
  .slot-copy strong,
  .date-copy strong,
  .selection-summary strong {
    font-size: 16px;
  }

  .select-wrap select,
  .input-wrap input {
    min-height: 58px;
    font-size: 17px;
  }

  .primary-button,
  .secondary-button,
  .text-button,
  .header-login-button {
    font-size: 15px;
  }

  .slot-copy small,
  .date-copy small,
  .compact-summary small {
    font-size: 12px;
  }

  .identity-warning,
  .success-step > .payment-instruction,
  .payment-warning,
  .keyless-explanation,
  .access-countdown strong {
    font-size: 16px;
  }
}

/* Release 1.9.3: customer cancellation, slot promotion, and public site information */
.slot-selection-help {
  font-size: 13px;
}

.pricing-note.first-page-emphasis {
  font-size: 11px;
}

.slot-price {
  font-size: 11px;
}

.selection-summary .payable-label {
  font-size: 11px;
}

.payment-step h2,
.payment-step > .payment-instruction {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.7;
}

.payment-step .payment-warning {
  max-width: 470px;
  margin: 18px auto;
  text-align: right;
}

.public-site-information {
  margin-top: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(228, 231, 236, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.05);
}

.public-site-information h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.6;
}

.public-site-information > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.public-site-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.public-site-facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafbfb;
}

.public-site-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.public-site-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.9;
}

.public-site-facts a,
.map-link {
  color: var(--primary-dark);
  text-decoration: none;
}

.map-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #b7e4da;
  border-radius: 11px;
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 620px) {
  .slot-selection-help {
    font-size: 16px;
  }

  .pricing-note.first-page-emphasis,
  .slot-price,
  .selection-summary .payable-label {
    font-size: 13px;
  }

  .payment-step h2,
  .payment-step > .payment-instruction {
    font-size: 22px;
  }

  .public-site-information {
    margin-top: 18px;
    padding: 22px 17px;
  }

  .public-site-information h2 {
    font-size: 19px;
  }

  .public-site-information > p,
  .public-site-facts dd,
  .map-link {
    font-size: 15px;
  }

  .public-site-facts {
    grid-template-columns: 1fr;
  }

  .public-site-facts dt {
    font-size: 13px;
  }
}

/* Release 1.9.3: cancellation policies, customer cancellation, and slot upsell pricing */
.slot-price.discounted {
  color: #166534;
  font-weight: 900;
}

.cancellation-policy-card {
  max-width: 620px;
  margin: 24px auto 0;
  padding: 20px 22px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: #fffaf5;
  text-align: right;
}

.cancellation-policy-card h3 {
  margin: 0 0 14px;
  color: #9a3412;
  font-size: 19px;
}

.cancellation-policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 20px 0 0;
  color: #7c2d12;
  line-height: 1.9;
}

.cancellation-policy-list li::marker {
  color: #ea580c;
}

.cancellation-policy-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.9;
}

.danger-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #dc2626;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.danger-button:hover:not(:disabled) {
  background: #b91c1c;
  transform: translateY(-1px);
}

.danger-button:disabled {
  background: #fca5a5;
  cursor: not-allowed;
  transform: none;
}

.order-cancel-button {
  width: 100%;
  margin-top: 16px;
}

.cancelled-refund-summary {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: 13px;
  color: #991b1b;
  background: #fef2f2;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
}

.cancellation-modal {
  width: min(100%, 620px);
}

.danger-eyebrow {
  color: #b91c1c;
}

.cancellation-order-reference {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: right;
}

.warning-policy-card {
  margin-top: 18px;
}

.cancellation-refund-preview {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  color: #991b1b;
  background: #fef2f2;
  text-align: center;
}

.cancellation-refund-preview span,
.cancellation-refund-preview strong {
  display: block;
}

.cancellation-refund-preview span {
  font-size: 13px;
  font-weight: 700;
}

.cancellation-refund-preview strong {
  margin-top: 8px;
  font-size: 22px;
}

.cancellation-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.cancellation-modal-actions .secondary-button {
  width: 100%;
}

@media (max-width: 620px) {
  .cancellation-policy-card {
    padding: 17px 16px;
  }

  .cancellation-policy-card h3 {
    font-size: 18px;
  }

  .cancellation-policy-list,
  .cancellation-policy-note,
  .cancelled-refund-summary {
    font-size: 15px;
  }

  .cancellation-modal-actions {
    grid-template-columns: 1fr;
  }

  .danger-button {
    font-size: 15px;
  }
}
