/* BabyMemory v5.1 - Booking Wizard & Admin (Unified Design System) */

/* ==================== BOOKING WIZARD ==================== */
.booking .bk-header,
.booking .bk-layout,
.booking .bk-wizard,
.booking .bk-sidebar,
.admin-dashboard {
    font-family: 'Raleway', sans-serif;
}

/* Header */
.bk-header {
    text-align: center;
    padding: 80px 0 40px;
}

.bk-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.bk-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bk-divider {
    width: 60px;
    height: 1px;
    background: #E0E0E0;
    margin: 0 auto;
}

/* Layout */
.bk-layout {
    display: flex;
    gap: 60px;
    padding: 40px 0 80px;
}

.bk-wizard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.bk-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Step Label */
.bk-step-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Step container */
.bk-step {
    display: flex;
    flex-direction: column;
}

/* Hidden step (wizard mode) */
.bk-step.bk-step-hidden {
    display: none;
}

/* ==================== STEPPER PROGRESS BAR ==================== */
.bk-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 0 16px;
}

.bk-stepper-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
    flex-shrink: 0;
}

.bk-stepper-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0E0E0;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6B6B6B;
    background: #FFFFFF;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bk-stepper-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #6B6B6B;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.bk-stepper-line {
    flex: 1;
    height: 1px;
    background: #E0E0E0;
    margin: 0 12px;
    min-width: 20px;
    transition: background 0.3s ease;
}

/* Active step */
.bk-stepper-item.active .bk-stepper-number {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #FFFFFF;
}

.bk-stepper-item.active .bk-stepper-label {
    color: #1E1E1E;
    font-weight: 700;
}

/* Completed step */
.bk-stepper-item.completed .bk-stepper-number {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #FFFFFF;
}

.bk-stepper-item.completed .bk-stepper-label {
    color: #1E1E1E;
}

/* Completed line */
.bk-stepper-line.completed {
    background: #1E1E1E;
}

/* ==================== WIZARD NAVIGATION BUTTONS ==================== */
.bk-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.bk-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #6B6B6B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bk-nav-btn:hover {
    border-color: #1E1E1E;
    color: #1E1E1E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bk-next-btn {
    border-color: #1E1E1E;
    color: #1E1E1E;
    margin-left: auto;
}

.bk-next-btn:hover {
    background: #1E1E1E;
    color: #FFFFFF;
}

/* ==================== STEP 1: SESSION CARDS ==================== */
.bk-sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bk-session-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bk-session-card:hover {
    border-color: #1E1E1E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bk-session-card.active {
    border-color: #1E1E1E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bk-card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.bk-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bk-session-card:hover .bk-card-img img {
    transform: scale(1.05);
}

.bk-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.bk-card-name {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1E1E1E;
}

.bk-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.5;
}

.bk-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.bk-card-meta i {
    font-size: 11px;
}

.bk-card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bk-card-check i {
    color: #FFFFFF;
    font-size: 12px;
}

/* ==================== STEP 2: CALENDAR ==================== */
.bk-datetime-row {
    display: flex;
    gap: 32px;
}

.bk-calendar-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-cal-nav {
    background: none;
    border: none;
    cursor: pointer;
    color: #1E1E1E;
    font-size: 16px;
    padding: 4px 8px;
}

.bk-month-year {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1E1E1E;
}

.bk-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.bk-weekdays span {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 2px;
    padding: 8px 0;
}

.bk-weekdays .bk-sun {
    color: #6B6B6B;
}

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

.bk-cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #1E1E1E;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-cal-day:hover:not(.disabled):not(.empty) {
    background: #F5F5F5;
}

.bk-cal-day.active {
    background: #1E1E1E;
    color: #FFFFFF;
}

/* Availability indicators */
.bk-cal-day.avail-high {
    position: relative;
}

.bk-cal-day.avail-high::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #4CAF50;
    border-radius: 50%;
}

.bk-cal-day.avail-low {
    position: relative;
}

.bk-cal-day.avail-low::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #FF9800;
    border-radius: 50%;
}

.bk-cal-day.active::after {
    background: #FFFFFF;
}

.bk-cal-day.disabled {
    color: #E0E0E0;
    cursor: default;
}

.bk-cal-day.empty {
    cursor: default;
}

/* Calendar legend */
.bk-cal-legend {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.bk-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    color: #6B6B6B;
}

.bk-legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bk-legend-high {
    background: #4CAF50;
}

.bk-legend-low {
    background: #FF9800;
}

.bk-legend-none {
    background: #E0E0E0;
}

/* Time Slots */
.bk-time-section {
    width: 280px;
    flex-shrink: 0;
}

.bk-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bk-time-chip {
    padding: 10px 16px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #1E1E1E;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-time-chip:hover {
    border-color: #1E1E1E;
}

.bk-time-chip.active {
    background: #1E1E1E;
    color: #FFFFFF;
    border-color: #1E1E1E;
}

.bk-time-placeholder {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
}

/* ==================== LOCATION (inline in Step 2) ==================== */
.bk-location-inline {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #F5F5F5;
}

/* ==================== LOCATION TOGGLE ==================== */
.bk-location-toggle {
    display: flex;
    margin-bottom: 16px;
}

.bk-loc-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    padding: 12px 32px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    color: #6B6B6B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bk-loc-btn.active {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #FFFFFF;
}

.bk-studio-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
}

.bk-studio-info i {
    color: #6B6B6B;
}

/* ==================== STEP 4: FORM ==================== */
.bk-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bk-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bk-field label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bk-field input,
.bk-field textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #1E1E1E;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.bk-field input:focus,
.bk-field textarea:focus {
    border-bottom-color: #1E1E1E;
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
    color: #C0C0C0;
}

.bk-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Field validation states */
.bk-field.valid input,
.bk-field.valid textarea {
    border-bottom-color: #4CAF50;
}

.bk-field.invalid input,
.bk-field.invalid textarea {
    border-bottom-color: #E53935;
}

.bk-field-feedback {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    min-height: 16px;
    margin-top: 4px;
}

.bk-field.valid .bk-field-feedback {
    color: #4CAF50;
}

.bk-field.invalid .bk-field-feedback {
    color: #E53935;
}

.bk-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border: 1px solid #1E1E1E;
    border-radius: 50px;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1E1E1E;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.bk-submit-btn:hover {
    background: #1E1E1E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.2);
}

.bk-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== CONFIRMATION ==================== */
.bk-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 80px 0;
}

.bk-confirm-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bk-confirm-icon i {
    font-size: 32px;
    color: #1E1E1E;
}

.bk-confirmation h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #1E1E1E;
}

.bk-confirmation p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    letter-spacing: 2px;
}

.bk-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid #E0E0E0;
    width: 100%;
    max-width: 600px;
}

.bk-summary-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 3px;
}

.bk-summary-detail {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    letter-spacing: 1px;
    text-align: center;
}

.bk-summary-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bk-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F5F5F5;
}

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

.bk-summary-key {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-summary-key i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

.bk-summary-val {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E1E1E;
    text-transform: capitalize;
}

.bk-summary-email {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-summary-email i {
    font-size: 12px;
}

.bk-cal-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.bk-cal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #E0E0E0;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6B6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.bk-cal-link:hover {
    border-color: #1E1E1E;
    color: #1E1E1E;
}

.bk-cal-google:hover {
    border-color: #4285F4;
    color: #4285F4;
}

.bk-cal-outlook:hover {
    border-color: #0078D4;
    color: #0078D4;
}

.bk-cal-apple:hover {
    border-color: #333333;
    color: #333333;
}

/* ==================== SIDEBAR ==================== */
.bk-info-card {
    border: 1px solid #E0E0E0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bk-contact-card {
    border: 1px solid #E0E0E0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1E1E1E;
}

.bk-card-divider {
    width: 40px;
    height: 1px;
    background: #E0E0E0;
}

.bk-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.4;
}

.bk-info-list li i {
    color: #6B6B6B;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.bk-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1E1E1E;
}

.bk-contact-item i {
    color: #6B6B6B;
    width: 18px;
    text-align: center;
}

/* ==================== ADMIN DASHBOARD ==================== */
.admin-dashboard {
    font-family: 'Raleway', sans-serif;
    color: #1E1E1E;
}

.admin-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 32px;
    padding: 40px;
}

.admin-login h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 360px;
    max-width: 100%;
}

.admin-login-form .bk-field input {
    padding: 12px 0;
}

.admin-login-form .bk-submit-btn {
    width: 100%;
}

/* Admin Layout */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: #1E1E1E;
    color: #FFFFFF;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-brand {
    padding: 0 24px 24px;
    border-bottom: 1px solid #333;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: #999;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.admin-nav-item:hover,
.admin-nav-item.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.admin-nav-item i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    padding: 40px;
    background: #FAFAFA;
}

.admin-main h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 32px;
    color: #1E1E1E;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.admin-stat-card {
    border: 1px solid #E0E0E0;
    padding: 24px;
    background: #FFFFFF;
}

.admin-stat-card .stat-value {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #1E1E1E;
    display: block;
    margin-bottom: 8px;
}

.admin-stat-card .stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Admin Table */
.admin-table-wrap {
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Raleway', sans-serif;
}

.admin-table th {
    font-size: 11px;
    font-weight: 500;
    color: #6B6B6B;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid #E0E0E0;
}

.admin-table td {
    font-size: 14px;
    color: #1E1E1E;
    padding: 16px;
    border-bottom: 1px solid #F5F5F5;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-status.pending {
    background: #FFF3E0;
    color: #E65100;
}

.admin-status.confirmed {
    background: #E8F5E9;
    color: #1B5E20;
}

.admin-status.rejected {
    background: #FFEBEE;
    color: #B71C1C;
}

.admin-status.expired {
    background: #F5F5F5;
    color: #6B6B6B;
}

.admin-action-btn {
    padding: 6px 16px;
    border: 1px solid #E0E0E0;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1E1E1E;
}

.admin-action-btn:hover {
    background: #1E1E1E;
    color: #FFFFFF;
    border-color: #1E1E1E;
}

.admin-action-btn.approve {
    border-color: #1B5E20;
    color: #1B5E20;
}

.admin-action-btn.approve:hover {
    background: #1B5E20;
    color: #FFFFFF;
}

.admin-action-btn.reject {
    border-color: #B71C1C;
    color: #B71C1C;
}

.admin-action-btn.reject:hover {
    background: #B71C1C;
    color: #FFFFFF;
}

/* Admin Block Form */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
}

.admin-form .bk-field input,
.admin-form .bk-field select,
.admin-form .bk-field textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #1E1E1E;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.admin-form .bk-field select {
    padding: 12px 0;
}

/* Admin Tab Content */
.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
}

/* Logout */
.admin-logout {
    margin-top: auto;
    padding: 12px 24px;
}

.admin-logout button {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    background: transparent;
    color: #999;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-logout button:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .bk-layout {
        gap: 32px;
    }

    .bk-sidebar {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .bk-layout {
        flex-direction: column;
        gap: 40px;
    }

    .bk-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bk-info-card,
    .bk-contact-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .bk-header {
        padding: 60px 0 24px;
    }

    .bk-header h2 {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .bk-header p {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Stepper: hide labels on mobile, show only numbers */
    .bk-stepper-label {
        display: none;
    }

    .bk-stepper {
        margin-bottom: 24px;
        padding: 0;
    }

    .bk-stepper-line {
        min-width: 16px;
        margin: 0 8px;
    }

    .bk-nav-btn {
        padding: 14px 24px;
        font-size: 12px;
        letter-spacing: 2px;
        min-height: 48px;
    }

    .bk-next-btn {
        flex: 1;
    }

    .bk-sessions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bk-session-card {
        flex-direction: column;
    }

    .bk-card-img {
        width: 100%;
        height: 200px;
        min-height: auto;
        flex-shrink: 0;
    }

    .bk-card-body {
        padding: 16px;
    }

    .bk-card-check {
        top: 8px;
        right: 8px;
    }

    .bk-datetime-row {
        flex-direction: column;
        gap: 24px;
    }

    .bk-time-section {
        width: 100%;
    }

    .bk-cal-legend {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .bk-submit-btn {
        width: 100%;
        min-height: 52px;
    }

    .bk-location-inline {
        margin-top: 24px;
        padding-top: 20px;
    }

    .bk-location-toggle {
        flex-direction: column;
    }

    .bk-loc-btn {
        width: 100%;
    }

    .bk-summary {
        padding: 16px;
    }

    .bk-summary-val {
        text-align: right;
    }

    .bk-cal-links {
        flex-direction: column;
    }

    .bk-cal-link {
        width: 100%;
        justify-content: center;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 16px;
    }

    .admin-sidebar-brand {
        width: 100%;
        border-bottom: none;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .admin-sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding: 0;
    }

    .admin-main {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .bk-confirmation h3 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .bk-confirmation {
        padding: 40px 0;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}

/* Calendar Grid */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
}

.cal-header {
    background: #1E1E1E;
    color: #fff;
    text-align: center;
    padding: 10px 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cal-cell {
    background: #fff;
    min-height: 72px;
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: background 0.15s;
}

.cal-cell:hover {
    background: #fdfbf7;
}

.cal-cell.cal-empty {
    background: #fafafa;
    cursor: default;
}

.cal-cell.cal-past {
    opacity: 0.5;
}

.cal-cell.cal-today {
    background: #FFF8E1;
    border: 2px solid #d4af37;
}

.cal-cell.cal-has-bookings {
    background: #f9f9ff;
}

.cal-day {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
}

.cal-dots {
    display: flex;
    gap: 3px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.cal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.cal-dot.confirmed {
    background: #1B5E20;
}

.cal-dot.pending {
    background: #E65100;
}

.cal-count {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #d4af37;
}

@media (max-width: 768px) {
    .cal-cell {
        min-height: 52px;
        padding: 4px;
    }

    .cal-day {
        font-size: 12px;
    }

    .cal-dots {
        margin-top: 3px;
    }

    .cal-dot {
        width: 6px;
        height: 6px;
    }
}

/* Hidden utility */
.hidden {
    display: none !important;
}
/* ==================== ADMIN INLINE STYLE REPLACEMENTS ==================== */

/* Next bookings section */
.admin-next-bookings {
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.admin-next-bookings-title {
    margin: 0 0 12px;
    font-size: 12px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-next-booking-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.admin-next-booking-time {
    color: #6B6B6B;
}

/* Gallery items */
.admin-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.admin-gallery-item.inactive {
    opacity: 0.4;
}

.admin-gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.admin-gallery-body {
    padding: 8px;
    font-size: 12px;
}

.admin-gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.admin-gallery-category {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
}

.admin-gallery-order {
    color: #999;
}

.admin-gallery-caption {
    margin: 4px 0;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-gallery-actions {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.admin-gallery-btn {
    font-size: 11px;
    padding: 4px 8px;
}

/* Stat trend indicator */
.admin-stat-trend {
    font-size: 14px;
}

/* Empty states */
.admin-empty-message {
    color: #6B6B6B;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.admin-empty-cell {
    text-align: center;
    color: #6B6B6B;
    padding: 40px;
}

.admin-empty-day {
    color: #6B6B6B;
    font-size: 14px;
}

/* Client email in requests table */
.admin-client-email {
    color: #6B6B6B;
    font-size: 12px;
}

/* Calendar detail date */
.admin-detail-date {
    margin: 0 0 12px;
    font-size: 13px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Inactive row */
.admin-row-inactive {
    opacity: 0.4;
}

/* Testimonial quote cell */
.admin-testimonial-quote {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
