/* ===== BOAT FILTER BAR ===== */
.boat-filter-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: end;
    padding: 22px 24px;
    background: #F4F6FA;
    border: 1px solid rgba(19, 23, 43, 0.06);
    border-radius: 16px;
}

.bf-field {
    display: flex;
    flex-direction: column;
    min-width: 0 !important;
}

/* labele */
.bf-field label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a8499;
    margin-bottom: 8px;
}

/* select2 polje */
.bf-field .select2-container {
    width: 100% !important;
    min-width: 0 !important;
}
.bf-field .select2-selection--single,
.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1px solid #dde3ec !important;
    border-radius: 9px !important;
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    position: relative !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.bf-field .select2-selection--single:hover {
    border-color: #3256C6 !important;
}

/* kad je dropdown OTVOREN – polje plavo, donji rub ravan, bez donjeg bordera */
.select2-container--open .select2-selection--single {
    border-color: #3256C6 !important;
    border-bottom: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* tekst u polju */
.bf-field .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
    padding: 0 40px 0 14px !important;
    color: #13172B !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* strelica */
.bf-field .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #7a8499 transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 6px 5px 0 5px !important;
    display: block !important;
}

/* clear (x) */
.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 10 !important;
    pointer-events: all !important;
    width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #9aa3b2 !important;
}

/* dropdown panel */
.select2-dropdown {
    border: 1px solid #3256C6 !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(19, 23, 43, 0.1) !important;
    overflow: visible !important;
    z-index: 99999 !important;
}

.select2-dropdown.select2-dropdown--below {
    border: none !important;
}

/* dropdown iznad polja */
.select2-dropdown.select2-dropdown--above {
    border-bottom: none !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    margin-bottom: 0 !important;
}


.select2-container--default .select2-results__option {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: #13172B !important;
    padding: 10px 14px !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3256C6 !important;
    color: #fff !important;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #F4F6FA !important;
    color: #13172B !important;
}

/* gumb – defaultna plava */
.bf-submit {
    display: flex;
    align-items: flex-end;
}
.bf-submit button {
    width: 100%;
    height: 46px;
    background-color: #3256C6;
    color: #fff;
    border: none;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 9px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
}
.bf-submit button:hover {
    color: #fff;
    background-color: #2645a0;
}

/* visine reda */
.bf-submit, .bf-field {
    height: 74px;
}

/* ===== COLLAPSIBLE TOGGLE (skriven na desktopu) ===== */
.bf-toggle { display: none; }

/* Tablet */
@media (max-width: 1024px) {
    .boat-filter-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .bf-submit {
        grid-column: 3 / 4;
        grid-row: 2;
    }
    .bf-submit button {
        width: 100%;
        height: 46px;
    }
}

/* ===== MOBILE – COLLAPSIBLE ===== */
@media (max-width: 768px) {
    /* toggle gumb vidljiv */
    .bf-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #fff;
        border: 1px solid #dde3ec;
        border-radius: 10px;
        padding: 16px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #13172B;
        letter-spacing: 0.5px;
    }
    .bf-toggle-chevron {
        color: #3256C6;
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    .bf-toggle-label {
        display: flex;
        align-items: center;
    }
    .bf-toggle-icon {
        margin-right: 8px;
    }
    .boat-filter-collapsible.is-open .bf-toggle-chevron {
        transform: rotate(180deg);
    }

    /* filter skriven dok nije otvoren, pa jedan stupac */
    .boat-filter-collapsible .boat-filter-bar {
        display: none !important;
        margin-top: 0px;
        grid-template-columns: 1fr !important;
        padding: 16px;
        gap: 12px;
    }
    .boat-filter-collapsible.is-open .boat-filter-bar {
        display: grid !important;
    }

    /* sva polja + gumb jedan ispod drugog */
    .boat-filter-collapsible .bf-field,
    .boat-filter-collapsible .bf-submit {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        height: auto !important;
    }
}

@media (max-width: 768px) {
  /* native select izgled (kad je select2 ugašen) */
  .boat-filter-collapsible .bf-field select {
    width: 100%;
    height: 52px;
    border: 1px solid #dde3ec;
    border-radius: 10px;
    padding: 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #13172B;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
  }
}