/*
 Theme Name:   Astra Child
 Description:  ThÃ¨me enfant pour ma boutique WooCommerce
 Author:Steph
 Template:     astra
 Version:      1.0.0
*/

/* --- TES CODES CSS CI-DESSOUS --- */

/* Code pour les images WooCommerce */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #f9f9f9;
}

/* Code pour aligner les boutons */
.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.woocommerce ul.products li.product .button {
    margin-top: auto;
}

/* Mention Paiement sÃ©curisÃ© */
.woocommerce-checkout #payment ul.payment_methods::after {
    content: "ðŸ”’ Paiement sÃ©curisÃ©";
    display: block;
    font-size: 15px;
    color: #27ae60;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #f8fcf9;
}

/* Masquer la notice de zone de livraison */
.woocommerce-info {
    display: none !important;
}


.checkout-coupon-custom {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px dashed #ccc;
    text-align: center;
    margin-top: 10px;
}

.checkout-coupon-custom p {
    margin-bottom: 10px;
    font-weight: bold;
}

/* Pour supprimer le bouton "Continue Shopping" qui prend trop de place */
.woocommerce-info a.button.continue-shopping {
    display: none;
}
/* Moderniser le conteneur de paiement Stripe */
#add_payment_method #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods {
    border: none !important;
    background-color: #ffffff !important;
}

/* Styliser l'encadré de la carte bancaire */
.woocommerce-checkout #payment div.payment_box.payment_method_stripe {
    background-color: #fcfcfc !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important; /* Arrondis plus doux */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important; /* Ombre légère pour la profondeur */
    padding: 25px !important;
    margin-top: 15px !important;
}

/* Espacement entre les libellés et les champs */
.woocommerce-checkout #payment div.payment_box fieldset label {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #444 !important;
    margin-bottom: 8px !important;
    display: block;
}

/* Améliorer l'apparence des champs de saisie Stripe */
.wc-stripe-elements-field, 
.wc-stripe-iban-element-field {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    border-radius: 6px !important;
    padding: 12px !important;
    transition: border-color 0.3s ease;
}

/* Effet au survol/focus des champs */
.wc-stripe-elements-field--focus {
    border-color: #6772e5 !important; /* Le violet emblématique de Stripe */
    box-shadow: 0 0 0 2px rgba(103, 114, 229, 0.1) !important;
}
