/* FORCE RESET WP */
body, html { margin: 0 !important; padding: 0 !important; }

/* REVEAL SYSTEM - FORCE DISPLAY */
body .reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); 
    visibility: visible !important;
}

body .reveal.active { 
    opacity: 1 !important; 
    transform: translateY(0) !important; 
}

/* FIX HERO VISIBILITY */
body header.reveal, 
body .section-hero { 
    opacity: 1 !important; 
    transform: none !important; 
}

/* FIX DES CLASSES TAILWIND JIT (Si non reconnues) */
body .max-w-\[1600px\] { max-width: 1600px !important; }
body .max-w-\[1400px\] { max-width: 1400px !important; }
body .max-w-\[1000px\] { max-width: 1000px !important; }

/* FIX NAVIGATION & TOPBAR */
body nav.sticky {
    top: 0;
    position: sticky;
    z-index: 1000;
}

/* FIX IMAGES SHOP */
body #main-product-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px;
    background-color: #f9f8f6; /* Placeholder si l'image met du temps */
}

/* FIX FAQ */
body .faq-content {
    display: block !important; /* On laisse le JS gérer le max-height */
    height: auto;
}
