.floating-brands {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.brand-box-wrapper {
    width: 130px;
    height: 45px;
    position: relative;
}

.brand-box {
    font-size: 14px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px 0 0 0;
    overflow: hidden;
    position: relative;
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-icon {
    position: absolute;
    right: 10px;
    width: 16px;
    height: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-box-wrapper:hover .brand-box {
    /* position: absolute; */
    transform: translateX(-20px);
    /* width: 150px; */
    z-index: 10;
    /* left: -20px; */

}

.brand-box-wrapper:hover .brand-icon {
    opacity: 1;
    transform: translateX(0);
}


/* .floating-brands .brand-box {
    display: block;
    width: 100px;
    height: 45px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 45px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-top-left-radius: 10px;
} */


.brand-box.ahi-carrier {
    background: linear-gradient(160deg, rgba(6, 14, 160, 1) 10%, rgba(6, 14, 160, 1) 15%, rgba(227, 15, 18, 1) 100%);
}

.brand-box.toshiba {
    background: #ED291E;
}

.brand-box.carrier {
    background: #060ea0;
}

.brand-box.viessmann {
    background: #FF3E18;
}

.floating-brands .brand-box:hover {
    /* transform: translateX(-10px);*/
    filter: brightness(1.1);
    transform: scale(1.1);
}

.mobile-brands-bar {
    display: none;
}

/* =========================================
   MOBILE BOTTOM BRANDS BAR
========================================= */
@media (max-width: 991px) {

    .mobile-brands-bar.hide {
        transform: translateY(100%);
        transition: transform 0.25s ease;
    }

    .mobile-brands-bar {
        transform: translateY(0);
        transition: transform 0.25s ease;
    }

    /* body {
        padding-bottom: 40px;
    } */

    .floating-brands {
        display: none;
    }

    .mobile-brands-bar {
        display: inherit;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 0;
        border-top: 1px solid #ddd;
        z-index: 999999;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.08);
        margin-bottom: -1px;
    }

    .mobile-brands-inner {
        display: flex;
        overflow-x: auto;
        padding: 0 12px;
        gap: 10px;
        scrollbar-width: none;
    }

    .mobile-brands-inner::-webkit-scrollbar {
        display: none;
    }

    .brand-pill {
        flex: 0 0 23%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
        transition: transform 0.2s ease;
    }

    .brand-pill.ahi-carrier {
        background: linear-gradient(160deg, rgba(6, 14, 160, 1) 10%, rgba(6, 14, 160, 1) 15%, rgba(227, 15, 18, 1) 100%);
    }

    .brand-pill.toshiba {
        background: #ED291E;
    }

    .brand-pill.carrier {
        background: #060ea0;
    }

    .brand-pill.viessmann {
        background: #FF3E18;
    }

    .brand-pill:active,
    .brand-pill:hover {
        transform: scale(1.07);
    }
}