
        /* Modern Booking UI Styles inspired by Lovable.js / Tailwind */

.booking-wrapper {
    background-color: transparent;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 1rem 0 2rem 0;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.booking-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-btn {
    display: none;
}

/* Stepper */
.progress-stepper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.progress-step {
    flex: 1;
}

.progress-bar-line {
    height: 6px;
    border-radius: 9999px;
    background-color: #e5e7eb;
    transition: background-color 0.3s ease;
}

.progress-bar-line.active,
.progress-bar-line.completed {
    background-color: var(--site-primary-color);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Inputs & Form Controls */
.modern-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modern-input:focus {
    outline: none;
    border-color: var(--site-primary-color);
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.modern-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #374151;
}

.required-asterisk {
    color: #ef4444;
}

/* People Counter */
.people-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: #374151;
}

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

.counter-input {
    width: 50px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

/* Guest Cards */
.guest-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

.guest-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--site-primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-right: 0.5rem;
}

/* New Customer Form */
.dashed-form-container {
    border: 1px dashed var(--site-primary-color);
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Services */
.service-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.service-tab {
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.service-tab.active {
    background-color: var(--site-primary-color);
    color: #ffffff;
    border-color: var(--site-primary-color);
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
    margin-bottom: 0.5rem;
}

.service-card:hover {
    border-color: var(--site-primary-color);
}

.service-card.selected {
    border-color: var(--site-primary-color);
    background-color: rgba(var(--site-primary-color-rgb), 0.05);
}

/* Bottom Action Bar */
.bottom-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 2rem;
}

.btn-modern {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn-continue {
    background-color: var(--site-primary-color);
    color: white;
}

.btn-cancel {
    background-color: #f3f4f6;
}
