/* Accommodation Filter Widget Styles */

.booking-section .booking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
.booking-section .inputs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    width: fit-content;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.booking-section .input-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    border: 1px solid #666666;
    max-width: 350px;
    width: 100%;
}
.booking-section input::placeholder {
    color: #003d32;
}

.booking-section .input-card:hover { 
    background: #f9f9f9;
    border-color: #ffaf02;
}

.booking-section .icon svg { 
    width: 21px;
    height: 21px;
    margin-right: 0.5rem;
 }

.booking-section .info { display: flex; flex-direction: column; }

.booking-section .info label {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}

.booking-section .info input, #guest-summary {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #003d32;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.booking-section .calendar-anchor, .guest-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.booking-section .guest-dropdown {
    display: none;
    width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
}

.booking-section .control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.booking-section .stepper { display: flex; align-items: center; gap: 15px; }
.booking-section .stepper button {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid #ddd; background: white; cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.booking-section .stepper button:hover {
    border-color: #ffaf02;
    color: #ffaf02;
}

.booking-section .flatpickr-calendar {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border-radius: 16px !important;
}
.booking-section .flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after { display: none !important; }

.booking-section .search-btn {
    background: #ffffff;
    color: #000!important;
    border: 1px solid #666666!important;
    padding: 18px 35px;
    border-radius: 30px!important;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.25s ease-in-out;
}
.booking-section .search-btn:hover { 
    background: #ffaf02!important;
    border-color: #ffaf02!important;
    color: #fff!important;
}

.booking-section .calendar-anchor {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    height: auto;
}

.booking-section .calendar-anchor.is-visible {
    display: block;
}

.booking-section .flatpickr-calendar {
    background: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.booking-section .flatpickr-calendar.arrowTop:before, 
.booking-section .flatpickr-calendar.arrowTop:after {
    display: none !important;
}
.booking-section .flatpickr-day:focus, .booking-section .flatpickr-day:hover {
    background: rgba(255, 175, 2, .5) !important;
    border-color: #ffaf02 !important;
    color: #ffffff !important;
}
.booking-section .flatpickr-day.today {
    border-color: #ffaf02 !important;
}
.booking-section .flatpickr-day.selected {
    background: #ffaf02 !important;
    border-color: #ffaf02 !important;
    color: #fff !important;
}
.booking-section .flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    border: 0 !important;
}
.booking-section .flatpickr-wrapper .flatpickr-calendar.static {
    position: absolute;
    top: calc(100% + 25px) !important;
    left: 40% !important;
    transform: translateX(-50%);    
}
@media (max-width: 768px) {
    .booking-section .inputs-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .booking-section .booking-container {
        gap: 2rem;
    }
	.booking-section .search-btn {
        margin: 0;
    }
}