/* ---------------------- */
/*        ROOT COLORS     */
/* ---------------------- */
:root {
    --white: #FFFFFF;
    --green: #86927E;
    --green-light: #CED5CD;
    --black: #000000;
    --green20: rgba(134, 146, 126, 0.2);

    --header-bg-desktop: rgba(0, 0, 0, 0.00);
    /* transparente no hero */
    --header-bg-mobile: rgba(255, 255, 255, 0.86);
    /* branco/blur no mobile */
    --header-border-mobile: rgba(0, 0, 0, 0.08);
    --header-text-on-hero: #FFFFFF;
    --header-text-on-solid: #86927E;
}

/* ---------------------- */
/*        GENERAL         */
/* ---------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ---------------------- */
/*    STATIC HOME BV      */
/* ---------------------- */
.bv-home {
    background: #f2f0ea;
    overflow-x: hidden;
}

.bv-home,
.bv-home * {
    font-family: "Poppins", sans-serif !important;
    
}

.bv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bv-homepage .bv-header {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bv-homepage .bv-header.is-solid {
    background: #fff;
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

@media (min-width: 981px) {
    .bv-homepage .bv-header.is-solid {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas: "brand nav tools";
        align-items: center;
        column-gap: 14px;
        padding: 10px 28px;
    }

    .bv-homepage .bv-header.is-solid .bv-header__top {
        display: contents;
    }

    .bv-homepage .bv-header.is-solid .bv-brand {
        grid-area: brand;
        max-width: none;
    }

    .bv-homepage .bv-header.is-solid .bv-brand img {
        height: 46px;
    }

    .bv-homepage .bv-header.is-solid .bv-tools {
        grid-area: tools;
        justify-self: end;
    }

    .bv-homepage .bv-header.is-solid .bv-nav {
        grid-area: nav;
        margin: 0;
        padding: 0;
        min-width: 0;
        justify-content: flex-start;
        gap: clamp(12px, 1.2vw, 22px);
        flex-wrap: nowrap;
    }

    .bv-homepage .bv-header.is-solid .bv-nav-item {
        flex: 0 0 auto;
    }

    .bv-homepage .bv-header.is-solid .bv-nav-link {
        font-size: clamp(16px, 1.05vw, 21px);
        white-space: nowrap;
    }
}

.bv-header__top {
    margin: 0 auto;
    padding: 16px 50px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bv-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: min(56vw, 560px);
    flex: 0 1 auto;
}

.bv-brand img {
    height: 58px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.bv-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bv-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bv-search__toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(8, 31, 83, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.bv-homepage .bv-header:not(.is-solid) .bv-search__toggle,
.bv-homepage .bv-header:not(.is-solid) .bv-icon-btn,
.bv-homepage .bv-header:not(.is-solid) .bv-burger {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.bv-homepage .bv-header:not(.is-solid) .bv-nav-link,
.bv-homepage .bv-header:not(.is-solid) .bv-caret {
    color: #fff;
}

.bv-homepage .bv-header:not(.is-solid) .bv-search svg,
.bv-homepage .bv-header:not(.is-solid) .bv-icon-btn svg {
    fill: #fff;
}

.bv-homepage .bv-header:not(.is-solid) .bv-burger span {
    background: #fff;
}

.bv-search__panel {
    width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: width .22s ease, opacity .18s ease;
}

.bv-search.is-open .bv-search__panel {
    width: min(360px, 42vw);
    opacity: 1;
    pointer-events: auto;
}

.bv-search__modal {
    display: none;
}

.bv-search input {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(8, 31, 83, 0.28);
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.86);
    color: rgba(0, 0, 0, 0.72);
    font-size: 16px;
    padding: 0 16px;
}

.bv-search input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.bv-search svg,
.bv-icon-btn svg {
    width: 22px;
    height: 22px;
    fill: #4d4d4d;
}

.bv-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(8, 31, 83, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.bv-icon-btn,
.bv-search__toggle,
.bv-burger {
    flex: 0 0 auto;
}

.bv-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(8, 35, 95, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.68);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.bv-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #08235f;
}

.bv-nav {
    margin: 0 auto;
    padding: 2px 50px 12px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.bv-nav-item {
    position: static;
}

.bv-nav-link {
    border: 0;
    background: transparent;
    color: #08235f;
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.bv-nav > .bv-nav-item > a.bv-nav-link,
.bv-nav > .bv-nav-item > a.bv-nav-link:visited,
.bv-nav > .bv-nav-item > a.bv-nav-link:hover,
.bv-nav > .bv-nav-item > a.bv-nav-link:focus,
.bv-nav > .bv-nav-item > a.bv-nav-link:active {
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.bv-caret {
    font-size: 15px;
    transform: translateY(1px);
    transition: transform .24s ease;
}

.bv-dropdown {
    position: absolute;
    top: 100%;
    left: calc(50% - 50vw);
    width: 100vw;
    padding: 26px 28px 28px;
    border-top: 1px solid rgba(8, 35, 95, 0.08);
    background: rgba(242, 242, 242, 0.97);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-height: min(70vh, 520px);
    overflow: auto;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.bv-dropdown__grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.bv-dd-col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
}

.bv-dd-col h4 {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.74);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
}

.bv-dropdown a {
    display: inline-flex;
    color: rgba(0, 0, 0, 0.63);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 500;
}

.bv-dropdown a[style*="font-weight: 700"] {
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.bv-nav-item[data-menu-condition="novo"] .bv-dropdown a:not([style*="font-weight: 700"]),
.bv-nav-item[data-menu-condition="usado"] .bv-dropdown a:not([style*="font-weight: 700"]) {
    background: transparent;
    padding: 0 0 0 10px;
    border-radius: 0;
}

.bv-dropdown a:hover {
    color: rgba(0, 0, 0, 0.84);
    background: rgba(255, 255, 255, 0.96);
}

.bv-nav-item[data-menu-condition="novo"] .bv-dropdown a:not([style*="font-weight: 700"]):hover,
.bv-nav-item[data-menu-condition="usado"] .bv-dropdown a:not([style*="font-weight: 700"]):hover {
    background: transparent;
}

.bv-nav-item:hover .bv-dropdown,
.bv-nav-item.is-open .bv-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.bv-nav-item:hover .bv-caret,
.bv-nav-item.is-open .bv-caret {
    transform: translateY(1px) rotate(180deg);
}

.bv-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    opacity: 0;
    transition: opacity .22s ease;
}

.bv-offcanvas.is-open {
    pointer-events: auto;
    opacity: 1;
}

.bv-offcanvas__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.bv-offcanvas__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 96vw);
    height: 100dvh;
    max-height: 100dvh;
    background: #fff;
    transform: translateX(104%);
    transition: transform .28s ease;
    padding: 16px 14px 20px;
    overflow-y: auto;
}

.bv-offcanvas.is-open .bv-offcanvas__panel {
    transform: translateX(0);
}

.bv-offcanvas__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bv-offcanvas__top img {
    height: 56px;
    width: auto;
}

.bv-offcanvas__close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(8, 35, 95, 0.22);
    border-radius: 8px;
    background: #fff;
    color: #08235f;
    font-size: 20px;
    cursor: pointer;
}

.bv-offcanvas__links {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.bv-offcanvas__links > a,
.bv-offcanvas__group-title {
    color: #08235f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 8px;
    border-radius: 8px;
    margin: 0;
}

.bv-offcanvas__group > .bv-offcanvas__group-title {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.bv-offcanvas__group > .bv-offcanvas__group-title::after {
    content: '▾';
    font-size: 14px;
    line-height: 1;
    opacity: 0.8;
    transform: rotate(-90deg);
    transition: transform .2s ease;
}

.bv-offcanvas__group {
    border-radius: 10px;
    background: #f5f7fb;
    padding: 2px 2px 6px;
}

.bv-offcanvas__group.is-open > .bv-offcanvas__group-title::after {
    transform: rotate(0deg);
}

.bv-offcanvas__group > [data-mobile-links][hidden] {
    display: none !important;
}

.bv-offcanvas__group a {
    display: block;
    color: rgba(8, 35, 95, 0.84);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 10px;
}

.bv-no-scroll {
    overflow: hidden;
}

.bv-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bv-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--bv-hero-shift, 0px), 0) scale(1.08);
    transform-origin: center;
    will-change: transform;
}

.bv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 10%,
        rgba(0, 0, 0, 0.28) 55%,
        rgba(0, 0, 0, 0.42) 100%
    );
}

.bv-hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 50px) 56px;
}

.bv-hero__content h1 {
    color: #fff;
    font-size: clamp(40px, 6vw, 84px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
    white-space: nowrap;
    max-width: none;
    overflow-wrap: normal;
    word-break: normal;
}

.bv-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 250px;
    border-radius: 999px;
    background: #fff;
    color: #08235f;
    text-decoration: none;
    padding: 11px 20px;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: color .28s ease;
}

.bv-cta__label,
.bv-cta__icon {
    position: relative;
    z-index: 1;
    color: #08235f;
    transition: color .28s ease;
}

.bv-cta__icon {
    font-size: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bv-cta__icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.bv-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0e2f73;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.bv-cta:hover,
.bv-cta:focus-visible {
    color: #fff;
}

.bv-cta:hover::before,
.bv-cta:focus-visible::before {
    transform: scaleX(1);
}

.bv-cta:hover .bv-cta__label,
.bv-cta:hover .bv-cta__icon,
.bv-cta:focus-visible .bv-cta__label,
.bv-cta:focus-visible .bv-cta__icon {
    color: #fff;
}

.bv-wrap {
    /* width: min(1280px, calc(100% - 28px)); */
    padding: 25px 25px 25px 25px;
    margin: 0 auto;
}

.bv-banners {
    background: #e9e9e9;
}

.bv-banner {
    height: 100vh;
    background-size: cover;
    background-position: center calc(50% + var(--bv-banner-shift, 0px));
    position: relative;
    overflow: hidden;
    will-change: background-position;
}

.bv-banner + .bv-banner {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
}

.bv-banner__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.15) 100%); */
    background: rgba(0, 0, 0, 0.45);
}

.bv-banner__content {
    position: absolute;
    left: 3.5%;
    bottom: 10%;
    z-index: 2;
}

.bv-banner__content h3 {
    color: #fff;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 0.95;
    font-weight: 800;
    margin: 0 0 10px;
}

.bv-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 999px;
    background: #fff;
    color: #0e2f73;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 16px;
    position: relative;
    overflow: hidden;
    transition: color .28s ease;
}

.bv-banner__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0e2f73;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.bv-banner__btn-label,
.bv-banner__btn-icon {
    position: relative;
    z-index: 1;
    color: #0e2f73;
    transition: color .28s ease;
}

.bv-banner__btn-icon {
    font-size: 20px;
}

.bv-banner__btn:hover,
.bv-banner__btn:focus-visible {
    color: #fff;
}

.bv-banner__btn:hover::before,
.bv-banner__btn:focus-visible::before {
    transform: scaleX(1);
}

.bv-banner__btn:hover .bv-banner__btn-label,
.bv-banner__btn:hover .bv-banner__btn-icon,
.bv-banner__btn:focus-visible .bv-banner__btn-label,
.bv-banner__btn:focus-visible .bv-banner__btn-icon {
    color: #fff;
}

.bv-banner__model {
    position: absolute;
    right: 3.5%;
    bottom: 13%;
    margin: 0;
    z-index: 2;
    color: #1250d0;
    font-size: clamp(32px, 4.3vw, 60px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.62),
        0 4px 14px rgba(0, 0, 0, 0.62),
        0 0 24px rgba(0, 0, 0, 0.42);
    isolation: isolate;
}

.bv-banner:nth-child(even) .bv-banner__overlay {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.bv-banner:nth-child(even) .bv-banner__content {
    left: auto;
    right: 3.5%;
    text-align: right;
}

.bv-banner:nth-child(even) .bv-banner__model {
    right: auto;
    left: 3.5%;
}

.bv-listings {
    background: #ececec;
    padding: 26px 0 34px;
}

.bv-listings h2 {
    color: #0e2f73;
    
    margin: 0 0 16px;
}

.bv-listings h2 + .bv-cards {
    margin-bottom: 34px;
}

.bv-list-separator {
    display: block;
    margin: 12px 0 22px;
    height: clamp(140px, 18vw, 220px);
    border-radius: 16px;
    background-size: cover;
    background-position: center calc(50% + var(--bv-separator-shift, 0px));
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    color: #fff;
}

.bv-list-separator__bg {
    display: none;
}

.bv-list-separator__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 33, 95, 0.72), rgba(8, 33, 95, 0.35));
}

.bv-list-separator h3 {
    position: absolute;
    left: 24px;
    bottom: 20px;
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    font-weight: 800;
    z-index: 1;
}

body.is-ios .bv-list-separator {
    background-attachment: scroll !important;
    background-position: center center !important;
}

body.is-ios .bv-list-separator__bg {
    display: none !important;
}

.bv-list-separator:visited,
.bv-list-separator:hover,
.bv-list-separator:active,
.bv-list-separator:focus-visible {
    color: #fff;
    text-decoration: none;
}

.bv-cards {
    --bv-cards-gap: 18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--bv-cards-gap);
}

.bv-cards.is-slider {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (4 * var(--bv-cards-gap))) / 5);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.bv-cards.is-slider .bv-card-item {
    scroll-snap-align: start;
    min-width: 0;
}

.bv-cards-slider__controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: -8px 0 10px;
}

.bv-listings__more {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 12px 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    color: #0e2f73;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(14, 47, 115, 0.08);
}

.bv-listings__more:hover,
.bv-listings__more:focus-visible {
    background: #0e2f73;
    color: #fff;
    text-decoration: none;
}

.bv-cards-slider__btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(14, 47, 115, 0.2);
    background: #fff;
    color: #0e2f73;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(14, 47, 115, 0.08);
}

.bv-cards-slider__btn:hover,
.bv-cards-slider__btn:focus-visible {
    background: #0e2f73;
    color: #fff;
}

.bv-card-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.bv-card-item .bv-compare-btn:not(.bv-compare-btn--icon) {
    width: 100%;
}

.bv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: none;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.bv-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
}

.bv-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease, transform .45s ease;
}

.bv-card__img--primary {
    opacity: 1;
    transform: scale(1);
}

.bv-card__img--secondary {
    opacity: 0;
    transform: scale(1.04);
}

.bv-card:hover .bv-card__img--primary {
    opacity: 0;
    transform: scale(1.03);
}

.bv-card:hover .bv-card__img--secondary {
    opacity: 1;
    transform: scale(1);
}

body.is-ios .bv-card__img {
    transition: none;
}

body.is-ios .bv-card__img--secondary {
    display: none;
}

body.is-ios .bv-card__img--primary,
body.is-ios .bv-card:hover .bv-card__img--primary {
    opacity: 1;
    transform: none;
}

body.is-ios .bv-card:hover .bv-card__img--secondary {
    opacity: 0;
    transform: none;
}

.bv-card__body {
    flex: 1 1 auto;
    padding: 14px 60px 10px 16px;
}

.bv-card__body h4 {
    margin: 0;
    color: #0e2f73;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.18;
    font-weight: 600;
    min-height: 2.36em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv-card__body p {
    margin: 6px 0 0;
    color: #0e2f73;
    font-size: 13px;
    font-weight: 700;
}

.bv-contact {
    background: #f2f2f2;
    padding: 36px 0 42px;
}

.bv-contact h2 {
    margin: 0 0 24px;
    color: #0e2f73;
    font-size: clamp(38px, 4.8vw, 78px);
    line-height: 1;
    font-weight: 100;
}

.bv-contact__grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr 1fr;
    gap: 24px;
}

.bv-contact__grid h4 {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: 21px;
    text-decoration: underline;
}

.bv-contact__grid p {
    margin: 0;
    color: #0e2f73;
    font-size: 18px;
    line-height: 1.45;
}

.bv-contact__grid p a {
    color: inherit;
    text-decoration: none;
}

.bv-contact__grid p a:hover,
.bv-contact__grid p a:focus-visible {
    text-decoration: underline;
}

.bv-footer {
    position: relative;
    background: #0e2f73 url("../img/hero-footer.jpg") center/cover no-repeat;
    padding: 0;
    min-height: clamp(420px, 44vw, 620px);
    color: #fff;
}

.bv-footer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 33, 95, 0.78);
}

.bv-footer__inner {
    position: relative;
    z-index: 1;
    min-height: clamp(420px, 44vw, 620px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 20px);
    padding-block: clamp(18px, 2.6vw, 34px);
    padding-inline: clamp(12px, 2.8vw, 28px);
}

.bv-footer__brand{
    text-align: center;
    padding-bottom: 2%;
    padding-top: 2%;
}

.bv-footer__brand img {
    height: clamp(72px, 6vw, 108px);
    max-width: min(82vw, 760px);
    width: auto;
    display: block;
    margin-inline: auto;
    filter: none;
}

.bv-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 34px);
    justify-items: center;
    padding-top: 2%;
}

.bv-footer__cols > div {
    text-align: center;
}

.bv-footer__cols h5 {
    margin: 0 0 10px;
    font-size: 28px;
    text-decoration: underline;
}

.bv-footer__cols a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(15px, 1.25vw, 20px);
    line-height: 1.28;
}

.bv-footer__copy {
    margin: auto 0 0;
    padding-top: clamp(10px, 1.8vw, 18px);
    text-align: center;
    font-size: 13px;
    opacity: .95;
}

.bv-footer__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.bv-footer__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(6, 20, 58, 0.16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bv-footer__logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 20, 58, 0.22);
}

.bv-footer__logo-link img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 30px;
    object-fit: contain;
}

.bv-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.bv-whatsapp:hover,
.bv-whatsapp:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.bv-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.bv-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bv-card--link:focus-visible {
    outline: 3px solid #0e2f73;
    outline-offset: -3px;
}

.bv-cards__empty {
    grid-column: 1 / -1;
    border: 1px dashed rgba(14, 47, 115, 0.35);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    color: #0e2f73;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.64);
}

.bv-product {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-product__wrap {
    width: min(1240px, calc(100% - 26px));
    margin: 0 auto;
    padding: 0;
}

.bv-product__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.bv-product__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.bv-product__breadcrumb a:link,
.bv-product__breadcrumb a:visited,
.bv-product__breadcrumb a:hover,
.bv-product__breadcrumb a:active {
    color: inherit;
    text-decoration: none;
}

.bv-catalog__breadcrumb a,
.bv-equipments__breadcrumb a,
.bv-stands__breadcrumb a,
.bv-compare__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.bv-product__top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 30px;
    align-items: start;
}

.bv-product-gallery,
.bv-product-meta {
    min-width: 0;
}

.bv-product-gallery__main {
    width: 100%;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #dcdcdc;
    position: relative;
    cursor: zoom-in;
}

.bv-product-gallery__main img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: contain;
    display: block;
}

.bv-product-gallery__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #0e2f73;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.bv-product-gallery__thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.bv-product-gallery__thumb {
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    flex: 0 0 78px;
    height: 72px;
    cursor: pointer;
    padding: 0;
}

.bv-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bv-product-gallery__thumb.is-active {
    border-color: #0e2f73;
    box-shadow: 0 0 0 1px #0e2f73;
}

.bv-product-meta h2 {
    margin: 0;
    color: #0e2f73;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 0.95;
    font-weight: 800;
}

.bv-product-meta h1 {
    margin: 8px 0 28px;
    color: #0e2f73;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.1;
    font-weight: 700;
}

.bv-product-meta__taxonomy {
    margin: -18px 0 18px;
    color: rgba(14, 47, 115, 0.72);
    font-size: 14px;
    font-weight: 500;
}

.bv-product-meta p {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: 22px;
    line-height: 1.2;
}

.bv-product-meta p strong {
    font-weight: 700;
}

.bv-product-meta__cta {
    display: inline-block;
    margin-top: 12px;
    border-radius: 8px;
    background: #0e2f73;
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    font-size: 22px;
    font-weight: 600;
}

.bv-product-meta__actions {
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.bv-product-meta__actions .bv-product-meta__cta {
    margin-top: 0;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.bv-product-meta__actions .bv-compare-btn--icon-inline {
    flex: 0 0 auto;
}

.bv-product-tabs {
    margin-top: 32px;
}

.bv-product-tabs__head {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bv-product-tabs__btn {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 999px;
    background: #f5f8ff;
    color: #0e2f73;
    cursor: pointer;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    padding: 10px 18px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bv-product-tabs__btn.is-active {
    border-color: #0e2f73;
    background: #0e2f73;
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 47, 115, 0.18);
}

.bv-product-tabs__panel {
    display: none;
    margin-top: 16px;
    max-width: 100%;
    color: #0e2f73;
    font-size: 18px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bv-product-tabs__panel p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bv-product-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.bv-product-highlights__item {
    border: 1px solid rgba(14, 47, 115, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    padding: 16px 18px;
}

.bv-product-highlights__label {
    display: block;
    margin-bottom: 6px;
    color: rgba(14, 47, 115, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bv-product-highlights__item strong {
    color: #0e2f73;
    font-size: 18px;
    line-height: 1.35;
}

.bv-product-tabs__panel.is-active {
    display: block;
}

.bv-product-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid rgba(14, 47, 115, 0.16);
}

.bv-product-table th,
.bv-product-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(14, 47, 115, 0.1);
    color: #0e2f73;
}

.bv-product-table th {
    width: 240px;
    background: rgba(14, 47, 115, 0.05);
}

.bv-product-table tr:last-child th,
.bv-product-table tr:last-child td {
    border-bottom: 0;
}

.bv-product__not-found {
    margin-top: 24px;
    border: 1px solid rgba(14, 47, 115, 0.2);
    border-radius: 16px;
    background: #fff;
    padding: 24px;
}

.bv-product__not-found h1 {
    margin: 0 0 10px;
    color: #0e2f73;
}

.bv-product__not-found p {
    margin: 0 0 14px;
    color: #0e2f73;
}

.bv-lightbox {
    position: fixed;
    inset: 0;
    z-index: 6000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.bv-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bv-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.bv-lightbox__dialog {
    position: absolute;
    inset: 24px;
    display: grid;
    place-items: center;
}

.bv-lightbox__dialog img {
    width: min(92vw, 1100px);
    max-height: calc(100dvh - 110px);
    object-fit: contain;
    display: block;
}

.bv-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0e2f73;
    font-size: 22px;
    cursor: pointer;
}

.bv-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0e2f73;
    font-size: 22px;
    cursor: pointer;
}

.bv-lightbox__nav--prev {
    left: 8px;
}

.bv-lightbox__nav--next {
    right: 8px;
}

.bv-lightbox__counter {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
}

.bv-catalog {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-catalog__wrap {
    width: min(1260px, calc(100% - 24px));
    margin: 0 auto;
    padding: 0;
}

.bv-catalog__head {
    margin-bottom: 20px;
}

.bv-catalog__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 8px;
}

.bv-catalog__head h1 {
    color: #0e2f73;
    font-size: clamp(28px, 3.1vw, 46px);
    margin: 0 0 8px;
    line-height: 1;
}

.bv-catalog__head p {
    color: rgba(14, 47, 115, 0.9);
    max-width: 84ch;
    line-height: 1.45;
}

.bv-catalog__layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.bv-catalog-filters {
    position: sticky;
    top: 118px;
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 14px;
    background: #fff;
    padding: 16px;
}

.bv-catalog-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bv-catalog-filters h2 {
    margin: 0 0 12px;
    color: #0e2f73;
    font-size: 22px;
}

.bv-catalog-filters__head h2 {
    margin-bottom: 0;
}

.bv-catalog-filters__close {
    display: none;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    color: #0e2f73;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.bv-catalog-filters__backdrop {
    display: none;
}

.bv-catalog-filters__label {
    display: block;
    margin: 10px 0 6px;
    color: #0e2f73;
    font-size: 14px;
    font-weight: 600;
}

.bv-catalog-filters__input {
    width: 100%;
    border: 1px solid rgba(14, 47, 115, 0.24);
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    color: #0e2f73;
}

.bv-catalog-range {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 10px;
    background: #f9fafc;
    padding: 10px 12px 12px;
}

.bv-catalog-range__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    color: #0e2f73;
    font-size: 13px;
    font-weight: 700;
}

.bv-catalog-range__slider {
    position: relative;
    height: 28px;
}

.bv-catalog-range__slider [data-filter-power-inputs] {
    position: absolute;
    inset: 0;
}

.bv-catalog-range__track,
.bv-catalog-range__track-active {
    position: absolute;
    top: 50%;
    height: 6px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.bv-catalog-range__track {
    left: 0;
    right: 0;
    background: rgba(14, 47, 115, 0.14);
}

.bv-catalog-range__track-active {
    left: 0;
    width: 0;
    background: #0e2f73;
}

.bv-catalog-range__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
    touch-action: none;
}

.bv-catalog-range__handle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 3;
    appearance: none;
    -webkit-appearance: none;
    touch-action: none;
}

.bv-catalog-range__handle:active {
    cursor: grabbing;
}

.bv-catalog-range__handle:focus-visible {
    outline: 2px solid rgba(14, 47, 115, 0.35);
    outline-offset: 2px;
}

.bv-catalog-range__handle--min {
    z-index: 4;
}

.bv-catalog-range__slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.bv-catalog-range__slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.bv-catalog-range__slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
    border: 0;
}

.bv-catalog-range__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    pointer-events: auto;
    margin-top: -6px;
}

.bv-catalog-range__slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    pointer-events: auto;
}

.bv-catalog-range__input--min {
    z-index: 2;
}

.bv-catalog-range__input--max {
    z-index: 3;
}

.bv-catalog-range.is-disabled {
    opacity: 0.55;
}

.bv-catalog-range.is-disabled .bv-catalog-range__hit,
.bv-catalog-range.is-disabled .bv-catalog-range__handle {
    pointer-events: none;
    cursor: default;
}

.bv-catalog-filters__types {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
}

.bv-catalog-filters__types label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0e2f73;
    font-size: 14px;
    font-weight: 500;
}

.bv-catalog-filters__options {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 10px;
    background: #f9fafc;
    padding: 10px;
    display: grid;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
}

.bv-catalog-filters__option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0e2f73;
    font-size: 14px;
    font-weight: 500;
}

.bv-catalog-filters__empty {
    margin: 0;
    color: rgba(14, 47, 115, 0.72);
    font-size: 13px;
}

.bv-catalog-filters__clear {
    margin-top: 14px;
    width: 100%;
    border: 1px solid #0e2f73;
    background: #0e2f73;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.bv-catalog-results {
    border: 1px solid rgba(14, 47, 115, 0.14);
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.bv-catalog-results__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(14, 47, 115, 0.1);
}

.bv-catalog-results__tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bv-catalog-results__filters-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(14, 47, 115, 0.22);
    background: #fff;
    color: #0e2f73;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.bv-catalog-results__view-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 3px;
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 999px;
    background: #f7f9fc;
}

.bv-catalog-results__view-btn {
    border: 0;
    background: transparent;
    color: #0e2f73;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    padding: 0;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
}

.bv-catalog-results__view-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.bv-catalog-results__view-btn--grid svg {
    transform: rotate(90deg);
}

.bv-catalog-results__view-btn.is-active,
.bv-catalog-results__view-btn[aria-pressed="true"] {
    background: #0e2f73;
    color: #fff;
}

.bv-catalog-results__count {
    color: #0e2f73;
    font-size: 14px;
    font-weight: 700;
}

.bv-catalog-empty {
    border: 1px dashed rgba(14, 47, 115, 0.28);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    color: #0e2f73;
    text-align: center;
}

.bv-catalog-group {
    margin-top: 16px;
}

.bv-catalog-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(14, 47, 115, 0.12);
}

.bv-catalog-group__head h2 {
    margin: 0;
    color: #0e2f73;
    font-size: clamp(20px, 2.1vw, 30px);
}

.bv-catalog-group__head span {
    display: inline-grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(14, 47, 115, 0.1);
    color: #0e2f73;
    font-size: 13px;
    font-weight: 700;
}

.bv-catalog-family {
    border: 1px solid rgba(14, 47, 115, 0.12);
    border-radius: 12px;
    padding: 12px;
    background: #f9fafc;
}

.bv-catalog-family + .bv-catalog-family {
    margin-top: 12px;
}

.bv-catalog-family h3 {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: 20px;
}

.bv-catalog-subgroup h4 {
    margin: 0 0 8px;
    color: rgba(14, 47, 115, 0.9);
    font-size: 15px;
}

.bv-catalog-subgroup + .bv-catalog-subgroup {
    margin-top: 12px;
}

.bv-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bv-catalog-pagination {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.bv-catalog-pagination__numbers {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.bv-catalog-pagination__btn,
.bv-catalog-pagination__num {
    border: 1px solid rgba(14, 47, 115, 0.2);
    background: #fff;
    color: #0e2f73;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.bv-catalog-pagination__btn {
    padding: 9px 12px;
    font-size: 13px;
}

.bv-catalog-pagination__num {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
}

.bv-catalog-pagination__btn:hover,
.bv-catalog-pagination__btn:focus-visible,
.bv-catalog-pagination__num:hover,
.bv-catalog-pagination__num:focus-visible,
.bv-catalog-pagination__num.is-active {
    background: #0e2f73;
    border-color: #0e2f73;
    color: #fff;
}

.bv-catalog-pagination__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bv-catalog-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.bv-catalog-card {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.bv-catalog-card__media {
    position: relative;
    aspect-ratio: 1 / 0.8;
    background: #eef0f3;
}

.bv-catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bv-catalog-card__chip {
    position: absolute;
    left: 8px;
    top: 8px;
    border-radius: 999px;
    background: rgba(14, 47, 115, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
}

.bv-catalog-card__body {
    padding: 10px 56px 10px 10px;
}

.bv-catalog-card__body h5 {
    margin: 0 0 4px;
    color: #0e2f73;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
}

.bv-catalog-card__body p {
    margin: 0;
    color: rgba(14, 47, 115, 0.84);
    font-size: 12px;
}

.bv-catalog-card__link {
    display: inline-block;
    margin-top: 8px;
    color: #0e2f73;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
}

.bv-compare-btn {
    border: 1px solid #0e2f73;
    border-radius: 8px;
    background: #fff;
    color: #0e2f73;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.bv-compare-btn:hover,
.bv-compare-btn:focus-visible,
.bv-compare-btn.is-active {
    background: #0e2f73;
    color: #fff;
}

.bv-compare-btn--catalog {
    width: 100%;
}

.bv-compare-btn--product {
    padding-inline: 14px;
}

.bv-compare-btn--icon-inline {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    padding: 0;
    display: inline-grid;
    place-items: center;
}

.bv-compare-btn--icon-inline svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.bv-compare-btn--icon {
    position: absolute;
    top: auto;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    padding: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(6, 27, 72, 0.16);
}

.bv-compare-btn--icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.bv-toast-stack {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 3000;
    display: grid;
    gap: 8px;
    pointer-events: none;
}

.bv-toast {
    max-width: min(84vw, 360px);
    background: #0e2f73;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(5, 18, 48, 0.28);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.bv-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bv-toast__message {
    min-width: 0;
    flex: 1;
}

.bv-toast__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.bv-toast__action:hover,
.bv-toast__action:focus-visible {
    background: #fff;
    color: #0e2f73;
}

.bv-icon-btn--compare {
    border: 1px solid rgba(8, 35, 95, 0.26);
    border-radius: 8px;
    width: 34px;
    height: 34px;
}

.bv-equipments {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-equipments__wrap {
    width: min(1260px, calc(100% - 24px));
    margin: 0 auto;
    padding: 0;
}

.bv-equipments__head {
    margin-bottom: 24px;
}

.bv-equipments__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 8px;
}

.bv-equipments__head h1 {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1;
}

.bv-equipments__head p {
    color: rgba(14, 47, 115, 0.9);
}

.bv-equipment-categories {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.bv-equipment-categories__card {
    text-decoration: none;
    color: inherit;
    border: none;
    border-radius: 14px;
    background: transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform .2s ease;
}

.bv-equipment-categories__card:hover,
.bv-equipment-categories__card:focus-visible {
    transform: translateY(-2px);
}

.bv-equipment-categories__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.bv-equipment-categories__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bv-equipment-categories__card h2 {
    margin: 0;
    color: #0e2f73;
    font-size: 20px;
    line-height: 1.2;
}

.bv-equipment-categories__card p {
    margin: 0;
    color: rgba(14, 47, 115, 0.84);
    font-size: 13px;
    font-weight: 600;
}

.bv-equipments-empty {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    display: grid;
    gap: 10px;
}

.bv-equipments-empty h3 {
    margin: 0;
    color: #0e2f73;
    font-size: 22px;
}

.bv-equipments-empty p {
    margin: 0;
    color: rgba(14, 47, 115, 0.86);
}

.bv-stands {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-stands__wrap {
    width: min(1260px, calc(100% - 24px));
    margin: 0 auto;
    padding: 0;
}

.bv-stands__head {
    margin-bottom: 24px;
}

.bv-stands__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 8px;
}

.bv-stands__head h1 {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1;
}

.bv-stands__head p {
    color: rgba(14, 47, 115, 0.9);
    margin: 0;
}

.bv-stands__head a {
    color: inherit;
}

.bv-stands__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.bv-stand-card {
    border: 1px solid rgba(14, 47, 115, 0.16);
    border-radius: 14px;
    background: #fff;
    padding: 18px;
    display: grid;
    gap: 12px;
}

.bv-stand-card h2 {
    margin: 0;
    color: #0e2f73;
    font-size: 24px;
    line-height: 1.2;
}

.bv-stand-card__address p {
    margin: 0;
    color: rgba(14, 47, 115, 0.9);
    line-height: 1.4;
}

.bv-stand-card__link {
    color: #0e2f73;
    text-decoration: none;
    font-weight: 700;
}

.bv-stand-card__link:hover,
.bv-stand-card__link:focus-visible {
    text-decoration: underline;
}

.bv-stand-card details {
    border-top: 1px solid rgba(14, 47, 115, 0.12);
    padding-top: 12px;
}

.bv-stand-card summary {
    cursor: pointer;
    list-style: none;
    color: #0e2f73;
    font-weight: 700;
}

.bv-stand-card summary::-webkit-details-marker {
    display: none;
}

.bv-stand-card__contacts {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.bv-stand-card__contacts a {
    color: rgba(14, 47, 115, 0.9);
    text-decoration: none;
}

.bv-stand-card__contacts a:hover,
.bv-stand-card__contacts a:focus-visible {
    text-decoration: underline;
}

.bv-stand-card__hours {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.bv-stand-card__hours li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    color: #0e2f73;
}

.bv-stand-card__hours span {
    font-weight: 700;
}

.bv-compare {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-compare__wrap {
    width: min(1260px, calc(100% - 24px));
    margin: 0 auto;
    padding: 0;
}

.bv-compare__head {
    margin-bottom: 18px;
}

.bv-compare__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 8px;
}

.bv-compare__head h1 {
    margin: 0 0 8px;
    color: #0e2f73;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1;
}

.bv-compare__head p {
    color: rgba(14, 47, 115, 0.9);
}

.bv-page-hero {
    background: #ececec;
    padding: 170px 0 54px;
}

.bv-page-hero__wrap {
    width: min(1100px, calc(100% - 24px));
    margin: 0 auto;
}

.bv-page-hero__breadcrumb {
    color: #0e2f73;
    font-size: 13px;
    margin: 0 0 8px;
}

.bv-page-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.bv-page-hero h1 {
    margin: 0 0 12px;
    color: #0e2f73;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1;
}

.bv-page-hero__lead {
    color: rgba(14, 47, 115, 0.9);
    max-width: 80ch;
    line-height: 1.55;
}

.bv-page-card {
    margin-top: 24px;
    border: 1px solid rgba(14, 47, 115, 0.12);
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    display: grid;
    gap: 22px;
}

.bv-page-card h2 {
    color: #0e2f73;
    font-size: 22px;
}

.bv-page-card p,
.bv-page-card li {
    color: rgba(14, 47, 115, 0.88);
    line-height: 1.7;
}

.bv-page-card ul {
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.bv-page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bv-page-links a {
    color: #0e2f73;
    font-weight: 700;
    text-decoration: none;
}

.bv-page-links a:hover,
.bv-page-links a:focus-visible {
    text-decoration: underline;
}

.bv-compare__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bv-compare__count {
    color: #0e2f73;
    font-weight: 700;
    font-size: 14px;
}

.bv-compare__clear {
    border: 1px solid #0e2f73;
    border-radius: 10px;
    background: #0e2f73;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.bv-compare-empty {
    border: 1px dashed rgba(14, 47, 115, 0.28);
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    text-align: center;
    color: #0e2f73;
}

.bv-compare-empty h3 {
    margin: 0 0 8px;
}

.bv-compare-empty p {
    margin: 0 0 12px;
}

.bv-compare-table-wrap {
    border: 1px solid rgba(14, 47, 115, 0.14);
    border-radius: 14px;
    background: #fff;
    overflow-x: auto;
}

.bv-compare-table {
    width: max-content;
    border-collapse: collapse;
    min-width: max(100%, 760px);
    table-layout: fixed;
}

.bv-compare-table th,
.bv-compare-table td {
    border-bottom: 1px solid rgba(14, 47, 115, 0.1);
    border-right: 1px solid rgba(14, 47, 115, 0.08);
    text-align: left;
    vertical-align: top;
    padding: 10px;
    color: #0e2f73;
    font-size: 14px;
}

.bv-compare-table thead th {
    background: rgba(14, 47, 115, 0.04);
}

.bv-compare-table th:first-child {
    width: 150px;
    min-width: 150px;
    background: rgba(14, 47, 115, 0.06);
    font-weight: 700;
}

.bv-compare-table thead th:not(:first-child),
.bv-compare-table tbody td {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
}

.bv-compare-table tr:last-child th,
.bv-compare-table tr:last-child td {
    border-bottom: 0;
}

.bv-compare-table__product {
    display: grid;
    gap: 8px;
    min-width: 200px;
}

.bv-compare-table__product img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    background: #f1f1f1;
}

.bv-compare-table__product a {
    color: #0e2f73;
    text-decoration: none;
    font-weight: 700;
}

.bv-compare-table__remove {
    justify-self: end;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(14, 47, 115, 0.45);
    border-radius: 999px;
    background: #fff;
    color: #0e2f73;
    font-size: 14px;
    cursor: pointer;
}

.bv-compare-table__row-description td {
    padding: 0;
}

.bv-compare-table__cell-scroll {
    max-width: 100%;
    max-height: 120px;
    overflow: auto;
    padding: 10px;
    white-space: normal;
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .bv-header__top {
        flex-wrap: nowrap;
        gap: 10px;
        padding-bottom: 10px;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .bv-tools {
        width: auto;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    .bv-search {
        order: 0;
        flex: 0 0 auto;
        width: 42px;
        min-width: 42px;
    }

    .bv-nav {
        display: none;
    }

    .bv-burger {
        display: inline-flex;
        order: 0;
        flex: 0 0 auto;
    }

    .bv-brand {
        max-width: min(42vw, 180px);
        flex: 0 1 auto;
    }

    .bv-brand img {
        height: 52px;
    }

    .bv-homepage .bv-header {
        background: rgba(255, 255, 255, 0.16);
        border-bottom-color: transparent;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .bv-homepage .bv-header.is-solid {
        background: #fff;
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }

    .bv-search__panel {
        display: none;
    }

    .bv-search.is-open .bv-search__panel {
        width: 0;
        opacity: 0;
        pointer-events: none;
    }

    .bv-search__modal {
        position: fixed;
        inset: 0;
        z-index: 3100;
        display: block;
        pointer-events: none;
        opacity: 0;
        transition: opacity .22s ease;
    }

    .bv-search__modal[aria-hidden="false"] {
        pointer-events: auto;
        opacity: 1;
    }

    .bv-search__modal-backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.58);
        cursor: pointer;
    }

    .bv-search__modal-dialog {
        position: relative;
        width: min(92vw, 640px);
        margin: max(18px, env(safe-area-inset-top, 0px) + 18px) auto 0;
        padding: 14px;
        border-radius: 16px;
        background: rgba(24, 24, 24, 0.94);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    }

    .bv-search__modal-form {
        position: relative;
    }

    .bv-search__modal-icon {
        position: absolute;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
        display: inline-grid;
        place-items: center;
        color: #1f2937;
    }

    .bv-search__modal-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .bv-search__modal-form input {
        width: 100%;
        height: 52px;
        border: 0;
        border-radius: 999px;
        background: #fff;
        color: #111827;
        font-size: 16px;
        padding: 0 96px 0 46px;
        outline: 0;
    }

    .bv-search__modal-form input::placeholder {
        color: #6b7280;
    }

    .bv-search__modal-submit {
        position: absolute;
        top: 50%;
        right: 8px;
        transform: translateY(-50%);
        height: 38px;
        padding: 0 14px;
        border: 0;
        border-radius: 999px;
        background: #0e2f73;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        cursor: pointer;
    }

    .bv-dropdown__grid {
        grid-template-columns: 1fr;
    }

    .bv-nav-link {
        font-size: 18px;
        white-space: nowrap;
    }

    .bv-hero__content {
        padding-top: 110px;
        padding-inline: 14px;
    }

    .bv-hero__media {
        object-position: center top;
    }

    .bv-hero__content h1 {
        font-size: clamp(30px, 9.2vw, 40px);
        line-height: 1.02;
        letter-spacing: 0.01em;
        white-space: normal;
        max-width: min(100%, 14ch);
    }

    .bv-banners .bv-banner {
        height: 260px;
        background-position: center;
    }

    .bv-banner:nth-child(even) .bv-banner__content {
        left: 3.5%;
        right: auto;
        text-align: left;
    }

    .bv-banner:nth-child(even) .bv-banner__model {
        left: auto;
        right: 3.5%;
    }

    .bv-banner__model {
        font-size: 24px;
        bottom: 12%;
    }

    .bv-cards,
    .bv-cards.is-slider {
        --bv-cards-gap: 18px;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: min(calc(100% - 54px), 420px);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding: 0 14px 8px 0;
        scrollbar-width: none;
    }

    .bv-cards::-webkit-scrollbar,
    .bv-cards.is-slider::-webkit-scrollbar {
        display: none;
    }

    .bv-cards .bv-card-item,
    .bv-cards.is-slider .bv-card-item {
        scroll-snap-align: start;
        min-width: 0;
    }

    .bv-cards-slider__controls {
        display: none;
    }

    .bv-listings__more {
        display: flex;
        width: 100%;
        margin-top: 10px;
    }

    .bv-card__body h4 {
        font-size: clamp(17px, 4.6vw, 21px);
        font-weight: 600;
    }

    .bv-list-separator {
        margin: 8px 0 18px;
        height: 128px;
    }

    .bv-list-separator h3 {
        left: 14px;
        bottom: 12px;
        font-size: 28px;
    }

    .bv-contact__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bv-footer__brand img {
        height: auto;
        width: min(84vw, 300px);
        max-width: 100%;
    }

    .bv-footer__cols {
        grid-template-columns: 1fr;
    }

    .bv-footer__cols a {
        font-size: clamp(12px, 4.6vw, 15px);
    }

    .bv-footer__logo-link {
        min-height: 50px;
        padding: 8px 14px;
    }

    .bv-footer__logo-link img {
        max-width: 132px;
        max-height: 26px;
    }

    .bv-footer {
        min-height: auto;
        padding: 24px 0 16px;
    }

    .bv-footer__inner {
        min-height: auto;
        gap: 14px;
        padding-inline: 16px;
        padding-block: 18px 12px;
    }

    .bv-offcanvas__panel {
        left: 0;
        right: auto;
        width: 100vw;
        max-width: none;
        min-height: 100dvh;
        padding: 18px 16px 24px;
    }

    .bv-cta {
        min-width: 0;
        font-size: 20px;
        padding: 10px 16px;
        gap: 10px;
    }

    .bv-product {
        padding-top: 128px;
    }

    .bv-product__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bv-product-gallery__main {
        border-radius: 14px;
    }

    .bv-product-gallery__main img {
        aspect-ratio: 1 / 1;
    }

    .bv-product-gallery__thumbs {
        gap: 8px;
        padding-right: 4px;
    }

    .bv-product-gallery__thumb {
        flex-basis: 68px;
        height: 68px;
    }

    .bv-product-meta h2 {
        font-size: clamp(26px, 8vw, 42px);
    }

    .bv-product-meta h1 {
        margin-bottom: 16px;
        font-size: clamp(22px, 6vw, 30px);
    }

    .bv-product-meta p,
    .bv-product-meta__cta {
        font-size: 18px;
    }

    .bv-product-meta__actions .bv-product-meta__cta,
    .bv-product-meta__actions .bv-compare-btn--icon-inline {
        min-height: 46px;
    }

    .bv-product-meta__actions .bv-product-meta__cta {
        width: auto;
    }

    .bv-product-meta__actions .bv-compare-btn--icon-inline {
        width: 46px;
        min-width: 46px;
        justify-content: center;
    }

    .bv-product-tabs__btn {
        font-size: clamp(18px, 5vw, 24px);
    }

    .bv-product-tabs__panel {
        font-size: 16px;
        overflow-x: auto;
    }

    .bv-product-table th {
        width: 170px;
    }

    .bv-lightbox__dialog {
        inset: 14px;
    }

    .bv-lightbox__nav {
        width: 38px;
        height: 38px;
    }

    .bv-catalog {
        padding-top: 130px;
    }

    .bv-catalog__layout {
        grid-template-columns: 1fr;
    }

    .bv-catalog-results__top {
        gap: 10px;
        flex-wrap: wrap;
    }

    .bv-catalog-results__filters-toggle {
        display: inline-flex;
    }

    .bv-catalog-results__view-toggle {
        display: inline-flex;
    }

    .bv-catalog-filters__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        padding: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.38);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
        z-index: 3090;
    }

    .bv-catalog-filters {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(92vw, 390px);
        max-width: 100%;
        height: 100dvh;
        overflow-y: auto;
        border-radius: 18px 0 0 18px;
        padding: 14px 14px 18px;
        box-shadow: -18px 0 32px rgba(0, 0, 0, 0.2);
        transform: translateX(104%);
        transition: transform .22s ease;
        z-index: 3100;
    }

    .bv-catalog-filters__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.bv-catalog-filters-open {
        overflow: hidden;
    }

    body.bv-catalog-filters-open .bv-catalog-filters__backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.bv-catalog-filters-open .bv-catalog-filters {
        transform: translateX(0);
    }

    .bv-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-catalog.bv-catalog--view-1 .bv-catalog-grid {
        grid-template-columns: 1fr;
    }

    .bv-catalog.bv-catalog--view-2 .bv-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-catalog-pagination {
        justify-content: center;
    }

    .bv-compare {
        padding-top: 130px;
    }

    .bv-equipments {
        padding-top: 130px;
    }

    .bv-equipments__wrap {
        width: min(1260px, calc(100% - 16px));
    }

    .bv-equipment-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bv-compare__wrap {
        width: min(1260px, calc(100% - 16px));
    }

    .bv-compare__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .bv-hero__content {
        padding-top: 98px;
        padding-inline: 12px;
        padding-bottom: 34px;
    }

    .bv-hero__content h1 {
        font-size: clamp(28px, 8.8vw, 36px);
        white-space: normal;
        max-width: min(100%, 12ch);
    }

    .bv-card__body {
        padding: 12px 54px 10px 12px;
    }

    .bv-card__body h4 {
        font-size: clamp(16px, 4.8vw, 20px);
        line-height: 1.2;
    }

    .bv-footer__brand img {
        width: min(82vw, 250px);
    }

    .bv-footer__cols h5 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .bv-footer__cols a {
        font-size: clamp(11px, 4.2vw, 13px);
        line-height: 1.24;
    }

    .bv-footer__logos {
        gap: 12px;
    }

    .bv-footer__logo-link {
        width: min(100%, 180px);
    }

    .bv-offcanvas__top img {
        max-width: 72vw;
        height: auto;
    }

    .bv-product {
        padding-top: 118px;
    }

    .bv-product__wrap {
        width: min(1240px, calc(100% - 18px));
    }

    .bv-product-tabs__head {
        gap: 12px;
        flex-wrap: wrap;
    }

    .bv-product-tabs__btn {
        padding: 10px 16px;
    }

    .bv-product-meta h2,
    .bv-product-meta h1,
    .bv-product-meta p,
    .bv-product-meta__taxonomy {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .bv-product-table th,
    .bv-product-table td {
        padding: 8px 9px;
        font-size: 14px;
    }

    .bv-product-table th {
        width: 42%;
    }

    .bv-lightbox__dialog img {
        max-height: calc(100dvh - 88px);
    }

    .bv-lightbox__counter {
        font-size: 14px;
    }

    .bv-catalog {
        padding-top: 118px;
    }

    .bv-catalog__wrap {
        width: min(1260px, calc(100% - 16px));
    }

    .bv-catalog-family h3 {
        font-size: 18px;
    }

    .bv-catalog-grid {
        grid-template-columns: 1fr;
    }

    .bv-catalog.bv-catalog--view-1 .bv-catalog-grid {
        grid-template-columns: 1fr;
    }

    .bv-catalog.bv-catalog--view-2 .bv-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bv-catalog-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .bv-catalog-pagination__btn {
        width: 100%;
    }

    .bv-compare {
        padding-top: 118px;
    }

    .bv-equipments {
        padding-top: 118px;
    }

    .bv-equipment-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .bv-equipment-categories__card {
        padding: 8px;
    }

    .bv-equipment-categories__card h2 {
        font-size: 17px;
    }

    .bv-compare-table {
        min-width: 640px;
    }
}
