/* ================= HEADER FIXE ================= */
.cavi-header,
.cavi-header .navbar,
.cavi-header .container-fluid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

/* Logo */
.text-orange {
    color: #f97316 !important;
}

/* Search */
.cavi-search {
    max-width: 420px;
    min-width: 240px;
    flex-shrink: 0;
}

/* Actions */
.cavi-dropdown {
    flex-shrink: 0;
}

/* Boutons */
.btn-orange {
    background-color: #f97316;
    border-color: #f97316;
}
.btn-orange:hover {
    background-color: #ea580c;
    border-color: #ea580c;
}

/* ================= DROPDOWN VERTICAL ================= */
.dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .cavi-search {
        max-width: 220px;
        min-width: 180px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.35rem 0.6rem;
    }
}

