/************* NAV BOUTIQUE PREMIUM *************/
.menu-boutique, .shop-mobile-toggle-icon{
    display: none;
}
.shop-mobile-toggle{
    display: none;
}
.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 {
    position: relative;
    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: 1.4rem;
}

.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 : 768px)
{

.menu-boutique{
    display: block;
}
.shop-nav-wrapper {
        padding: 0.7rem 1rem;
    }

   /*
    |--------------------------------------------------------------------------
    | MENU FERMÉ
    |--------------------------------------------------------------------------
    */

    .shop-nav {
        display: none;

        margin-top: 0.55rem;
        padding: 0.45rem;

        background: #fff;

        border: 1px solid #eee3dd;
        border-radius: 14px;

        box-shadow:
            0 12px 30px rgba(73, 52, 44, 0.09);
    }

/*
    |--------------------------------------------------------------------------
    | MENU OUVERT
    |--------------------------------------------------------------------------
    */

    .shop-nav.is-open {
        display: grid;
        gap: 0.2rem;
    }


    .shop-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;

        min-height: 44px;

        padding: 0.7rem 0.9rem;

        border-radius: 10px;

        color: #5c4a42;

        font-size: 0.9rem;

        text-decoration: none;
    }

    .cart-count {
        min-width: 24px;
        height: 24px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0 0.4rem;

        border-radius: 999px;

        font-size: 0.75rem;
    }

    .shop-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 46px;

        padding: 0 1rem;

        border: 1px solid #ddd1ca;
        border-radius: 14px;

        background: #fffaf7;

        color: #493c36;

        font: inherit;
        font-size: 0.9rem;
        font-weight: 600;

        cursor: pointer;

        box-shadow:
            0 6px 18px rgba(73, 52, 44, 0.06);
    }
    .shop-mobile-toggle-icon {
        display: inline-flex;
        margin-bottom: 6px;
        transition:
            transform 0.25s ease;
    }


    .shop-mobile-toggle[
        aria-expanded="true"
    ]
    .shop-mobile-toggle-icon {
        transform: rotate(180deg);
    }
}