.pbbb-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(12, 12, 12, 0.96);
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
}

.pbbb-bar.pbbb-visible {
    transform: translateY(0);
    border-top: 1px solid #bc9e6d;
    opacity: 1;
    pointer-events: auto;
}

.pbbb-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pbbb-left {
    display: flex;
    align-items: center;
}

.pbbb-logo {
    max-height: 70px;
    width: auto;
}

.pbbb-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.pbbb-field {
    position: relative;
    min-width: 170px;
}

.pbbb-field input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.pbbb-field input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.pbbb-button {
    background: #bc9e6d;
    border-radius: 999px;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap; 
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background-color: #bc9e6d !important;
    color: white !important;
    border: none;
}
.flatpickr-day.selected:hover {
    background-color: #bc9e6d !important;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 #bc9e6d !important;
    box-shadow: -10px 0 0 #bc9e6d !important;
}

.pbbb-button:hover {
    background: #000000;
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .pbbb-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .pbbb-inner {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
    }

    .pbbb-left {
        display: none;
    }

    .pbbb-right {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .pbbb-field {
        min-width: auto;
        flex: 1;
        max-width: none;
    }

    .pbbb-field input {
        padding: 6px 10px;
        font-size: 12px;
        width: 100%;
    }

    .pbbb-button {
        padding: 6px 12px;
        font-size: 12px;
        width: auto;
        flex-shrink: 0;
        box-sizing: border-box;
    }
}


