.product-navigation {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    z-index: 1000;
}

.nav-arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Taille du cercle */
    height: 50px; /* Taille du cercle */
    transition: 0.3s;
}



.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.nav-arrow img {
    width: 20px; /* Taille du chevron */
    height: 20px;
}

.nav-tooltip {
    position: absolute;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.nav-tooltip img {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

.nav-tooltip p {
    margin: 0;
    font-size: 14px;
}

div#productnavigation {
    display: flex;
    justify-content: space-between
}

#productnavigation {
    position: relative;													 
    display: inline-block;
    top: 300px
}

#productnavigation-prev,
#productnavigation-next {
    pointer-events: auto; /* Permet de cliquer sur les flèches */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#productnavigation-prev {
    left: -60px; /* Place la flèche à gauche de l’image */
}

#productnavigation-next {
    right: -60px; /* Place la flèche à droite de l’image */
}



.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.material-icons {
    font-size: 32px;
}

@media (max-width: 768px) { 
    .nav-tooltip {
        display: none !important;
    }
}

