/*
 * ============================================================
 * MAISON ZINEB — NAVIGATION PRODUIT
 * ============================================================
 */

.mz-product-navigation {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 100%;

    margin: 12px auto 10px;
    padding: 0 12px;

    z-index: 20;
}


/*
 * ============================================================
 * BOUTONS PRÉCÉDENT / SUIVANT
 * ============================================================
 */

.mz-product-navigation__button {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 50px;

    width: 50px;
    height: 58px;

    border: 2px solid #b30000;
    border-radius: 15px;

    background: #fff;

    color: #b30000;
    text-decoration: none;

    font-size: 42px;
    font-weight: 300;
    line-height: 1;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    -webkit-tap-highlight-color: transparent;
}

.mz-product-navigation__button:hover,
.mz-product-navigation__button:focus,
.mz-product-navigation__button:active {
    color: #b30000;
    border-color: #b30000;
    background: #fff;
    text-decoration: none;
}

.mz-product-navigation__button span {
    position: relative;
    top: -2px;
}


/*
 * ============================================================
 * CENTRE
 * ============================================================
 */

.mz-product-navigation__center {
    min-width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;
}


/*
 * ============================================================
 * COMPTEUR
 * ============================================================
 */

.mz-product-navigation__counter {
    font-size: 20px;
    font-weight: 700;

    line-height: 1.1;

    color: #111;

    text-align: center;
    white-space: nowrap;
}


/*
 * CHIFFRES DU COMPTEUR
 */

.mz-product-navigation__number {
    color: #b30000;
    font-weight: 800;
}


/*
 * ============================================================
 * POINTS STYLE CARROUSEL
 * ============================================================
 */

.mz-product-navigation__dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    height: 8px;
}

.mz-product-navigation__dot {
    display: block;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d0d0d0;
}

.mz-product-navigation__dot--active {
    width: 20px;

    border-radius: 10px;

    background: #b30000;
}


/*
 * ============================================================
 * MOBILE
 * ============================================================
 */

@media (max-width: 767px) {

    .mz-product-navigation {
        gap: 10px;
    }

    .mz-product-navigation__button {
        flex-basis: 48px;

        width: 48px;
        height: 56px;

        font-size: 40px;
    }

    .mz-product-navigation__center {
        min-width: 175px;
    }

    .mz-product-navigation__counter {
        font-size: 19px;
    }
}


/*
 * ============================================================
 * PETITS MOBILES
 * ============================================================
 */

@media (max-width: 390px) {

    .mz-product-navigation {
        gap: 7px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .mz-product-navigation__center {
        min-width: 150px;
    }

    .mz-product-navigation__counter {
        font-size: 17px;
    }

    .mz-product-navigation__button {
        width: 45px;
        height: 54px;

        flex-basis: 45px;

        font-size: 38px;
    }
}