/************* NAV BOUTIQUE PREMIUM *************/

.cart-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #fff;
    color: #B56E5A;
    font-size: .82rem;
    font-weight: 700;
}

.shop-nav-wrapper {
    width: 90%;
    max-width: 1180px;
    margin: 32px auto 45px;
    padding: 22px;
    background: #FFFDF9;
    border: 1px solid rgba(181,110,90,.16);
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(47,47,47,.07);
    text-align: center;
}

.shop-nav-kicker {
    color: #B56E5A;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .82rem;
    margin-bottom: 16px;
}

.shop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: #5F5651;
    border: 1px solid rgba(181,110,90,.18);
    background: #F8F5F1;
    transition: .25s;
}

.shop-nav a:hover,
.shop-nav a.active {
    background: #B56E5A;
    color: #fff;
    transform: translateY(-2px);
}

.shop-nav a:hover .cart-count,
.shop-nav a.active .cart-count {
    background: #FFF3EF;
}

@media screen and(max-width : 900px)
{

    

}


@media screen and(max-width : 768px)
{

.shop-nav-wrapper {
        width: 92%;
        padding: 18px;
    }

    .shop-nav {
        flex-direction: column;
    }

    .shop-nav a {
        width: 100%;
        justify-content: center;
    }
}