/*
Theme Name:   Astra-Child
Theme URI:    https://wpastra.com/
Description:  Thème enfant pour Nom de ton thème
Author:       JANATI DIRISSI Mohammed
Template:     astra
Version:      1.0.0
*/




/* Ajoute de l'espace entre chaque catégorie WooCommerce */
ul.products li.product-category {
    margin: 15px;              /* espace autour de chaque bloc */
    padding: 10px;             /* espace interne */
    box-sizing: border-box;
}

/* Image centrée exactement */
ul.products li.product-category img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
            }

/* Optionnel : centrer le texte des catégories */
ul.products li.product-category h2 {
    text-align: center;
}


/* Optionnel : effet hover (encadré au survol) */
ul.products li.product-category:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

ul.products li.product-category:hover h2 {
    color: #0073e6; /* remplace par la couleur que tu veux */
    transition: color 0.3s ease;
}




