/* GoLive Karaoke — Booking System Styles */
/* Extends the main site's index.css theme */

/* ============================================================
   Booking Page Layout
   ============================================================ */

.booking-section {
    padding: 80px 0;
    scroll-margin-top: 96px;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.booking-header {
    text-align: center;
    margin-bottom: 48px;
}

.booking-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* ============================================================
   Progress Steps
   ============================================================ */

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.progress-step {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
}

.progress-step.active {
    background: var(--pink-mid);
}

.progress-step.complete {
    background: var(--pink);
}

/* ============================================================
   Booking Form Steps
   ============================================================ */

.booking-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.booking-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    margin-bottom: 8px;
    color: var(--white);
}

.step-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

/* ============================================================
   Duration Selector
   ============================================================ */

.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.duration-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option:hover {
    border-color: var(--pink-mid);
    background: rgba(232, 0, 111, 0.1);
}

.duration-option.selected {
    border-color: var(--pink-mid);
    background: rgba(232, 0, 111, 0.15);
}

.duration-option .hours {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink-mid);
    display: block;
}

.duration-option .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================================
   Date Picker
   ============================================================ */

.calendar-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}

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

.calendar-nav button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.calendar-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-month {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

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

.calendar-day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.calendar-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-day.available {
    color: var(--white);
    cursor: pointer;
}

.calendar-day.available:hover {
    background: rgba(232, 0, 111, 0.15);
}

.calendar-day.selected {
    background: var(--pink);
    color: white;
    font-weight: 700;
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.selected-date-display {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    background: rgba(232, 0, 111, 0.1);
    border-radius: 12px;
    font-weight: 600;
    display: none;
}

.selected-date-display.visible {
    display: block;
}

/* ============================================================
   Time Picker
   ============================================================ */

.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.time-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.time-option:hover {
    border-color: var(--pink-mid);
}

.time-option.selected {
    border-color: var(--pink-mid);
    background: rgba(232, 0, 111, 0.15);
}

/* ============================================================
   Quote Display
   ============================================================ */

.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    margin-top: 24px;
}

.quote-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--pink-mid);
}

.quote-line-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.quote-line-item:last-child {
    border-bottom: none;
}

.quote-line-item .description {
    color: rgba(255, 255, 255, 0.7);
}

.quote-line-item .amount {
    font-weight: 600;
    color: var(--white);
}

.quote-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    margin-top: 8px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    font-weight: 800;
}

.quote-caveat {
    margin-top: 16px;
    padding: 14px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ============================================================
   Event Type Selector
   ============================================================ */

.event-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.event-type-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-type-option:hover {
    border-color: var(--pink-mid);
}

.event-type-option.selected {
    border-color: var(--pink-mid);
    background: rgba(232, 0, 111, 0.15);
}

.event-type-option .icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 8px;
}

.event-type-option .label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================================
   Form Fields (Booking-specific)
   ============================================================ */

.booking-form .form-group {
    margin-bottom: 24px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--pink-mid);
}

.booking-form select option {
    background: #1A0018;
    color: white;
}

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

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Navigation Buttons
   ============================================================ */

.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.step-actions .btn {
    flex: 1;
}

.btn-back {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--pink), var(--pink-mid));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 0, 111, 0.3);
}

.btn-next:disabled,
.btn-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================================
   Outside Service Area Message
   ============================================================ */

.service-area-warning {
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.service-area-warning .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-area-warning h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FF7043;
}

.service-area-warning p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.service-area-warning a {
    color: var(--pink-mid);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================================
   Travel Info Card (standard / outside / pending states)
   ============================================================ */

.travel-info-card {
    border-radius: 16px;
    padding: 20px 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.55;
}

.travel-info-card .ti-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.travel-info-card .ti-icon {
    font-size: 1.5rem;
    line-height: 1.2;
    flex: none;
    margin-top: 2px;
}

.travel-info-card .ti-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.travel-info-card .ti-title {
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 6px;
    line-height: 1.35;
}

.travel-info-card .ti-sub {
    font-size: 0.9rem;
    line-height: 1.6;
}

.travel-info-card .ti-sub strong {
    font-weight: 700;
}

.travel-info-card .ti-travel-minutes {
    color: inherit;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.travel-info-card .ti-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Standard (inside service area) — green */
.travel-info-card.ti-inside {
    background: rgba(46, 125, 50, 0.10);
    border-color: rgba(76, 175, 80, 0.35);
}
.travel-info-card.ti-inside .ti-title {
    color: #a5d6a7;
}
.travel-info-card.ti-inside .ti-title .ti-travel-minutes {
    color: #c8e6c9;
}
.travel-info-card.ti-inside .ti-sub {
    color: rgba(255, 255, 255, 0.78);
}
.travel-info-card.ti-inside .ti-sub strong {
    color: #ffffff;
}
.travel-info-card.ti-inside .ti-badge {
    background: rgba(76, 175, 80, 0.18);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.35);
}

/* Outside service area — custom quote (red / maroon) */
.travel-info-card.ti-outside {
    background: rgba(127, 29, 29, 0.22);
    border-color: rgba(248, 113, 113, 0.45);
}
.travel-info-card.ti-outside .ti-title {
    color: #fecaca;
}
.travel-info-card.ti-outside .ti-title .ti-travel-minutes {
    color: #fca5a5;
}
.travel-info-card.ti-outside .ti-sub {
    color: rgba(255, 255, 255, 0.82);
}
.travel-info-card.ti-outside .ti-sub strong {
    color: #ffffff;
}
.travel-info-card.ti-outside .ti-badge {
    background: rgba(239, 68, 68, 0.20);
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.45);
}

/* Pending / calculating — amber */
.travel-info-card.ti-pending {
    background: rgba(146, 64, 14, 0.18);
    border-color: rgba(251, 146, 60, 0.40);
}
.travel-info-card.ti-pending .ti-title {
    color: #fed7aa;
}
.travel-info-card.ti-pending .ti-title .ti-travel-minutes {
    color: #fdba74;
}
.travel-info-card.ti-pending .ti-sub {
    color: rgba(255, 255, 255, 0.78);
}
.travel-info-card.ti-pending .ti-sub strong {
    color: #ffffff;
}
.travel-info-card.ti-pending .ti-badge {
    background: rgba(251, 146, 60, 0.20);
    color: #fed7aa;
    border: 1px solid rgba(251, 146, 60, 0.40);
}

/* ============================================================
   Success Screen
   ============================================================ */

.success-screen {
    text-align: center;
    padding: 48px 24px;
}

.success-screen .check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}

.success-screen h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.success-screen p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   Admin Panel Styles
   ============================================================ */

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        position: sticky;
        top: 0;
        z-index: 100;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px 12px;
        gap: 0;
    }
    .admin-sidebar .sidebar-brand {
        display: none;
    }
    .admin-sidebar a {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px;
        flex: none;
        white-space: nowrap;
        text-align: center;
    }
    .admin-sidebar a.active {
        border-left: none;
        border-bottom-color: var(--pink-mid);
    }
    .admin-sidebar .sidebar-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
        padding-left: 8px;
        margin-left: auto;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .admin-sidebar .sidebar-bottom a {
        padding: 8px 14px;
    }
}

.admin-sidebar {
    background: rgba(15, 0, 14, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar .sidebar-brand {
    padding: 0 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.admin-sidebar .sidebar-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.admin-sidebar .sidebar-brand a span {
    color: var(--pink-mid);
}

.admin-sidebar .sidebar-brand small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-top: 4px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.admin-sidebar a.active {
    color: var(--white);
    border-left-color: var(--pink-mid);
    background: rgba(232, 0, 111, 0.08);
}

.admin-sidebar .sidebar-bottom {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-main {
    padding: 32px;
    overflow-y: auto;
}

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

.admin-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
}

/* ============================================================
   Admin Cards & Stats
   ============================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.stat-card .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink-mid);
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================================
   Admin Tables
   ============================================================ */

/* Scrollable wrapper for wide tables on small screens */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.admin-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-table a {
    color: #FF85B3;
    text-decoration: none;
    font-weight: 500;
}

.admin-table a:hover {
    color: #FFB3D1;
    text-decoration: underline;
}

.detail-field a {
    color: #FF85B3;
    text-decoration: none;
    font-weight: 500;
}

.detail-field a:hover {
    color: #FFB3D1;
    text-decoration: underline;
}

/* ============================================================
   Status Badges
   ============================================================ */

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.badge-confirmed {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.badge-cancelled {
    background: rgba(244, 67, 54, 0.15);
    color: #F44336;
}

.badge-overdue {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================================
   Admin Forms
   ============================================================ */

.admin-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.admin-form .form-group {
    margin-bottom: 20px;
}

.admin-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--pink-mid);
}

.admin-form select option {
    background: #1A0018;
    color: white;
}

/* ============================================================
   Login Page
   ============================================================ */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
}

.login-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
}

.login-box .subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.login-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    color: #F44336;
    font-size: 0.9rem;
}

/* ============================================================
   Flash Messages
   ============================================================ */

.flash {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-success {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.25);
    color: #4CAF50;
}

.flash-error {
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.25);
    color: #F44336;
}

/* ============================================================
   Detail View
   ============================================================ */

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 700px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-field {
    margin-bottom: 16px;
}

.detail-field .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.detail-field .value {
    font-size: 1rem;
    color: var(--white);
}

/* ============================================================
   Availability Editor
   ============================================================ */

.availability-day {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.availability-day .day-name {
    width: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

.availability-day input[type="time"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.availability-day input[type="time"]:focus {
    outline: none;
    border-color: var(--pink-mid);
}

/* ============================================================
   Line Items Editor
   ============================================================ */

.line-items-list {
    margin-bottom: 16px;
}

.line-item-row {
    display: grid;
    grid-template-columns: 1fr 120px 40px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.line-item-row input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 0.85rem;
}

.line-item-row input:focus {
    outline: none;
    border-color: var(--pink-mid);
}

.line-item-row .remove-btn {
    background: rgba(244, 67, 54, 0.15);
    border: none;
    color: #F44336;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-line-item-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
}

.add-line-item-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ============================================================
   Small-Screen Responsive Tweaks
   ============================================================ */

@media (max-width: 480px) {
    /* Reduce side padding for booking and admin content */
    .booking-container { padding: 0 16px; }
    .admin-main { padding: 20px 16px; }
    .booking-section { padding: 48px 0; }

    /* Calendar: smaller cells and tighter gaps */
    .calendar-grid { gap: 2px; }
    .calendar-day { padding: 8px 2px; font-size: 0.85rem; }
    .calendar-day-header { font-size: 0.7rem; padding: 6px 0; }
    .calendar-wrapper { padding: 16px; }

    /* Quote box tighter padding */
    .quote-box { padding: 20px; }

    /* Duration options: single column on very small screens */
    .duration-options { grid-template-columns: 1fr 1fr; }

    /* Step actions: full-width stacked buttons */
    .step-actions { flex-direction: column; }
    .step-actions .btn { width: 100%; }

    /* Stats grid: single column */
    .stats-grid { grid-template-columns: 1fr; }

    /* Admin cards tighter padding */
    .admin-card { padding: 18px; }

    /* Availability editor: stack vertically */
    .availability-day { flex-wrap: wrap; gap: 8px; }
    .availability-day .day-name { width: 100%; }
}

@media (max-width: 380px) {
    /* Duration options: single column on very narrow screens */
    .duration-options { grid-template-columns: 1fr; }

    /* Time options: single column */
    .time-options { grid-template-columns: 1fr; }
}

/* ============================================================
   Line Item Row — Responsive
   ============================================================ */

@media (max-width: 600px) {
    .line-item-row {
        grid-template-columns: 1fr 100px 36px;
        gap: 6px;
    }
    .line-item-row input { font-size: 0.8rem; padding: 6px 10px; }
    .line-item-row .remove-btn { width: 28px; height: 28px; font-size: 1rem; }
}
