/*
Theme Name: Aratice
Description: Thème enfant du thème Flash
Author: AK Digital
Template: flash
Version: 1.0.0
*/

/* Ajoutez vos styles personnalisés ici */

body.admin-bar #headerdesktop{
    margin-top: 32px;
}

/* === Badge État produit sur page Single Product === */
.woocommerce-product-gallery {
    position: relative;
}

/* Limiter la hauteur des images produit */
.woocommerce-product-gallery__wrapper {
    max-height: 600px;
}

.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image img {
    max-height: 600px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.single-product-badge-state {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-product-badge-state-seconde-main {
    background-color: #DDEAFF;
    color: #236197;
}

.single-product-badge-state svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.single-image-product img {
    max-width: 100% !important;
    height: 400px !important;
    object-fit: contain !important;
    box-shadow: none !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .woocommerce-product-gallery__wrapper {
        max-height: 400px;
    }

    .woocommerce-product-gallery__image,
    .woocommerce-product-gallery__image img {
        max-height: 400px;
    }

    .single-product-badge-state {
        top: 8px;
        left: 8px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .single-product-badge-state svg {
        width: 14px;
        height: 14px;
    }
}