/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 21 2026 | 20:23:56 */
/* 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 */
/* Positionnement des flèches sur la galerie WooCommerce */
.woocommerce-product-gallery {
    position: relative;
}

/* SÉCURITÉ FIREFOX : Forcer l'affichage du conteneur natif de WooCommerce */
.woocommerce-product-gallery .flex-direction-nav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Style commun pour les deux flèches */
.woocommerce-product-gallery .flex-direction-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999 !important; /* Augmenté pour Firefox */
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #333333 !important;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    
    /* CORRECTION FIREFOX pour cacher le texte proprement sans font-size: 0 */
    text-indent: -9999px;
    overflow: hidden;
}

/* 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: 40px;
    /* CORRECTION FIREFOX : Annule le text-indent pour que l'icône reste visible */
    text-indent: 0;
    float: left;
    width: 100%;
}

/* 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: 40px;
    /* CORRECTION FIREFOX : Annule le text-indent pour que l'icône reste visible */
    text-indent: 0;
    float: left;
    width: 100%;
}