.booking-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}
.booking-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}
.booking-brand span { color: var(--secondary-color); }
.host-name {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}
.event-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.event-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.event-meta i { margin-right: 0.3rem; }
.color-bar {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* Steps */
.step-view { display: none; }
.step-view.active { display: block; }

/* Calendar */
.booking-main {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
}
.calendar-card, .slots-card, .form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.calendar-nav-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.2s;
}
.calendar-nav-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.calendar-month {
    font-weight: 700;
    font-size: 1.1rem;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}
.calendar-day-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.5rem 0;
}
.calendar-day {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: default;
    color: var(--text-light);
    transition: all 0.2s;
}
.calendar-day.available {
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
}
.calendar-day.available:hover {
    background: rgba(37,99,235,0.1);
    color: var(--primary-color);
}
.calendar-day.selected {
    background: var(--event-color);
    color: white !important;
    font-weight: 600;
}
.calendar-day.today {
    border: 2px solid var(--event-color);
}

/* Time slots */
.slots-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.slots-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.slot-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}
.slot-btn {
    padding: 0.6rem;
    border: 1.5px solid var(--event-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--event-color);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.slot-btn:hover {
    background: var(--event-color);
    color: white;
}
.slot-btn.selected {
    background: var(--event-color);
    color: white;
}
.no-slots {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 2rem 0;
}
.slots-loading {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-gray);
}

/* Form */
.form-card { max-width: 500px; margin: 1.5rem auto 0; }
.form-card .section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    display: block;
}
.form-label-custom .required { color: #ef4444; margin-left: 2px; }
.form-control-custom {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.2s;
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: var(--bg-white);
}
.selected-info {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}
.selected-info strong { color: var(--event-color); }
.btn-add-guest {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    padding: 0.55rem 1rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    justify-content: center;
}
.btn-add-guest:hover {
    border-color: var(--primary-color);
    background: rgba(37,99,235,0.05);
}
.additional-guest-group {
    display: none;
    position: relative;
}
.additional-guest-group.show { display: block; }
.btn-remove-guest {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.btn-remove-guest:hover { color: #ef4444; }

/* Buttons */
.btn-primary-custom {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    color: white;
    transition: all 0.2s;
}
.btn-primary-custom:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(37,99,235,0.3); }
.btn-primary-custom:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    margin-bottom: 1rem;
    padding: 0;
}
.btn-back:hover { color: var(--text-dark); }

/* Complete */
.complete-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.complete-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.complete-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.complete-detail {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: left;
}
.complete-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}
.complete-detail-row .label { color: var(--text-gray); }
.complete-detail-row .value { font-weight: 600; }

@media (max-width: 768px) {
    .booking-main {
        grid-template-columns: 1fr;
    }
}
