/**
 * ============================================================
 * DDPAI User Booking — Styles (Redesigned)
 * ============================================================
 */

body {
  background: #fafafa;
  min-height: 100vh;
}

/* ---- Hero (smooth aurora mesh: orange · blue · green · white) ---- */
.hero {
  position: relative;
  padding: 96px 24px 120px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -14% -14%;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 50% at 14% 22%, rgba(251, 146, 60, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 86% 18%, rgba(96, 165, 250, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 78% 82%, rgba(110, 231, 183, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 22% 90%, rgba(253, 224, 71, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 50% 50%, rgba(255, 255, 255, 0.55) 0%, transparent 70%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 38%, #ecfeff 65%, #f0fdf4 100%);
  filter: saturate(120%);
  animation: meshDrift 16s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
}

@keyframes meshDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05) rotate(0deg); }
  20%  { transform: translate3d(2%, -3%, 0) scale(1.09) rotate(0.6deg); }
  40%  { transform: translate3d(4%, 1%, 0) scale(1.06) rotate(0deg); }
  60%  { transform: translate3d(2%, 3%, 0) scale(1.08) rotate(-0.5deg); }
  80%  { transform: translate3d(-3%, 2%, 0) scale(1.05) rotate(-0.4deg); }
  100% { transform: translate3d(-3%, -2%, 0) scale(1.05) rotate(0deg); }
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle 28% at 25% 35%, rgba(96, 165, 250, 0.45) 0%, transparent 65%),
    radial-gradient(circle 30% at 78% 65%, rgba(134, 239, 172, 0.4) 0%, transparent 65%),
    radial-gradient(circle 25% at 60% 25%, rgba(252, 165, 165, 0.35) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: blobFloat 13s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes blobFloat {
  0%   { transform: translate3d(-4%, 3%, 0) scale(1) rotate(0deg); }
  33%  { transform: translate3d(5%, -3%, 0) scale(1.1) rotate(2deg); }
  66%  { transform: translate3d(-3%, -4%, 0) scale(1.06) rotate(-1deg); }
  100% { transform: translate3d(4%, 4%, 0) scale(1.08) rotate(1deg); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 255, 255, 0.65) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-bg::before { animation: none; }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, #fafafa);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 18px;
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-style: italic;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, #f97316 0%, #ef4444 35%, #8b5cf6 65%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  background-size: 200% 100%;
  animation: highlightShift 8s ease-in-out infinite alternate;
}

@keyframes highlightShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero p {
  color: var(--slate-600);
  font-size: 15.5px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 32px -10px rgba(249, 115, 22, 0.6), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: transform 0.15s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.7), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  filter: brightness(1.05);
}

.hero-cta:active { transform: translateY(0); }

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--slate-800);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.hero-cta-ghost:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero {
    padding: 44px 16px 76px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.08;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-cta,
  .hero-cta-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .hero-cta-ghost {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 13px; }
}

/* Old hero check button (now in navbar) */
.hero-check-btn { display: none !important; }

/* ---- Step Indicator ---- */
.steps-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px 36px;
  flex-wrap: wrap;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  border: 2px solid var(--slate-200);
  color: var(--slate-400);
  background: #fff;
}

.step-circle.active {
  border-color: var(--orange-500);
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.step-circle.done {
  border-color: var(--green-500);
  background: var(--green-500);
  color: #fff;
}

.step-label {
  font-size: 12px;
  color: var(--slate-400);
  font-weight: 500;
  transition: color 0.3s;
}

.step-label.active {
  color: var(--orange-600);
  font-weight: 600;
}

.step-line {
  width: 28px;
  height: 2px;
  background: var(--slate-200);
  border-radius: 1px;
  transition: background 0.3s;
}

.step-line.done {
  background: var(--green-500);
}

/* ---- Booking Card ---- */
.booking-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.04),
    0 12px 40px -12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  max-width: 720px;
  margin: 0 auto 56px;
}

.booking-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-card .card-desc {
  color: var(--slate-400);
  font-size: 13px;
  margin-bottom: 24px;
}

/* ---- Date Grid ---- */
.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
}

.date-grid::-webkit-scrollbar {
  width: 5px;
}
.date-grid::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 3px;
}

.date-card {
  padding: 12px 6px;
  border-radius: 12px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.date-card:hover:not(.disabled) {
  border-color: var(--orange-300);
  background: var(--orange-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.date-card.selected {
  border-color: var(--orange-500);
  background: var(--orange-50);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.date-card.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--slate-50);
}

.date-card .day-name {
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 500;
}

.date-card .day-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-800);
  margin: 2px 0;
}

.date-card.selected .day-num {
  color: var(--orange-600);
}

.date-card .day-avail {
  font-size: 10px;
  font-weight: 600;
}

.day-avail.has-slots {
  color: var(--green-600);
}
.day-avail.no-slots {
  color: var(--slate-400);
}

/* ---- Calendar ---- */
.user-calendar {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--slate-600);
}

.cal-nav-btn:hover:not(:disabled) {
  background: var(--slate-50);
  border-color: var(--slate-300);
}

.cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cal-month-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-800);
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.cal-hd {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-400);
  padding: 6px 0;
}

.cal-hd.sun {
  color: var(--red-500);
}

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

.cal-cell {
  text-align: center;
  padding: 8px 2px 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

.cal-cell.empty {
  cursor: default;
}

.cal-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  line-height: 1.2;
}

.cal-avail {
  display: block;
  font-size: 9px;
  font-weight: 600;
  margin-top: 1px;
  line-height: 1;
}

.cal-cell.available {
  background: #ecfdf5;
}
.cal-cell.available .cal-avail { color: var(--green-600); }
.cal-cell.available:hover {
  background: #d1fae5;
  transform: scale(1.05);
}

.cal-cell.full {
  background: var(--slate-50);
  cursor: not-allowed;
}
.cal-cell.full .cal-num { color: var(--slate-400); }
.cal-cell.full .cal-avail { color: var(--slate-400); }

.cal-cell.past {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-cell.holiday {
  background: #fef2f2;
  cursor: not-allowed;
}
.cal-cell.holiday .cal-num { color: #ef4444; }
.cal-cell.holiday .cal-avail { color: #ef4444; }

.cal-cell.sunday .cal-num {
  color: var(--red-500);
}

.cal-cell.is-today {
  box-shadow: inset 0 0 0 2px var(--orange-400);
}

.cal-cell.selected {
  background: var(--orange-500) !important;
}
.cal-cell.selected .cal-num { color: #fff !important; }
.cal-cell.selected .cal-avail { color: rgba(255,255,255,0.8) !important; }

/* Calendar Legend */
.cal-legend {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.04);
  font-size: 11px;
  color: var(--slate-500);
  flex-wrap: wrap;
}

.cal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}

.cal-dot.available { background: #ecfdf5; border: 1.5px solid var(--green-500); }
.cal-dot.full { background: var(--slate-100); border: 1.5px solid var(--slate-300); }
.cal-dot.holiday { background: #fef2f2; border: 1.5px solid #ef4444; }
.cal-dot.selected { background: var(--orange-500); border: 1.5px solid var(--orange-600); }

/* ---- Time Grid ---- */
.time-section {
  margin-top: 20px;
}

.time-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 12px;
}

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

.time-btn {
  padding: 12px 4px;
  border-radius: 10px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  transition: all 0.2s;
  font-family: inherit;
}

.time-btn:hover {
  border-color: var(--orange-400);
  background: var(--orange-50);
  transform: translateY(-1px);
}

.time-btn.selected {
  border-color: var(--orange-500);
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}

/* ---- Navigation Buttons ---- */
.btn-row {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

.btn-back {
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  color: var(--slate-600);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-back:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}

.btn-next {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-next:disabled {
  background: var(--slate-200);
  color: var(--slate-400);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-confirm {
  padding: 14px 40px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

/* ---- Confirm Summary ---- */
.summary-section {
  background: var(--slate-50);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.summary-section h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-key {
  color: var(--slate-500);
}

.summary-val {
  color: var(--slate-800);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

/* ---- Success Page ---- */
.success-page {
  text-align: center;
  padding: 56px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.25);
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-page h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.success-page > p {
  color: var(--slate-500);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.success-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 460px;
  margin: 0 auto 24px;
}

.btn-new {
  padding: 12px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: var(--orange-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.btn-new:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

/* ---- Ref Code Box ---- */
.ref-code-box {
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  border-radius: 16px;
  padding: 24px;
  margin: 0 auto 24px;
  max-width: 400px;
  text-align: center;
}

.ref-code-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ref-code {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  font-variant-numeric: tabular-nums;
}

.ref-code-hint {
  font-size: 11px;
  color: var(--slate-400);
  margin-top: 8px;
}

/* ---- Success Actions ---- */
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  margin: 0 auto;
}

.success-actions .btn-new,
.success-actions .btn-email {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 10px;
  border: 1.5px solid var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-email:hover {
  background: var(--blue-500);
  color: #fff;
}

.btn-email svg { flex-shrink: 0; }

/* ---- Hero Check Button ---- */
.hero-check-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--slate-200);
  background: #fff;
  color: var(--slate-600);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.hero-check-btn:hover {
  border-color: var(--orange-400);
  color: var(--orange-600);
  background: var(--orange-50);
}

/* ---- Checked Booking Result ---- */
.checked-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.checked-status {
  text-align: center;
  margin-bottom: 8px;
}

.checked-ref {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--slate-800);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

/* Progress */
.checked-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: 12px;
}

.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cp-step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-400);
}

.cp-step.done span { color: var(--slate-700); }

.cp-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--slate-200);
  color: var(--slate-400);
  background: #fff;
}

.cp-circle.done {
  border-color: var(--green-500);
  background: var(--green-500);
  color: #fff;
}

.cp-line {
  width: 32px;
  height: 2px;
  background: var(--slate-200);
  margin: 0 6px;
  margin-bottom: 18px;
}

.cp-line.done { background: var(--green-500); }

.checked-details {
  margin-bottom: 14px;
}

.btn-cancel-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #fecaca;
  background: #fef2f2;
  color: var(--red-700);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.btn-cancel-booking:hover {
  background: #fecaca;
}

/* ---- Checked Actions ---- */
.checked-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.btn-edit-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.btn-edit-booking:hover {
  background: var(--blue-500);
  color: #fff;
}

.btn-edit-booking svg { flex-shrink: 0; }

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 48px 24px 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 24px;
  background: #fff;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--slate-600);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.footer-links a:hover {
  color: #c2010f;
  background: rgba(230, 0, 18, 0.06);
}

.footer-dot {
  color: var(--slate-300);
  font-size: 13px;
}

.footer-text {
  color: var(--slate-400);
  font-size: 12px;
  margin-bottom: 4px;
}

.footer-copy {
  color: var(--slate-300);
  font-size: 11px;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .booking-card {
    padding: 24px 18px;
    border-radius: 16px;
    margin: 0 12px 32px;
  }

  .date-grid {
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  }

  .time-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }

  .steps-bar {
    gap: 4px;
    padding: 0 16px 24px;
    margin-top: -22px;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 18px;
  }

  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .btn-row {
    flex-direction: column-reverse;
  }

  .btn-row .btn-next,
  .btn-row .btn-back,
  .btn-row .btn-confirm {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer {
    padding: 32px 16px 24px;
  }

  .footer-links {
    gap: 2px;
  }

  .footer-links a {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 380px) {
  .date-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-card {
    padding: 20px 14px;
    margin: 0 8px 24px;
  }
}
