:root {
    --brand-color: #CC4017;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

.search-section {
    /* background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%); */
    min-height: 80vh;
}

.search-card {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.nav-tabs-custom {
    gap: 10px;
}

.nav-tabs-custom .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.nav-tabs-custom .nav-link.active {
    background-color: var(--brand-color);
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.form-label-small {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.custom-input {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    background-color: #fcfcfc;
}

.custom-input:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
}

.btn-search {
    background-color: var(--brand-color);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 30px;
    transition: 0.3s;
}

.btn-search:hover {
    background-color: #7e1335;
    color: white;
}

.irs--round {
    height: 60px;
}

.irs--round .irs-line {
    top: 33px;
    height: 8px;
    background-color: #eee;
    border-radius: 10px;
}

.irs--round .irs-bar {
    top: 33px;
    height: 8px;
    background-color: var(--brand-color);
}

.irs--round .irs-handle {
    top: 24px;
    width: 24px;
    height: 24px;
    border: 3px solid var(--brand-color);
    background-color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: #f8f9fa;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    background-color: var(--brand-color);
    border-radius: 6px;
    font-size: 12px;
    padding: 3px 8px;
    top: 0;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    border-top-color: var(--brand-color);
}

.irs-grid-pol {
    display: none;
}

@media (max-width: 768px) {
    .nav-tabs-custom {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        justify-content: flex-start !important;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs-custom .nav-item {
        flex: 0 0 auto;
    }

    .nav-tabs-custom .nav-link {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .nav-tabs-custom::-webkit-scrollbar {
        display: none;
    }
}

.tab-short {
    display: none;
}

@media (max-width: 576px) {

    .tab-full {
        display: none;
    }

    .tab-short {
        display: inline;
    }

    .nav-tabs-custom .nav-link.active {
        box-shadow: none;
    }

    .nav-tabs-custom {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
    }

    .nav-tabs-custom .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
}
