/* BOOKING BAR */
#izuba-booking-bar {
    background: #2b3637;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.izuba-bar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

#izuba-booking-bar input,
#izuba-booking-bar select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    box-sizing: border-box;
    min-width: 0;
}

#izuba-booking-bar input::placeholder {
    color: rgba(255,255,255,0.6);
}

#izuba-booking-bar select {
    color: rgba(255,255,255,0.6);
}

#izuba-booking-bar select option {
    color: #000;
}

#izuba-open-popup {
    background: #c9a84c;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

#izuba-open-popup:hover {
    background: #b8973b;
}

/* POPUP OVERLAY */
#izuba-popup-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

#izuba-popup-overlay.active {
    display: flex !important;
}

/* MOBILE */
@media (max-width: 768px) {
    #izuba-booking-bar {
        padding: 12px 15px;
    }

    .izuba-bar-inner {
        flex-direction: column;
        gap: 8px;
    }

    #izuba-booking-bar input,
    #izuba-booking-bar select,
    #izuba-open-popup {
        width: 100%;
        flex: none;
        min-width: 100%;
    }
}