/* ================================================================
   LF BnB — Bağımsız Arama Çubuğu  [lf_bnb_search_bar]
   ================================================================ */

.lf-sbar {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #E4DDD4;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', Georgia, sans-serif;
    color: #1c1916;
    box-shadow: 0 1px 3px rgba(28, 25, 22, .06);
    overflow: visible;
}

.lf-sbar-field {
    flex: 1;
    min-width: 0;
    padding: 12px 20px;
    border-right: 1px solid #E4DDD4;
    position: relative;
    cursor: pointer;
    transition: background .15s;
}

.lf-sbar-field:hover {
    background: #FAF7F2;
}

.lf-sbar-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B5A42;
    margin-bottom: 4px;
    cursor: inherit;
}

.lf-sbar-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1c1916;
    outline: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

.lf-sbar-input::placeholder {
    color: #AEA79F;
}

.lf-sbar-input[type="date"] {
    color: #AEA79F;
}
.lf-sbar-input[type="date"]:valid,
.lf-sbar-input[type="date"]:focus {
    color: #1c1916;
}

/* ── Misafirler alanı ── */
.lf-sbar-guests-val {
    font-size: 14px;
    color: #AEA79F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lf-sbar-guests-dd {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    margin: 0 20px;
    background: #ffffff;
    border: 1px solid #E4DDD4;
    border-radius: 4px;
    padding: 8px 18px;
    min-width: 280px;
    z-index: 200;
    box-shadow: 0 10px 32px rgba(28, 25, 22, .14);
    cursor: default;
}

.lf-sbar-guests-dd.open {
    display: block;
}

.lf-sbar-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #F0EAE2;
}

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

.lf-sbar-guest-label {
    font-size: 14px;
    font-weight: 600;
    color: #1c1916;
}

.lf-sbar-guest-sublabel {
    font-size: 12px;
    color: #8B7355;
    margin-top: 2px;
}

.lf-sbar-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lf-sbar-counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #C8C0B8;
    background: #ffffff;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1c1916;
    font-family: inherit;
    transition: border-color .15s, background .15s;
}

.lf-sbar-counter-btn:hover:not(:disabled) {
    border-color: #6B5A42;
    background: #FAF7F2;
}

.lf-sbar-counter-btn:disabled {
    color: #C8C0B8;
    border-color: #E4DDD4;
    cursor: default;
}

.lf-sbar-counter-val {
    font-size: 14px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
    color: #1c1916;
}

/* ── Ara butonu ── */
.lf-sbar-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #6B5A42;
    color: #ffffff;
    border: none;
    border-radius: 0 3px 3px 0;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s;
    font-family: inherit;
    white-space: nowrap;
}

.lf-sbar-btn:hover {
    background: #57482F;
}

.lf-sbar-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ── Mobil ── */
@media (max-width: 860px) {
    .lf-sbar {
        flex-wrap: wrap;
        border-radius: 8px;
    }
    .lf-sbar-field {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid #E4DDD4;
    }
    .lf-sbar-btn {
        flex: 1 1 100%;
        justify-content: center;
        border-radius: 0 0 8px 8px;
        padding: 16px;
    }
    .lf-sbar-guests-dd {
        margin: 0 12px;
    }
}

@media (max-width: 480px) {
    .lf-sbar-field {
        flex: 1 1 100%;
        padding: 12px 16px;
    }
}
