/* Hotel Eleven - Quick Booking Widget - Booking.com Style */

.heb-quick-widget {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 30px auto;
    border: 1px solid #e0e0e0;
    max-width: 1200px;
}

.heb-quick-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #2c3e50;
    text-align: center;
}

.heb-quick-fields {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.heb-quick-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.heb-quick-field label {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.heb-quick-field input[type="date"] {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: white;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.heb-quick-field input[type="date"]:focus {
    outline: none;
    border-color: #f7b731;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.1);
    transform: translateY(-1px);
}

/* Guests Selector */
.heb-guests-display {
    padding: 14px 16px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.heb-guests-display svg {
    transition: transform 0.3s ease;
    color: #666;
}

.heb-guests-display:hover {
    border-color: #f7b731;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.1);
    transform: translateY(-1px);
}

.heb-guests-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 20px;
    display: none;
    z-index: 999999;
    border: 2px solid #f7b731;
}

.heb-guests-dropdown.active {
    display: block;
}

.heb-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.heb-guest-row:last-child {
    border-bottom: none;
}

.heb-guest-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.heb-guest-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.heb-btn-minus,
.heb-btn-plus {
    width: 36px;
    height: 36px;
    border: 2px solid #f7b731;
    background: white;
    color: #f7b731;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.heb-btn-minus:hover,
.heb-btn-plus:hover {
    background: #f7b731;
    color: #1a1a1a;
    transform: scale(1.1);
}

.heb-guest-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    min-width: 30px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Search Button */
.heb-submit-field {
    flex: 0 0 auto;
    min-width: auto;
}

.heb-search-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #f7b731 0%, #f5a623 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(247, 183, 49, 0.3);
}

.heb-search-btn:hover {
    background: linear-gradient(135deg, #f5a623 0%, #f39c12 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 183, 49, 0.5);
}

.heb-search-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .heb-quick-fields {
        flex-direction: column;
    }
    
    .heb-quick-field {
        width: 100%;
    }
    
    .heb-search-btn {
        width: 100%;
    }
}
