/* Booking Widget Additional Styles */
.booking-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.booking-select:focus {
    border-color: #c8a96e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.2);
}

.booking-select optgroup {
    font-weight: 700;
    color: #333;
}

#booking-earliest {
    animation: fadeIn 0.3s ease;
}

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

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

/* Quick service buttons */
.quick-service-btn {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
    white-space: nowrap;
}

/* === Mobile booking optimizations === */
@media (max-width: 480px) {
    .booking-select {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom */
        background-position: right 12px center;
    }

    .quick-service-btn {
        font-size: 0.8rem !important;
        padding: 10px 10px !important;
        min-height: 40px;
        white-space: normal;
        text-align: center;
    }

    #booking-earliest {
        font-size: 0.85rem;
        padding: 10px;
    }

    /* Step buttons at bottom */
    .booking-step-content .btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 360px) {
    .booking-select {
        padding: 10px 12px;
        font-size: 15px;
    }

    .quick-service-btn {
        font-size: 0.75rem !important;
        padding: 8px 8px !important;
    }
}
