.slot-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.slot-chip {
    border: 1px solid var(--border);
    background: var(--input-bg);
    color: var(--text-main);
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}
.slot-chip:hover:not(.disabled) {
    border-color: var(--primary-brand);
    background: rgba(var(--brand-rgb), 0.1);
}
.slot-chip.active {
    background: var(--primary-brand);
    color: white;
    border-color: var(--primary-brand);
    box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.4);
}
.slot-chip.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-deep);
    border-style: dashed;
}
.slot-chip input {
    display: none;
}
.slot-checkbox {
    display: none;
}
.slot-label {
    display: block;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.slot-checkbox:checked + .slot-label {
    background: var(--primary-brand);
    color: white;
    border-color: var(--primary-brand);
}
.booking-container {
    max-width: 800px;
    margin: 0 auto;
}
.step-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}
.step-active .step-number {
    background: var(--primary-brand);
    color: white;
}