/* ================================================================
   1. VARIÁVEIS GERAIS DO SITE
================================================================ */

:root {
    --cinap-azul: #0061A8;
    --cinap-azul-escuro: #0055A4;
    --cinap-vermelho: #D90429;
    --brand-h-sm: 32px;
    --brand-h-lg: 50px;
    --footer-bg1: #002b54;
    --footer-bg2: #00152b;
    --footer-text: #cbd5e1;
    --footer-muted: #9ca3af;
    --accent: #D90429;
}


/* ================================================================
   2. BASE DO SITE
================================================================ */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    background-color: #f8f9fa;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 .1rem #fff, 0 0 0 .25rem #258cfb;
}
/* ================================================================
   3. HERO PADRÃO
================================================================ */

.hero-banner {
    position: relative;
    z-index: 0;
    min-height: 420px;
    display: grid;
    align-items: center;
    background: #eee center right / cover no-repeat;
}

.hero-overlay {
    max-width: 900px;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 600;
}

.hero-subtitle {
    margin-top: .5rem;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    opacity: .9;
}

.hero-cta {
    margin-top: 1rem;
}


/* ================================================================
   4. HERO CARROSSEL HOME
================================================================ */

.hero-carousel {
    position: relative;
    z-index: 0;
}

    .hero-carousel .carousel-item {
        position: relative;
        min-height: clamp(360px, 55vh, 560px);
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }

    .hero-carousel .backdrop {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0, 0, 0, .25);
        pointer-events: none;
    }

    .hero-carousel .caption {
        position: absolute;
        inset: 0;
        z-index: 60;
        display: grid;
        align-items: center;
    }

        .hero-carousel .caption .box {
            max-width: 900px;
            padding: 2rem 1rem;
        }

    .hero-carousel .title {
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 600;
    }

    .hero-carousel .subtitle {
        font-size: clamp(1rem, 1.3vw, 1.25rem);
        opacity: .9;
    }

    .hero-carousel .carousel-indicators {
        z-index: 80;
    }

        .hero-carousel .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 50px;
        z-index: 70;
        opacity: 1;
    }

    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 45px;
        height: 45px;
        background-size: 60% 60%;
        border-radius: 50%;
        cursor: pointer;
    }

    .hero-carousel .btn-light {
        background-color: #ffffff;
        border: 2px solid #4da3ff;
        color: #000000;
        transition: all 0.3s ease;
    }

        .hero-carousel .btn-light:hover {
            background-color: var(--cinap-vermelho);
            border-color: var(--cinap-vermelho);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .hero-carousel .btn-light:focus,
        .hero-carousel .btn-light:active {
            background-color: var(--cinap-vermelho);
            border-color: var(--cinap-vermelho);
            color: #ffffff;
            box-shadow: 0 0 0 0.25rem rgba(217, 4, 41, 0.25);
        }
/* ================================================================
   PÁGINAS INTERNAS PADRÃO
   Institucional / Trabalhe Conosco / Downloads
================================================================ */

.internal-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.internal-hero {
    min-height: 140px;
    background-image: linear-gradient(180deg, rgba(0, 85, 164, 0.70) 0%, rgba(0, 0, 0, 0.82) 100%), var(--internal-hero-bg);
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.internal-hero-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.internal-hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    opacity: .9;
}

.internal-content {
    border: 1px solid #e9ecef;
}

.internal-section-title {
    color: var(--cinap-azul);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

    .internal-section-title::after {
        content: '';
        width: 56px;
        height: 4px;
        border-radius: 2px;
        background: var(--cinap-vermelho);
        position: absolute;
        left: 0;
        bottom: 0;
    }

.internal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
}


/* ================================================================
   6. PÁGINA INSTITUCIONAL - CARDS
================================================================ */

.institucional-info-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    border: 1px solid #e9ecef;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .institucional-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .14);
    }

    .institucional-info-card i {
        font-size: 1.2rem;
    }

    .institucional-info-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: .75rem;
    }

    .institucional-info-card p {
        margin-bottom: 0;
        color: #495057;
        line-height: 1.7;
    }

.institucional-info-blue {
    border-left: 5px solid var(--cinap-azul);
    background-color: #f1f7fd;
}

    .institucional-info-blue i,
    .institucional-info-blue h4 {
        color: var(--cinap-azul);
    }

.institucional-info-red {
    border-left: 5px solid var(--cinap-vermelho);
    background-color: #fff5f5;
}

    .institucional-info-red i,
    .institucional-info-red h4 {
        color: var(--cinap-vermelho);
    }

.institucional-valor-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: .6rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
    color: #495057;
    border: 1px solid #e9ecef;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .institucional-valor-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    }

    .institucional-valor-card i {
        color: var(--cinap-azul);
    }

.institucional-quality-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cinap-azul-escuro) 0%, #003366 100%);
}

    .institucional-quality-card h4 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .institucional-quality-card p {
        margin-bottom: 0;
        line-height: 1.7;
        font-size: 1rem;
    }
/* ================================================================
   7. DOWNLOADS
================================================================ */

.download-tabs {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

    .download-tabs .nav-link {
        color: var(--cinap-azul);
        background-color: #f8f9fa;
    }

        .download-tabs .nav-link.active {
            background: linear-gradient(180deg, var(--cinap-azul-escuro) 0%, #000000e6 100%);
            color: #fff;
        }
/* ================================================================
   8. NAVBAR
================================================================ */

.site-navbar {
    overflow: visible;
}

    .site-navbar.fixed-top,
    .fixed-top.site-navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1040;
    }

@media (min-width: 992px) {
    body {
        padding-top: 60px;
    }
}

.glass-nav {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    background: linear-gradient(180deg, var(--cinap-azul-escuro) 0%, #000000e6 100%) !important;
    border-bottom: 0 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .20) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

    .glass-nav .nav-link,
    .glass-nav .navbar-brand {
        color: #ffffff !important;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .glass-nav .nav-link:hover,
        .glass-nav .nav-link:focus {
            color: var(--cinap-vermelho) !important;
            text-decoration: underline;
            text-decoration-color: var(--cinap-vermelho);
            text-underline-offset: 3px;
        }


/* ================================================================
   9. LOGO
================================================================ */

.brand-overlap {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

    .brand-overlap .brand-logo {
        position: absolute;
        left: -70px;
        bottom: -20px;
        height: 72px;
        width: auto;
        z-index: 1050;
        object-fit: contain;
        display: block;
    }

.brand-logo {
    height: clamp(var(--brand-h-sm), 4vw, var(--brand-h-lg));
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar-brand {
    padding-top: .25rem;
    padding-bottom: .25rem;
    line-height: 1;
}

.navbar-toggler {
    padding: .25rem .5rem;
    margin-right: 0;
}

.navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
}
/* ================================================================
   10. NAVBAR MOBILE
================================================================ */

@media (max-width: 991.98px) {
    .brand-overlap {
        height: auto;
    }

        .brand-overlap .brand-logo {
            position: static;
            height: var(--brand-h-sm);
        }

    #mainNavbar {
        width: 100% !important;
        margin: 0 !important;
        padding: .75rem 1rem;
        background: linear-gradient(180deg, var(--cinap-azul-escuro) 0%, #000000e6 100%) !important;
        border: 0 !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, .15);
    }

        #mainNavbar .nav-link,
        #mainNavbar .navbar-brand {
            color: #ffffff !important;
        }

            #mainNavbar .nav-link:hover,
            #mainNavbar .nav-link:focus {
                color: var(--cinap-vermelho) !important;
                text-decoration: underline;
                text-decoration-color: var(--cinap-vermelho);
                text-underline-offset: 3px;
            }

    .navbar-toggler {
        border: none !important;
        box-shadow: none !important;
    }

        .navbar-toggler:focus,
        .navbar-toggler:active {
            box-shadow: none !important;
            outline: none !important;
        }

    .navbar-toggler-icon {
        filter: invert(1) brightness(2);
    }

    .navbar-toggler-icon {
        filter: invert(1) brightness(2);
    }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        opacity: 0.85;
    }

        .navbar-nav .dropdown-menu .dropdown-item:hover,
        .navbar-nav .dropdown-menu .dropdown-item:focus {
            background-color: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
            opacity: 1;
        }   
}

#mainNavbar .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

    #mainNavbar .navbar-toggler:focus,
    #mainNavbar .navbar-toggler:active,
    #mainNavbar .navbar-toggler:focus-visible {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
/* ================================================================
   11. FOOTER
================================================================ */

.footer-dark {
    background: linear-gradient(180deg, var(--footer-bg1) 0%, var(--footer-bg2) 100%);
    color: var(--footer-text);
    border-top: 4px solid var(--cinap-azul-escuro);
}

.footer-section-title {
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: .75rem;
    color: #ffffff;
}

.footer-sep {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
    margin: 1.25rem 0 1.5rem;
}

.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cfd8e3 !important;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    font-size: 20px;
    line-height: 1;
}

    .footer-social .bi-youtube {
        font-size: 22px;
    }

    .footer-social:visited {
        color: #cfd8e3 !important;
    }

    .footer-social:hover {
        background: var(--accent);
        border-color: rgba(255, 255, 255, .22);
        transform: translateY(-3px) rotate(360deg);
    }

.footer-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    color: var(--footer-text);
    margin-right: 1.25rem;
    margin-bottom: .25rem;
    white-space: normal;
}

.footer-link {
    color: var(--footer-text) !important;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: #ffffff !important;
        text-decoration: underline;
        text-decoration-color: var(--accent);
        text-underline-offset: 3px;
    }


/* ================================================================
   12. WHATSAPP FLUTUANTE
================================================================ */

.whats-float {
    position: fixed;
    right: 16px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    z-index: 1060;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

    .whats-float:hover {
        transform: rotate(3deg);
        filter: brightness(1.05);
        box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
    }

    .whats-float,
    .whats-float:link,
    .whats-float:visited,
    .whats-float:hover,
    .whats-float:active {
        color: #fff !important;
    }

.whats-icon {
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .whats-float {
        right: 12px;
        bottom: 12px;
        width: 56px;
        height: 56px;
    }
}
/* ================================================================
   13. CARROSSEL DE PRODUTOS
================================================================ */

.products-band,
.latest-products-band {
    background: #fff;
    color: rgba(0, 0, 0, .60);
    --np-gap: 1.25rem;
    --np-img-h: 220px;
    --np-arrow-color: rgba(0, 0, 0, .80);
}

.np-title {
    margin: 0 0 .25rem;
    font-weight: 700;
}

.np-underline {
    width: 56px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 1rem;
    background: var(--cinap-azul-escuro);
}

.np-wrap {
    position: relative;
    padding: 0 40px;
}

.np-track {
    position: relative;
    display: flex;
    gap: var(--np-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: .5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .np-track::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

.np-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - (3 * var(--np-gap))) / 4) !important;
    scroll-snap-align: start;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
    z-index: 1;
}

    .np-card:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .25) !important;
        z-index: 10;
    }

    .np-card .np-img {
        display: block;
        width: 100%;
        height: var(--np-img-h);
        object-fit: cover;
    }

    .np-card .np-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px 16px;
        text-align: center;
        font-weight: 700;
        color: #fff;
        background: linear-gradient( to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, 0) 100% );
    }


/* ================================================================
   14. SETAS DO CARROSSEL DE PRODUTOS
================================================================ */

.np-arrow {
    width: 40px;
    height: 40px !important;
    z-index: 5;
    cursor: pointer;
    background: transparent !important;
    color: var(--cinap-azul-escuro) !important;
    transition: all 0.2s ease;
}

    .np-arrow i {
        font-size: 2.5rem;
        line-height: 1;
    }

    .np-arrow:hover,
    .np-arrow:focus-visible {
        background-color: transparent !important;
        color: var(--cinap-vermelho) !important;
        transform: scale(1.2);
    }

    .np-arrow:focus {
        box-shadow: none !important;
    }

    .np-arrow.arrow-left {
        left: -10px;
    }

    .np-arrow.arrow-right {
        right: -10px;
    }
/* ================================================================
   15. RESPONSIVO - CARROSSEL DE PRODUTOS
================================================================ */

@media (min-width: 992px) {
    .products-band,
    .latest-products-band {
        --np-img-h: 260px;
    }
}

@media (max-width: 1199.98px) {
    .np-card {
        flex: 0 0 calc((100% - (2 * var(--np-gap))) / 3) !important;
    }
}

@media (max-width: 991.98px) {
    .np-card {
        flex: 0 0 calc((100% - (1 * var(--np-gap))) / 2) !important;
    }
}

@media (max-width: 767.98px) {
    .np-card {
        flex: 0 0 100% !important;
    }

    .np-wrap {
        padding: 0 25px !important;
    }
}

@media (max-width: 575.98px) {
    .products-band,
    .latest-products-band {
        --np-img-h: 150px;
    }

    .np-wrap {
        padding: 0 25px;
    }

    .np-arrow.arrow-left {
        left: -5px;
    }

    .np-arrow.arrow-right {
        right: -5px;
    }

    .np-arrow i {
        font-size: 2rem;
    }
}
/* ================================================================
   16. FOTO QUADRADA
================================================================ */

.foto-quadrada {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
}

    .foto-quadrada img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: 0;
        outline: 0;
        box-shadow: none;
    }


/* ================================================================
   17. ÍCONES INLINE
================================================================ */

.fi {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
}


/* ================================================================
   18. CARDS GERAIS
================================================================ */

.card-header.small-header {
    background-color: #e9ecef;
    color: var(--cinap-azul);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #dcdcdc;
}

.card.small-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
}

    .card.small-card:hover {
        box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
        transition: 0.2s ease;
    }
/* ================================================================
   19. BOTÕES PRINCIPAIS
================================================================ */

.btn-primary {
    background: linear-gradient(180deg, var(--cinap-azul-escuro) 0%, #000000e6 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: linear-gradient(180deg, var(--cinap-vermelho) 0%, #90021A 100%) !important;
        border: none !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
    }


/* ================================================================
   20. INPUTS E SELECTS
================================================================ */

.form-select:focus,
.form-control:focus {
    border-color: var(--cinap-azul);
    box-shadow: 0 0 0 0.2rem rgba(0, 97, 168, 0.2);
}

.small-label {
    font-size: 0.8rem;
    color: var(--cinap-azul);
    font-weight: 500;
}


/* ================================================================
   21. PAGINAÇÃO
================================================================ */

.pagination .page-link {
    color: var(--cinap-azul);
    font-size: 0.85rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--cinap-azul);
    border-color: var(--cinap-azul);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: var(--cinap-vermelho);
    border-color: var(--cinap-vermelho);
    color: #fff;
}


/* ================================================================
   22. RESPONSIVO - PÁGINAS INTERNAS
================================================================ */

@media (max-width: 768px) {
    .institucional-hero {
        min-height: 200px;
    }

    .trabalhe-hero,
    .download-hero {
        min-height: 120px;
    }

    .institucional-hero-title,
    .trabalhe-hero-title,
    .download-hero-title,
    .institucional-title {
        font-size: 1.8rem;
    }

    .institucional-content,
    .trabalhe-content,
    .download-content {
        padding: 1.5rem !important;
    }
}

/* ================================================================
   23. AJUSTES MOBILE - CATÁLOGO ONLINE
================================================================ */

@media (max-width: 991.98px) {
    body {
        padding-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .catalogo-page,
    .produtos-page,
    .products-page {
        padding-top: 1rem;
    }

    .btn-filtros,
    .btn-filtro,
    button[data-bs-target="#filtros"],
    button[data-bs-toggle="collapse"] {
        position: relative;
        top: 0;
        margin-top: .75rem;
        margin-bottom: .75rem;
        z-index: 2;
    }

    .form-label,
    label {
        white-space: normal;
    }
}


/* ================================================================
   24. CATÁLOGO ONLINE - BUSCAS
================================================================ */

.catalog-search-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.catalog-search-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 0 0 auto;
}

.catalog-search-label {
    color: var(--cinap-azul-escuro);
    width: 115px;
    min-width: 115px;
    margin-bottom: 0;
    white-space: nowrap;
}

.catalog-input-group {
    width: 250px !important;
    max-width: 250px;
    flex-wrap: nowrap;
}

    .catalog-input-group .form-control {
        min-width: 0;
    }

.catalog-search-btn {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* TABLET / DESKTOP MENOR */
@media (max-width: 1199.98px) {
    .catalog-search-area {
        justify-content: flex-start;
    }

    .catalog-search-item {
        flex: 1 1 100%;
    }

    .catalog-input-group {
        width: 100% !important;
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 767.98px) {
    .catalog-search-area {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .catalog-search-item {
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        width: 100%;
    }

    .catalog-search-label {
        width: 100%;
        min-width: 0;
        margin-bottom: 0;
    }

    .catalog-input-group {
        width: 100% !important;
        max-width: 100%;
        flex-wrap: nowrap;
    }

        .catalog-input-group .form-control {
            min-width: 0;
            width: 1%;
            flex: 1 1 auto;
        }

    .catalog-search-btn {
        flex: 0 0 46px;
        width: 46px;
        min-width: 46px;
        max-width: 46px;
    }
}
}