/* ========================================
   HOTEL ROYAL VRINDAVAN — Booking System Styles
   ======================================== */

/* --- Modal Overlay Base --- */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-darker);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.booking-modal__container {
  background: var(--bg);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--gold-medium);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.active .booking-modal__container {
  transform: translateY(0);
}

.booking-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.booking-modal__close:hover {
  color: var(--secondary);
}

/* --- Multi-step Wizard --- */
.booking-wizard__steps {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--accent);
}

.booking-wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.booking-wizard__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 55%;
  width: 90%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
  transition: background 0.3s;
}

.booking-wizard__step.active:not(:last-child)::after,
.booking-wizard__step.completed:not(:last-child)::after {
  background: var(--secondary);
}

.booking-wizard__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-button);
  font-weight: 600;
  color: var(--text-secondary);
  z-index: 2;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.booking-wizard__step.active .booking-wizard__step-num {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--text-white);
  box-shadow: 0 0 10px rgba(182, 141, 64, 0.4);
}

.booking-wizard__step.completed .booking-wizard__step-num {
  border-color: var(--secondary);
  background: var(--primary);
  color: var(--text-white);
}

.booking-wizard__step-label {
  font-family: var(--font-button);
  font-size: var(--fs-xs);
  font-weight: 500;
  margin-top: 0.5rem;
  color: var(--text-secondary);
  display: none;
}

.booking-wizard__step.active .booking-wizard__step-label {
  color: var(--secondary);
  font-weight: 600;
}

/* --- Wizard Body & Forms --- */
.booking-wizard__content {
  padding: 1.5rem;
}

.booking-wizard__panel {
  display: none;
}

.booking-wizard__panel.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-grid--full {
  grid-column: span 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--bg);
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.15);
}

.availability-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  display: none;
  margin-bottom: 1.5rem;
}

.availability-alert.success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
}

.availability-alert.danger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FEF2F2;
  border: 1px solid #EF4444;
  color: #991B1B;
}

/* --- Review Summary --- */
.booking-summary-box {
  background: var(--accent);
  border: 1px solid var(--gold-medium);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-summary-box h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

.summary-row.total {
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  font-size: var(--fs-body-lg);
}

/* --- Payment Styles --- */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-method {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method input[type="radio"] {
  accent-color: var(--secondary);
}

.payment-method:hover {
  border-color: var(--secondary);
  background: var(--accent);
}

.payment-method.active {
  border-color: var(--secondary);
  background: var(--gold-light);
}

.payment-details-panel {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--accent);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-color);
}

.payment-details-panel.active {
  display: block;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.qr-code-container img {
  width: 180px;
  height: 180px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

/* --- Confirmation Screen --- */
.confirmation-panel {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.confirmation-panel h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--primary);
  margin-bottom: 1rem;
}

.booking-id-tag {
  background: var(--gold-light);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-family: var(--font-button);
  font-weight: 700;
  font-size: var(--fs-body-lg);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Dashboards Panels Base --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

.dashboard-sidebar {
  background: var(--primary);
  color: var(--text-white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  border-bottom-left-radius: 0;
}

.dashboard-sidebar__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  color: var(--secondary);
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dashboard-menu__btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-button);
  font-size: var(--fs-small);
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-menu__btn:hover,
.dashboard-menu__btn.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-menu__btn.active {
  border-left: 3px solid var(--secondary);
  background: rgba(182, 141, 64, 0.15);
}

.dashboard-body {
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 90vh;
}

.dashboard-section {
  display: none;
}

.dashboard-section.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-card__title {
  font-family: var(--font-button);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--primary);
  font-weight: 700;
}

/* --- Data Table --- */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--fs-small);
}

.admin-table th {
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-button);
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.admin-table tr:hover {
  background: rgba(248, 245, 240, 0.5);
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-align: center;
}

.badge--pending {
  background: #FEF3C7;
  color: #D97706;
}

.badge--confirmed {
  background: #D1FAE5;
  color: #059669;
}

.badge--completed {
  background: #DBEAFE;
  color: #2563EB;
}

.badge--cancelled {
  background: #FEE2E2;
  color: #DC2626;
}

.badge--paid {
  background: #ECFDF5;
  color: #10B981;
}

.badge--unpaid {
  background: #FFFBEB;
  color: #D97706;
}

/* --- Booking Calendar Component --- */
.calendar-container {
  background: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

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

.calendar-header h3 {
  font-family: var(--font-heading);
  color: var(--primary);
}

.calendar-nav-btn {
  background: var(--accent);
  border: 1px solid var(--border-color);
  font-size: var(--fs-small);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.calendar-nav-btn:hover {
  background: var(--secondary);
  color: var(--text-white);
  border-color: var(--secondary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day-label {
  text-align: center;
  font-family: var(--font-button);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  padding-bottom: 0.5rem;
}

.calendar-day {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  min-height: 60px;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s;
  cursor: pointer;
  background: var(--bg);
}

.calendar-day:hover {
  background: var(--accent);
}

.calendar-day__num {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: var(--text-primary);
  align-self: flex-end;
}

.calendar-day__status {
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}

.calendar-day__status.available {
  background: #E6FDF4;
  color: #059669;
}

.calendar-day__status.occupied {
  background: #FEF3C7;
  color: #D97706;
}

.calendar-day__status.blocked {
  background: #FEE2E2;
  color: #DC2626;
}

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: var(--fs-xs);
  justify-content: center;
}

.calendar-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calendar-legend-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

/* --- Rooms Panel Layout --- */
.admin-rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.admin-room-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: var(--bg);
}

.admin-room-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.admin-room-card__body {
  padding: 1.25rem;
}

.admin-room-card__title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: var(--fs-h4);
  margin-bottom: 0.5rem;
}

.admin-room-card__price {
  font-family: var(--font-button);
  font-weight: 700;
  color: var(--secondary);
  font-size: var(--fs-body-lg);
  margin-bottom: 0.75rem;
}

.admin-room-card__meta {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-room-card__actions {
  display: flex;
  gap: 0.5rem;
}

/* --- Modal Actions --- */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1200;
}

.toast {
  background: var(--primary);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-luxury);
  border-left: 4px solid var(--secondary);
  font-family: var(--font-button);
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease forwards;
}

/* --- Guest Lookup --- */
.guest-lookup {
  max-width: 450px;
  margin: 4rem auto;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-medium);
  background: var(--bg);
}

.guest-lookup h3 {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* --- Print Invoice Styles --- */
@media print {
  body * {
    visibility: hidden;
  }
  
  #receipt-print-container,
  #receipt-print-container * {
    visibility: visible;
  }
  
  #receipt-print-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    color: #000000;
    padding: 2rem;
  }
}

/* Print View Styling */
.print-receipt {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.5;
  border: 1px solid #CCC;
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 700px;
  margin: 0 auto;
}

.print-receipt__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.print-receipt__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.print-receipt__logo span {
  color: var(--secondary);
}

.print-receipt__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.print-receipt__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.print-receipt__table th {
  background: #F8F5F0;
  border-bottom: 2px solid #DDD;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.print-receipt__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #EEE;
}

.print-receipt__footer {
  border-top: 1px solid #DDD;
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

/* Keyframes */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



/* --- Floating Labels Style --- */
.form-group-floating {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-floating input,
.form-group-floating select,
.form-group-floating textarea {
  width: 100%;
  padding: 1.5rem 1rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-floating textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group-floating label {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  color: var(--text-light);
  font-family: var(--font-button);
  font-size: var(--fs-small);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left top;
}

.form-group-floating input:focus,
.form-group-floating select:focus,
.form-group-floating textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(182, 141, 64, 0.15);
}

/* Floating behavior triggers */
.form-group-floating input:focus ~ label,
.form-group-floating input:not(:placeholder-shown) ~ label,
.form-group-floating select:focus ~ label,
.form-group-floating select:valid ~ label,
.form-group-floating textarea:focus ~ label,
.form-group-floating textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-0.85rem) scale(0.75);
  color: var(--secondary);
  font-weight: 700;
}

/* --- Wizard Rooms Grid Selection (Step 1) --- */
.wizard-rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.wizard-room-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.wizard-room-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.wizard-room-card.selected {
  border-color: var(--secondary);
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(182, 141, 64, 0.3);
}

.wizard-room-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.5s;
}

.wizard-room-card:hover .wizard-room-card__img {
  transform: scale(1.05);
}

.wizard-room-card__info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.wizard-room-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
}

.wizard-room-card__price {
  font-family: var(--font-button);
  font-size: var(--fs-small);
  color: var(--secondary);
  font-weight: 700;
  margin-top: 0.25rem;
}

.wizard-room-card__meta {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

/* --- Loader & Validation Shake Animations --- */
.btn-loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid var(--text-white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinLoader 0.7s linear infinite;
  z-index: 5;
}

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

.shake-error {
  animation: shakeInputs 0.4s ease-in-out;
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

@keyframes shakeInputs {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* --- Admin Inbox Messages Tab Styling --- */
.msg-inbox-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.msg-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  background: var(--bg);
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.3s;
}

.msg-card:hover {
  box-shadow: var(--shadow-medium);
}

.msg-card__header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-small);
}

.msg-card__sender {
  font-weight: 700;
  color: var(--text-primary);
}

.msg-card__time {
  color: var(--text-light);
}

.msg-card__body {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.4;
  white-space: pre-wrap;
}

/* ========================================
   Booking System Responsive Overrides (Min-Width)
   ======================================== */

/* --- Tablet Viewports (min-width: 768px) --- */
@media (min-width: 768px) {
  .booking-wizard__steps {
    padding: 2.25rem 3rem 1.25rem;
  }
  
  .booking-wizard__step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .booking-wizard__step:not(:last-child)::after {
    top: 20px;
    left: 60%;
    width: 80%;
  }
  
  .booking-wizard__step-label {
    display: block;
  }
  
  .booking-wizard__content {
    padding: 2.5rem 3rem;
  }
  
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .form-grid--full {
    grid-column: span 2;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calendar-day {
    min-height: 80px;
    padding: 0.5rem;
  }
  
  .calendar-day__num {
    font-size: var(--fs-small);
  }
  
  .calendar-day__status {
    font-size: 10px;
    padding: 0.2rem;
  }
  
  .wizard-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .wizard-room-card__img {
    height: 160px;
  }
}

/* --- Laptop & Desktop Viewports (min-width: 1025px) --- */
@media (min-width: 1025px) {
  .dashboard-grid {
    grid-template-columns: 240px 1fr;
    min-height: 80vh;
  }
  
  .dashboard-sidebar {
    padding: 2rem 1.5rem;
    gap: 2rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--radius-md);
    border-top-left-radius: var(--radius-md);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .admin-rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .wizard-rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
