/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 24 2026 | 11:57:02 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Positionnement des flèches sur la galerie WooCommerce */
.woocommerce-product-gallery {
    position: relative;
}

/* Style commun pour les deux flèches */
.woocommerce-product-gallery .flex-direction-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #333333 !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 0; /* Cache le texte original "Next" / "Prev" */
}

/* Effet au survol */
.woocommerce-product-gallery .flex-direction-nav a:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

/* Position de la flèche Gauche (Précédent) */
.woocommerce-product-gallery .flex-direction-nav a.flex-prev {
    left: 15px;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
    content: "‹"; /* Icône de flèche gauche */
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 36px;
}

/* Position de la flèche Droite (Suivant) */
.woocommerce-product-gallery .flex-direction-nav a.flex-next {
    right: 15px;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
    content: "›"; /* Icône de flèche droite */
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 36px;
}

