.app__footer{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 500;
    width: 100%;
    padding: 1.5rem;
}
.app__footer nav{
    --icon-size: 28px;

    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    font-size: .875rem;
    font-weight: 600;
    background: rgb(0 0 0 / 55%);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    border-inline-start: 1px solid rgb(255 255 255 / 50%);
    border-radius: 100px;

    padding: 4px;
    margin-inline: auto;

    background: var(--section-bg);
    border: 0;
    border-top: 1px solid rgb(0 0 0 / 10%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.app__footer a:not(.active) span{
    display: none;
}
.app__footer a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 100px;
    color: #fff;
    transition: all .15s ease;

    color: color: var(--text-secondary);
}
.app__footer a.active{
    background: var(--primary);
    color: #fff;
}


.app__footer.tech{
    padding: 0;
    border-top: 1px solid rgb(0 0 0 / 15%);
    box-shadow: var(--box-shadow-lg);
    
}
.app__footer.tech nav{
    max-width: unset;
    border-radius: 0;
    border: 0;
    background: #fff;
}
.app__footer.tech a{
    color: var(--text-secondary);
    padding: 16px;
}
.app__footer.tech a.active{
    background: transparent;
    color: var(--primary);
}

@media (width < 340px) {
    .app__footer{
        padding: 0;
        padding-top: 1.5rem;
    }
    .app__footer nav{
        max-width: unset;
        border-radius: 0;
        border: 0;
    }
    .app__footer a{
        padding: 12px 14px;
        border-radius: 20px;
    }
}

#cart-home-footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
#cart-home-footer .promotions-message{
    margin: 0;
    border-radius: 0;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
#cart-home-footer .container{
    box-shadow: var(--box-shadow-lg);
    background: var(--section-bg);
    border-top: var(--border);
}