:root {
    --bbhf-accent: #8fc31f;
    --bbhf-accent-dark: #17672d;
    --bbhf-notification-bg: #8fc31f;
    --bbhf-notification-text: #ffffff;
    --bbhf-header-bg: #ffffff;
    --bbhf-header-text: #171717;
    --bbhf-header-accent: #17672d;
    --bbhf-header-button-bg: #ffffff;
    --bbhf-header-button-hover-bg: #e6efe8;
    --bbhf-header-button-active-bg: #17672d;
    --bbhf-header-button-icon: #171717;
    --bbhf-header-button-hover-icon: #17672d;
    --bbhf-header-button-active-icon: #ffffff;
    --bbhf-text: #171717;
    --bbhf-muted: #697077;
    --bbhf-surface: #ffffff;
    --bbhf-footer-bg: #123f25;
    --bbhf-footer-text: #ffffff;
    --bbhf-border: #d9e2e5;
    --bbhf-container: 1640px;
    --bbhf-container-padding-desktop: 24px;
    --bbhf-container-padding-tablet: 18px;
    --bbhf-container-padding-mobile: 14px;
    --bbhf-container-padding: var(--bbhf-container-padding-desktop);
    --bbhf-shadow: 0 12px 34px rgba(18, 63, 37, 0.12);
    --bbhf-global-font-family: Arial, Helvetica, sans-serif;
    --bbhf-footer-heading-size: 22px;
    --bbhf-footer-menu-size: 16px;
    --bbhf-mobile-header-height: 80px;
    --bbhf-admin-bar-offset: 0px;
}

html {
    box-sizing: border-box;
    overflow-x: clip;
    scroll-padding-top: 24px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    color: var(--bbhf-text);
    background: var(--bbhf-surface);
    font-family: var(--bbhf-global-font-family);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.bbhf-menu-open {
    overflow-x: clip;
    overscroll-behavior: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
    font-family: var(--bbhf-global-font-family);
}

.elementor,
.elementor-widget,
.elementor-widget-container,
.elementor-heading-title,
.elementor-button,
.elementor-field,
.elementor-widget-text-editor {
    font-family: var(--bbhf-global-font-family);
}

.bbhf-container {
    width: min(100%, calc(var(--bbhf-container) + var(--bbhf-container-padding) + var(--bbhf-container-padding)));
    margin-inline: auto;
    padding-inline: var(--bbhf-container-padding);
}

.screen-reader-text,
.bbhf-skip-link {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bbhf-skip-link:focus {
    top: 10px;
    left: 10px;
    z-index: 100000;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    margin: 0;
    border-radius: 4px;
    background: #fff;
    color: #000;
    box-shadow: var(--bbhf-shadow);
}

.bbhf-header {
    position: sticky;
    top: var(--bbhf-admin-bar-offset, 0px);
    z-index: 9999;
    width: 100%;
    flex: 0 0 auto;
    background: var(--bbhf-header-bg);
    transition: box-shadow 180ms ease;
}

.bbhf-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(18, 63, 37, 0.16);
}


.bbhf-topbar {
    width: 100%;
    overflow: hidden;
    background: var(--bbhf-notification-bg);
    color: var(--bbhf-notification-text);
}

.bbhf-topbar-inner {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    padding-block: 11px;
    overflow: hidden;
    font-size: clamp(15px, 1.2vw, 21px);
    line-height: 1.35;
}

.bbhf-topbar-marquee {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.bbhf-topbar-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 200%;
    white-space: nowrap;
    animation: bbhf-topbar-marquee 18s linear infinite;
}

.bbhf-topbar-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 100vw;
    padding-inline: clamp(24px, 6vw, 120px);
}

.bbhf-topbar-text {
    display: block;
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
}

.bbhf-topbar-marquee:hover .bbhf-topbar-track,
.bbhf-topbar-marquee:focus-within .bbhf-topbar-track {
    animation-play-state: paused;
}

@keyframes bbhf-topbar-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.bbhf-navbar {
    position: relative;
    background: var(--bbhf-header-bg);
    border-bottom: 4px solid #9db9bf;
}

.bbhf-navbar-inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: minmax(150px, 240px) minmax(0, 1fr) max-content;
    align-items: center;
    gap: clamp(24px, 3vw, 58px);
}

.bbhf-brand {
    min-width: 0;
    display: flex;
    align-items: center;
}

.bbhf-brand .custom-logo-link,
.bbhf-footer-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.bbhf-brand .custom-logo {
    width: auto;
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
}

.bbhf-site-title {
    display: inline-block;
    color: var(--bbhf-header-accent);
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.bbhf-navigation {
    min-width: 0;
}

.bbhf-primary-menu,
.bbhf-primary-menu .sub-menu,
.bbhf-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bbhf-primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(25px, 3.1vw, 58px);
}

.bbhf-primary-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.bbhf-primary-menu a {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    color: var(--bbhf-header-text);
    font-size: var(--bbhf-menu-font-size, clamp(16px, 1.22vw, 21px));
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease;
}

.bbhf-primary-menu > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--bbhf-header-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.bbhf-primary-menu > li:hover > a,
.bbhf-primary-menu > li:focus-within > a,
.bbhf-primary-menu > .current-menu-item > a,
.bbhf-primary-menu > .current-menu-ancestor > a,
.bbhf-primary-menu > li > a:hover,
.bbhf-primary-menu > li > a:focus-visible {
    color: var(--bbhf-header-accent);
}

.bbhf-primary-menu > li:hover > a::after,
.bbhf-primary-menu > li:focus-within > a::after,
.bbhf-primary-menu > .current-menu-item > a::after,
.bbhf-primary-menu > .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.bbhf-primary-menu .menu-item-has-children > a {
    gap: 9px;
}

.bbhf-primary-menu .menu-item-has-children > a::before {
    content: "";
    order: 2;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.bbhf-primary-menu .sub-menu li {
    position: relative;
}

.bbhf-primary-menu .sub-menu {
    position: absolute;
    z-index: 30;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--bbhf-border);
    border-radius: 12px;
    background: var(--bbhf-header-bg);
    box-shadow: var(--bbhf-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.bbhf-primary-menu > li > .sub-menu {
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 8px);
}

.bbhf-primary-menu > li:nth-last-child(-n+2) > .sub-menu {
    right: 0;
    left: auto;
    transform: translate(0, 8px);
}

.bbhf-primary-menu .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 10px);
    transform: translate(8px, 0);
}

.bbhf-primary-menu .sub-menu li:nth-last-child(-n+2) > .sub-menu {
    top: auto;
    bottom: -10px;
}

.bbhf-primary-menu li:hover > .sub-menu,
.bbhf-primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.bbhf-primary-menu > li:hover > .sub-menu,
.bbhf-primary-menu > li:focus-within > .sub-menu {
    transform: translate(-50%, 0);
}

.bbhf-primary-menu > li:nth-last-child(-n+2):hover > .sub-menu,
.bbhf-primary-menu > li:nth-last-child(-n+2):focus-within > .sub-menu {
    transform: translate(0, 0);
}

.bbhf-primary-menu .sub-menu li:hover > .sub-menu,
.bbhf-primary-menu .sub-menu li:focus-within > .sub-menu {
    transform: translate(0, 0);
}

.bbhf-primary-menu .sub-menu .menu-item-has-children > a::before {
    transform: rotate(-45deg);
}

.bbhf-primary-menu .sub-menu a {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: var(--bbhf-menu-font-size, 16px);
    white-space: normal;
}

.bbhf-primary-menu .sub-menu a:hover,
.bbhf-primary-menu .sub-menu a:focus-visible {
    background: rgba(23, 103, 45, 0.08);
    background: color-mix(in srgb, var(--bbhf-header-accent) 12%, var(--bbhf-header-bg));
}

.bbhf-submenu-toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    touch-action: manipulation;
}

.bbhf-header-action {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bbhf-whatsapp-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.22);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bbhf-whatsapp-button:hover,
.bbhf-whatsapp-button:focus-visible {
    color: #ffffff;
    background: #1fb85a;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.bbhf-whatsapp-button svg {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
}

/*
 * Use explicit, high-specificity button states so Elementor Global Colors or
 * parent-theme button styles cannot inject unrelated colours such as pink.
 * Search, hamburger/close, and mobile submenu buttons share these variables.
 */
.bbhf-header .bbhf-search-toggle,
.bbhf-header .bbhf-menu-toggle,
.bbhf-header .bbhf-submenu-toggle {
    appearance: none;
    border: 0 !important;
    border-color: transparent !important;
    background-color: var(--bbhf-header-button-bg) !important;
    background-image: none !important;
    color: var(--bbhf-header-button-icon) !important;
    box-shadow: none;
    cursor: pointer;
    touch-action: manipulation;
}

.bbhf-header .bbhf-search-toggle:hover,
.bbhf-header .bbhf-search-toggle:focus-visible,
.bbhf-header .bbhf-menu-toggle:hover,
.bbhf-header .bbhf-menu-toggle:focus-visible,
.bbhf-header .bbhf-submenu-toggle:hover,
.bbhf-header .bbhf-submenu-toggle:focus-visible {
    background-color: var(--bbhf-header-button-hover-bg) !important;
    color: var(--bbhf-header-button-hover-icon) !important;
}

.bbhf-header .bbhf-search-toggle:active,
.bbhf-header .bbhf-search-toggle[aria-expanded="true"],
.bbhf-header .bbhf-menu-toggle:active,
.bbhf-header .bbhf-menu-toggle[aria-expanded="true"],
.bbhf-header .bbhf-submenu-toggle:active,
.bbhf-header .bbhf-submenu-toggle[aria-expanded="true"] {
    background-color: var(--bbhf-header-button-active-bg) !important;
    color: var(--bbhf-header-button-active-icon) !important;
}

.bbhf-search-toggle {
    width: 42px;
    height: 42px;
    padding: 1px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    transition: background 180ms ease, color 180ms ease;
}

.bbhf-search-toggle svg {
    width: 34px;
    height: 34px;
    max-width: none;
    flex: 0 0 34px;
}

.bbhf-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px 9px;
    border-radius: 8px;
}

.bbhf-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.bbhf-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(8px) rotate(45deg);
}

.bbhf-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.bbhf-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-8px) rotate(-45deg);
}

.bbhf-header-search {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    padding: 18px 0;
    background: var(--bbhf-header-bg);
    border-bottom: 1px solid var(--bbhf-border);
    box-shadow: var(--bbhf-shadow);
}

.bbhf-header-search[hidden] {
    display: none;
}

.bbhf-search-form {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.bbhf-search-field {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #b9c5c9;
    border-radius: 8px;
    color: var(--bbhf-text);
    background: #fff;
}

.bbhf-search-field:focus {
    outline: 3px solid rgba(143, 195, 31, 0.28);
    border-color: var(--bbhf-accent-dark);
}

.bbhf-search-submit {
    min-height: 48px;
    padding: 10px 22px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--bbhf-header-accent);
    font-weight: 700;
    cursor: pointer;
}

.bbhf-assign-menu {
    display: inline-flex;
    justify-content: center;
    color: var(--bbhf-header-accent);
    font-weight: 700;
}

.bbhf-page-content {
    width: 100%;
    min-width: 0;
    flex: 1 0 auto;
}

.bbhf-elementor-content,
.bbhf-elementor-content > .elementor,
.bbhf-elementor-content .elementor-section-wrap {
    width: 100%;
}

.bbhf-default-content {
    width: 100%;
    flex: 1 0 auto;
    padding: 64px 0;
}

.bbhf-entry-title {
    overflow-wrap: anywhere;
}

.bbhf-footer {
    flex: 0 0 auto;
    color: var(--bbhf-footer-text);
    background: var(--bbhf-footer-bg);
}

.bbhf-footer-grid {
    padding-block: 68px 56px;
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(32px, 5vw, 84px);
}

.bbhf-footer-brand {
    min-width: 0;
}

.bbhf-footer-logo {
    margin-bottom: 24px;
}

.bbhf-footer-logo .custom-logo {
    width: auto;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.bbhf-footer-logo .bbhf-site-title {
    color: var(--bbhf-footer-text);
}

.bbhf-footer-brand p,
.bbhf-contact {
    color: var(--bbhf-footer-text);
    font-size: 16px;
    line-height: 1.75;
}

.bbhf-footer-menu {
    color: var(--bbhf-footer-text);
    font-size: var(--bbhf-footer-menu-size);
    line-height: 1.65;
}

.bbhf-footer-brand p {
    max-width: 430px;
    margin: 0 0 22px;
}

.bbhf-contact {
    display: grid;
    gap: 7px;
    font-style: normal;
}

.bbhf-contact a {
    width: fit-content;
    text-decoration: none;
}

.bbhf-contact a:hover,
.bbhf-contact a:focus-visible,
.bbhf-footer-menu a:hover,
.bbhf-footer-menu a:focus-visible {
    color: var(--bbhf-footer-text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.bbhf-footer-heading {
    margin: 0 0 20px;
    color: var(--bbhf-footer-text);
    font-size: var(--bbhf-footer-heading-size);
    line-height: 1.25;
}

.bbhf-footer-menu {
    display: grid;
    gap: 12px;
}

.bbhf-footer-menu a {
    text-decoration: none;
}

.bbhf-social-links {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.bbhf-social-link {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--bbhf-footer-text) 30%, transparent);
    border-radius: 50%;
    color: var(--bbhf-footer-text);
    background: color-mix(in srgb, var(--bbhf-footer-text) 10%, transparent);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.bbhf-social-link:hover,
.bbhf-social-link:focus-visible {
    color: var(--bbhf-footer-text);
    border-color: color-mix(in srgb, var(--bbhf-footer-text) 62%, transparent);
    background: color-mix(in srgb, var(--bbhf-footer-text) 20%, transparent);
    transform: translateY(-2px);
}

.bbhf-social-link svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.bbhf-social-icon-text {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1;
}

.bbhf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-top-color: color-mix(in srgb, var(--bbhf-footer-text) 18%, transparent);
}

.bbhf-footer-bottom .bbhf-container {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 14px;
    color: var(--bbhf-footer-text);
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    body {
        padding-top: var(--bbhf-mobile-header-height, 80px);
    }

    .bbhf-header {
        position: fixed;
        right: 0;
        left: 0;
        top: var(--bbhf-admin-bar-offset, 0px);
    }

    .bbhf-container {
        --bbhf-container-padding: var(--bbhf-container-padding-tablet);
    }

    .bbhf-navbar-inner {
        grid-template-columns: minmax(120px, 1fr) 48px max-content;
        gap: 12px;
    }

    .bbhf-brand .custom-logo {
        max-width: 150px;
        max-height: 60px;
    }

    .bbhf-menu-toggle {
        display: block;
        grid-column: 2;
        justify-self: end;
    }

    .bbhf-header-action {
        grid-column: 3;
        justify-self: end;
    }

    .bbhf-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: calc(100vh - 80px);
        padding: 14px 18px 24px;
        overflow-y: auto;
        background: var(--bbhf-header-bg);
        border-top: 1px solid var(--bbhf-border);
        border-bottom: 1px solid var(--bbhf-border);
        box-shadow: var(--bbhf-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .bbhf-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bbhf-primary-menu {
        width: min(100%, 760px);
        margin: 0 auto;
        display: grid;
        gap: 2px;
    }

    .bbhf-primary-menu a {
        width: 100%;
        min-height: 48px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: var(--bbhf-menu-font-size, 17px);
        white-space: normal;
    }

    .bbhf-primary-menu > li > a::after {
        right: auto;
        left: 12px;
        bottom: 4px;
        width: 48px;
        height: 3px;
    }

    .bbhf-primary-menu .menu-item-has-children {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: start;
    }

    .bbhf-primary-menu .menu-item-has-children > a {
        grid-column: 1;
    }

    .bbhf-primary-menu .menu-item-has-children > a::before {
        display: none;
    }

    .bbhf-submenu-toggle {
        grid-column: 2;
        width: 44px;
        height: 44px;
        margin-top: 2px;
        display: inline-grid;
        place-items: center;
        border-radius: 8px;
    }

    .bbhf-submenu-toggle::before {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 180ms ease;
    }

    .bbhf-submenu-toggle[aria-expanded="true"]::before {
        transform: translateY(2px) rotate(225deg);
    }

    .bbhf-primary-menu .sub-menu {
        position: static;
        grid-column: 1 / -1;
        min-width: 0;
        padding: 0 0 4px 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        background: transparent;
    }

    .bbhf-js .bbhf-primary-menu .sub-menu {
        display: none;
    }

    .bbhf-js .bbhf-primary-menu .submenu-open > .sub-menu {
        display: block;
    }

    .bbhf-primary-menu .sub-menu .menu-item-has-children {
        grid-template-columns: minmax(0, 1fr) 42px;
    }

    .bbhf-primary-menu .sub-menu .bbhf-submenu-toggle {
        width: 40px;
        height: 40px;
    }

    .bbhf-primary-menu .sub-menu a {
        min-height: 42px;
        font-size: var(--bbhf-menu-font-size, 15px);
    }

    .bbhf-primary-menu .sub-menu .sub-menu {
        padding-left: 18px;
    }

    .bbhf-footer-grid {
        grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, 1fr));
    }
}

@media (max-width: 820px) {
    .bbhf-whatsapp-button {
        width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 50%;
    }

    .bbhf-whatsapp-label {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

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

    .bbhf-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .bbhf-container {
        --bbhf-container-padding: var(--bbhf-container-padding-mobile);
    }

    .bbhf-topbar-inner {
        min-height: 40px;
        padding-block: 9px;
        font-size: 14px;
    }

    .bbhf-topbar-group {
        padding-inline: 20px;
    }

    .bbhf-navbar-inner {
        grid-template-columns: minmax(100px, 1fr) 44px 44px;
        gap: 8px;
    }

    .bbhf-brand .custom-logo {
        max-width: 126px;
        max-height: 58px;
    }

    .bbhf-menu-toggle,
    .bbhf-search-toggle,
    .bbhf-whatsapp-button {
        width: 44px;
        height: 44px;
    }


    .bbhf-search-toggle {
        padding: 1px;
    }

    .bbhf-search-toggle svg {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .bbhf-navigation {
        max-height: calc(100vh - 80px);
        padding-inline: 14px;
    }

    .bbhf-header-search {
        padding: 14px 0;
    }

    .bbhf-search-form {
        grid-template-columns: 1fr;
    }

    .bbhf-search-submit {
        width: 100%;
    }

    .bbhf-footer-grid {
        padding-block: 50px 42px;
        gap: 34px 26px;
    }
}

@media (max-width: 480px) {
    .bbhf-navbar-inner {
        grid-template-columns: minmax(86px, 1fr) 42px 42px;
    }

    .bbhf-brand .custom-logo {
        max-width: 112px;
        max-height: 56px;
    }

    .bbhf-menu-toggle,
    .bbhf-search-toggle,
    .bbhf-whatsapp-button {
        width: 42px;
        height: 42px;
    }

    .bbhf-footer-grid {
        grid-template-columns: 1fr;
    }

    .bbhf-footer-brand {
        grid-column: auto;
    }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .bbhf-topbar-track {
        width: 100%;
        min-width: 0;
        animation: none !important;
        transform: none !important;
    }

    .bbhf-topbar-group {
        width: 100%;
        min-width: 0;
        padding-inline: var(--bbhf-container-padding, 20px);
    }

    .bbhf-topbar-text {
        white-space: normal;
    }

    .bbhf-topbar-group[aria-hidden="true"] {
        display: none;
    }
}
