/* Sidebar Booking Widget Styles */
.sidebar-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-booking-form .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-booking-form label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sidebar-booking-form input[type="date"],
.sidebar-booking-form .guest-selector {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-heading);
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-booking-form input[type="date"]:focus,
.sidebar-booking-form .guest-selector:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.1);
    outline: none;
}

.sidebar-booking-form .guest-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-booking-form .btn-search {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-gold);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-booking-form .btn-search:hover {
    background: var(--luxury-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Guest Dropdown */
.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    border-radius: 4px;
    z-index: 100;
    padding: 1rem;
    display: none;
    margin-top: 0.5rem;
}

.guest-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.guest-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.guest-counter-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.counter-label {
    display: flex;
    flex-direction: column;
}

.counter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
}

.counter-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
    background: #fff9f0;
}

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

.counter-value {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.guest-dropdown-footer {
    margin-top: 1rem;
    text-align: right;
}

.btn-done {
    background: transparent;
    border: none;
    color: var(--luxury-gold);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}