/* ==========================================================================
   GANGINA — BESPOKE LUXURY BOOKING SYSTEM STYLES
   Autumn Sale Warm Editorial Theme & Multi-Service Selection
   ========================================================================== */

.booking-app {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: var(--space-4xl);
}

/* --- Interactive Stepper Progress --- */
.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.booking-stepper::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--border-medium);
  z-index: 1;
}

.booking-stepper__progress {
  position: absolute;
  top: 16px;
  left: 40px;
  height: 1px;
  background: var(--text-dark);
  z-index: 2;
  transition: width 0.35s ease;
  width: 0%;
}

.booking-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: default;
  padding: 0;
  transition: opacity 0.2s ease;
}

.booking-step.clickable {
  cursor: pointer;
}

.booking-step.clickable:hover .booking-step__circle {
  border-color: var(--text-dark);
  transform: scale(1.08);
}

.booking-step__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.booking-step__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.booking-step.active .booking-step__circle {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.booking-step.active .booking-step__label {
  color: var(--text-dark);
  font-weight: 700;
}

.booking-step.completed .booking-step__circle {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.booking-step.completed .booking-step__label {
  color: var(--text-dark);
}

/* --- Live Selection Status Header --- */
.booking-selection-bar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.booking-selection-bar__text {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

#booking-selection-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.booking-selection-bar__sparkle {
  color: #635bff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.booking-selection-bar__total {
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
  margin-left: 12px;
}

/* --- Master Card with Prominent Background Watermark --- */
.booking-master-card {
  position: relative;
  background: #fbf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.booking-master-card__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 75vw, 580px);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.booking-master-card__watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.06));
}

.booking-master-card__content {
  position: relative;
  z-index: 1;
}

/* --- Panel Container --- */
.booking-panel {
  display: none;
}

.booking-panel.active {
  display: block;
  animation: panelSlideIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelSlideIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-panel__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.booking-panel__title {
  font-size: var(--text-2xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.booking-panel__desc {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* --- Multi-Service Selection List --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.service-item-row:hover {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.35);
  transform: translateX(2px);
}

.service-item-row:active {
  transform: scale(0.99);
}

.service-item-row.selected {
  background: rgba(0, 0, 0, 0.05);
  border-bottom-style: solid;
  border-bottom-color: var(--text-dark);
}

.service-item-left {
  flex: 1;
  padding-right: var(--space-md);
}

.service-item-name {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.service-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Dynamic Multi-Service Selection Area --- */
.service-preview-wrapper {
  margin-top: var(--space-md);
}

.multi-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 4px;
}

.multi-service-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.multi-service-header__sparkle {
  color: #635bff;
  font-size: 0.8rem;
}

.multi-service-header__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.multi-service-header__time {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #f0ede8;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.multi-service-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 8px;
  scrollbar-width: none;
}

.multi-service-strip::-webkit-scrollbar {
  display: none;
}

.multi-service-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  text-align: left;
  font-family: inherit;
}

.multi-service-tile:hover {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.multi-service-tile.active {
  border-color: var(--text-dark);
  background: #fbf9f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.multi-service-tile__img {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.multi-service-tile__info {
  display: flex;
  flex-direction: column;
}

.multi-service-tile__name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.multi-service-tile__price {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}

.multi-service-tile.active .multi-service-tile__name {
  font-weight: 700;
}

/* --- Interactive Service Preview Card --- */
.service-preview-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  animation: previewFadeIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: center;
}

@keyframes previewFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-preview-card__media {
  position: relative;
  flex-shrink: 0;
  width: 105px;
  height: 105px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f5f3ef;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-preview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.22s ease, transform 0.25s ease;
}

.service-preview-card__img.fade-out {
  opacity: 0.25;
  transform: scale(0.96);
}

.service-preview-card__badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(26, 26, 26, 0.85);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-preview-card__body {
  flex: 1;
  min-width: 0;
}

.service-preview-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.service-preview-card__title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.25;
}

.service-preview-card__price {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  white-space: nowrap;
}

.service-preview-card__desc {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-preview-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-preview-meta-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: #f7f5f1;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-item-price {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Checkbox Indicator for Multi-Select */
.service-item-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 11px;
  color: transparent;
  background: #ffffff;
}

.service-item-row.selected .service-item-checkbox {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: #ffffff;
}

/* Extras / Addons Section */
.addons-header {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px var(--space-lg);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
}

.addon-row:hover {
  background: rgba(0, 0, 0, 0.03);
}

.addon-row.selected {
  background: rgba(17, 17, 19, 0.05);
  border-color: rgba(17, 17, 19, 0.25);
}

.addon-row-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--border-medium, rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
  background: #ffffff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.addon-row.selected .addon-row-checkbox {
  background: var(--text-dark, #111113);
  border-color: var(--text-dark, #111113);
  color: #ffffff;
}

.addon-row-title {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--text-dark);
  transition: font-weight 0.15s ease;
}

.addon-row.selected .addon-row-title {
  font-weight: 700;
}

.addon-row-price {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

.addon-row.selected .addon-row-price {
  color: var(--text-dark);
  font-weight: 700;
}

/* --- STEP 2: DATE & TIME SELECTOR --- */
.datetime-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.datetime-month {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.datetime-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.datetime-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: transparent;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: var(--text-sm);
}

.datetime-nav-btn:hover:not(:disabled) {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

.datetime-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.datetime-cal-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: transparent;
  color: var(--text-dark);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.datetime-cal-btn:hover {
  background: #ffffff;
  border-color: var(--text-dark);
}

/* Horizontal Day Pills */
.date-pills-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.date-pills-row::-webkit-scrollbar {
  display: none;
}

.date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border-radius: 24px;
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 44px;
}

.date-pill__day-name {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.date-pill__day-number {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 2px;
}

.date-pill__month {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-muted);
}

.date-pill:hover:not(:disabled) {
  border-color: var(--text-dark);
  background: #ffffff;
}

.date-pill.active {
  border-color: var(--text-dark);
  background: var(--text-dark);
}

.date-pill.active .date-pill__day-name,
.date-pill.active .date-pill__month {
  color: rgba(255, 255, 255, 0.7);
}

.date-pill.active .date-pill__day-number {
  color: #ffffff;
}

.date-pill:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: var(--border-light);
}

/* Time Slots Grid */
.slots-container {
  margin-top: var(--space-xl);
}

.slots-title {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 8px;
}

.time-slot-btn {
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.time-slot-btn:hover:not(:disabled):not(.selected) {
  border-color: var(--text-dark);
  background: #ffffff;
}

.time-slot-btn.selected,
.time-slot-btn.selected:hover,
.time-slot-btn.selected:focus,
.time-slot-btn.selected:active {
  background: var(--text-dark, #111113) !important;
  color: #ffffff !important;
  border-color: var(--text-dark, #111113) !important;
}

.time-slot-btn.selected .slot-time,
.time-slot-btn.selected:hover .slot-time,
.time-slot-btn.selected:focus .slot-time {
  color: #ffffff !important;
}

.time-slot-btn--booked {
  background: #F4F1EC !important;
  border-color: #E6E1D8 !important;
  color: #A29E97 !important;
  cursor: not-allowed !important;
  opacity: 0.65;
  pointer-events: none;
}

.time-slot-btn--booked .slot-time {
  text-decoration: line-through;
}

.time-slot-btn--booked .slot-booked-tag {
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B45309;
  font-weight: 700;
  margin-top: 1px;
}

.empty-slots-banner {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-medium);
}

.empty-slots-banner p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.empty-slots-banner .next-avail-link {
  font-size: var(--text-xs);
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}

/* --- STEP 3: CLIENT DETAILS FORM --- */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

.form-field {
  margin-bottom: var(--space-lg);
}

.form-field label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  font-size: var(--text-sm);
  border: none;
  border-bottom: 1px solid var(--border-medium);
  background: transparent;
  color: var(--text-dark);
  transition: border-color 0.25s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--text-dark);
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* --- STEP 4: CONFIRMATION SUCCESS CARD --- */
.confirmation-card {
  text-align: center;
  padding: var(--space-xl) 0;
}

.confirmation-badge {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.confirmation-title {
  font-size: var(--text-2xl);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.confirmation-ref {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
}

.confirmation-details-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  font-size: var(--text-xs);
}

.confirmation-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.confirmation-row__label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.confirmation-row__val {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.confirmation-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.btn-whatsapp-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-whatsapp-confirm:hover {
  background: #1eb956;
}

.btn-whatsapp-confirm--primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  padding: 15px 24px !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35) !important;
  border: none !important;
}

.btn-whatsapp-confirm--primary:hover {
  background: linear-gradient(135deg, #28e26d 0%, #149c8c 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
}

.btn-calendar-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-calendar-add:hover {
  background: #ffffff;
}

/* --- Inline Live Bottom Reminder Card --- */
.booking-bottom-reminder {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  gap: 12px;
}

.reminder-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.reminder-sparkle {
  color: #635bff;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reminder-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.reminder-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.reminder-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.reminder-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  line-height: 1.3;
}

.reminder-pill--service {
  background: #f4f2ee;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.reminder-pill--addon {
  background: rgba(99, 91, 255, 0.08);
  color: #4f46e5;
  border: 1px solid rgba(99, 91, 255, 0.2);
}

.reminder-pill--datetime {
  background: #111113;
  color: #ffffff;
  border: 1px solid #111113;
}

.reminder-value {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  word-break: break-word;
}

.reminder-right {
  margin-left: 8px;
  flex-shrink: 0;
  text-align: right;
}

.reminder-total {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .booking-bottom-reminder {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }
  .reminder-right {
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 6px;
  }
}

/* Action Footer & Buttons */
.booking-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: var(--space-md);
}

.booking-actions--end {
  justify-content: flex-end;
}

.booking-actions--split {
  justify-content: space-between;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.booking-btn:active {
  transform: scale(0.97);
}

.booking-btn--primary {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.booking-btn--primary:hover:not(:disabled) {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.booking-btn--primary:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.booking-btn--secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-medium);
}

.booking-btn--secondary:hover {
  background: #ffffff;
  border-color: var(--text-dark);
}

@media (max-width: 600px) {
  .booking-stepper {
    padding: 0 4px;
    margin-bottom: var(--space-lg);
  }

  .booking-stepper::before,
  .booking-stepper__progress {
    left: 20px;
    right: 20px;
  }

  .booking-step {
    gap: 4px;
  }

  .booking-step__circle {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }

  .booking-step__label {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
  }

  .service-item-row {
    padding: 10px 14px;
  }

  .service-preview-card {
    gap: 12px;
    padding: 10px 12px;
  }

  .service-preview-card__media {
    width: 82px;
    height: 82px;
  }

  .service-preview-card__title {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .service-preview-card__desc {
    font-size: 0.68rem;
    -webkit-line-clamp: 2;
    margin-bottom: 4px;
  }

  .service-preview-card__badge {
    display: none;
  }

  .service-preview-meta-pill {
    font-size: 0.58rem;
    padding: 2px 6px;
  }

  .booking-actions--split {
    gap: 8px;
  }

  .booking-btn {
    padding: 12px 18px;
    font-size: 0.68rem;
    flex: 1;
  }

  .booking-actions--end .booking-btn {
    width: 100%;
  }
}

/* Centered Viewport Calendar Modal (Guaranteed Viewport Fixed on Mobile & Desktop) */
.calendar-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  margin: 0 !important;
}

.calendar-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.calendar-modal__content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  max-width: 320px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  animation: cardPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 100000;
  margin: auto;
}

.calendar-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-day-header {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
  text-transform: uppercase;
}

.calendar-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-day-cell:hover:not(:disabled) {
  background: #f0edf8;
}

.calendar-day-cell.selected {
  background: var(--text-dark);
  color: #ffffff;
}

.calendar-day-cell:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* --- Pre-Booking Review Modal --- */
.booking-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(17, 17, 19, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  padding: 16px;
  animation: modalFadeIn 0.2s ease-out;
}

.booking-modal-backdrop[hidden] {
  display: none !important;
}

.booking-modal-box {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  max-width: 440px;
  width: calc(100% - 24px);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  padding: 28px 24px 24px;
  box-sizing: border-box;
}

.booking-review-brand {
  position: relative;
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0ECE5;
}

.booking-review-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 4px;
}

.booking-review-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E8A99;
}

.booking-modal-close {
  position: absolute;
  top: -8px;
  right: -4px;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: #8E8A99;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
}

.booking-modal-close:hover {
  color: #111113;
}

.booking-modal-head-simple {
  text-align: center;
  margin-bottom: 18px;
}

.booking-modal-title {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111113;
}

.booking-modal-sub {
  font-size: 0.76rem;
  color: #6E6A7A;
  margin: 0;
  line-height: 1.45;
}

.booking-review-card {
  background: #FAF8F5;
  border: 1px solid #ECE7E1;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #EFEAE2;
}

.booking-review-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-review-label {
  color: #7A7687;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-review-val {
  color: #111113;
  font-weight: 600;
  text-align: right;
  font-size: 0.82rem;
}

.booking-review-row--highlight {
  background: #FFFFFF;
  margin: 2px -6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #E2DCD3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.booking-review-email {
  color: #111113;
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  word-break: break-all;
}

.booking-review-tag {
  font-size: 0.6rem;
  background: #EEF7F2;
  color: #1B7A43;
  border: 1px solid #CFE8DA;
  border-radius: 9999px;
  padding: 3px 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.booking-review-row--total {
  padding-top: 8px;
  border-top: 1px dashed #DDD7CE;
  border-bottom: none;
  font-size: 0.88rem;
}

.booking-review-row--total .booking-review-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: #111113;
}

.booking-review-foot-note {
  font-size: 0.68rem;
  color: #8E8A99;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.4;
}

.booking-review-actions {
  display: flex;
  gap: 10px;
}

.booking-review-actions .booking-btn {
  flex: 1;
  font-size: 0.78rem;
  padding: 12px 14px;
}

@media (max-width: 480px) {
  .booking-modal-box {
    padding: 18px 16px 16px;
    border-radius: 16px;
    max-height: 88vh;
    max-height: 88dvh;
  }
  .booking-review-brand {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .booking-review-logo {
    height: 32px;
  }
  .booking-modal-head-simple {
    margin-bottom: 14px;
  }
  .booking-modal-title {
    font-size: 1.05rem;
  }
  .booking-review-card {
    padding: 12px 14px;
    margin-bottom: 12px;
    gap: 8px;
  }
  .booking-review-row {
    font-size: 0.78rem;
    padding-bottom: 6px;
  }
  .booking-review-row--highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 10px;
  }
  .booking-review-foot-note {
    margin: 0 0 14px;
    font-size: 0.65rem;
  }
  .booking-review-actions {
    flex-direction: row;
    gap: 8px;
  }
  .booking-review-actions .booking-btn {
    padding: 10px 8px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    flex: 1;
  }
}

/* Email Typo Hint */
.email-typo-hint {
  margin-top: 6px;
  font-size: 0.72rem;
  color: #B45309;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.email-typo-hint:hover {
  background: #FDE68A;
}