
        /* --- VARIABLES & CONFIGURATION --- */
        :root {
            --primary: #FF6600; 
            --primary-hover: #e05a00;
            --white: #ffffff;
            --bg-light: #f4f6f8;
            --text-dark: #222222;
            --text-muted: #666666;
            --border-color: #dddddd;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- LOADER (Écran de chargement) --- */
        #loader-wrapper {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background-color: var(--primary);
            display: flex; flex-direction: column;
            justify-content: center; align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s;
        }
        .loader-brand {
            font-size: 3.5rem; font-weight: 800; color: var(--white);
            letter-spacing: 2px; opacity: 0;
            animation: fadeInDown 1s forwards;
        }
        .loader-slogan {
            font-size: 1.2rem; color: var(--white); margin-top: 15px;
            font-weight: 300; opacity: 0;
            animation: fadeInUp 1s 0.5s forwards;
        }
        .spinner {
            margin-top: 30px; width: 50px; height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-top: 5px solid var(--white); border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky; top: 0; z-index: 100;
        }
        .nav-container {
            max-width: 1200px; margin: 0 auto; padding: 15px 20px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo {
            font-size: 1.8rem; font-weight: 900; color: var(--primary);
            text-decoration: none; letter-spacing: 1px;
        }
        .nav-links {
            display: flex; gap: 30px; list-style: none; align-items: center;
        }
        .nav-links a {
            text-decoration: none; color: var(--text-dark); font-weight: 600;
            transition: var(--transition); font-size: 1rem;
        }
        .nav-links a:hover { color: var(--primary); }
        
        .cart-icon-btn {
            background: none; border: none; font-size: 1.5rem;
            color: var(--text-dark); cursor: pointer; position: relative;
            transition: var(--transition);
        }
        .cart-icon-btn:hover { color: var(--primary); }
        .cart-counter {
            position: absolute; top: -8px; right: -10px;
            background-color: var(--primary); color: var(--white);
            font-size: 0.8rem; font-weight: bold; width: 20px; height: 20px;
            border-radius: 50%; display: flex; justify-content: center; align-items: center;
        }

        /* Menu Burger Mobile */
        .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; border: none; background: none; }

        /* --- HERO BANNER --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: var(--white); padding: 80px 20px; text-align: center;
        }
        .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
        .hero p { font-size: 1.3rem; font-weight: 300; max-width: 600px; margin: 0 auto; }

        /* --- STRUCTURE GLOBALE --- */
        .main-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; flex-grow: 1; width: 100%; }
        .section-title {
            font-size: 2.2rem; color: var(--text-dark); margin-bottom: 20px;
            position: relative; padding-bottom: 10px; text-align: center;
        }
        .section-title::after {
            content: ''; position: absolute; bottom: 0; left: 50%;
            transform: translateX(-50%); width: 60px; height: 4px;
            background-color: var(--primary); border-radius: 2px;
        }

        /* --- FILTRES PHP --- */
        .filter-container {
            display: flex; justify-content: center; gap: 15px;
            margin-bottom: 40px; flex-wrap: wrap;
        }
        .filter-btn {
            text-decoration: none; padding: 10px 25px; border-radius: 50px;
            background-color: var(--white); color: var(--text-dark);
            font-weight: 600; box-shadow: var(--shadow); transition: var(--transition);
            border: 2px solid transparent;
        }
        .filter-btn:hover { border-color: var(--primary); color: var(--primary); }
        .filter-btn.active {
            background-color: var(--primary); color: var(--white); box-shadow: 0 4px 15px rgba(255,102,0,0.3);
        }

        /* --- GRILLE PRODUITS --- */
        .products-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px;
        }
        .product-card {
            background-color: var(--white); border-radius: 12px; overflow: hidden;
            box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
            display: flex; flex-direction: column;
        }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
        .product-img-container { width: 100%; height: 260px; overflow: hidden; position: relative; }
        .product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .product-card:hover .product-img { transform: scale(1.08); }
        .badge-cat {
            position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.7);
            color: white; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
        }
        .product-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
        .product-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
        .product-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 15px; }

        /* --- BOUTONS --- */
        .btn {
            padding: 12px 20px; border-radius: 8px; border: none; font-weight: 700;
            cursor: pointer; transition: var(--transition); width: 100%;
            display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 1rem;
        }
        .btn-primary { background-color: var(--primary); color: var(--white); }
        .btn-primary:hover { background-color: var(--primary-hover); box-shadow: 0 4px 12px rgba(255,102,0,0.2); }

        /* --- SECTIONS : À PROPOS & CONTACT --- */
        .info-section {
            background-color: var(--white); border-radius: 16px; padding: 60px 40px;
            margin-top: 80px; box-shadow: var(--shadow);
        }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .text-box p { line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
        .form-control {
            width: 100%; padding: 12px 15px; border-radius: 8px;
            border: 1px solid var(--border-color); font-size: 1rem; outline: none;
            transition: var(--transition);
        }
        .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,102,0,0.1); }
        textarea.form-control { resize: vertical; height: 120px; }
        .alert-success { background-color: #d4edda; color: #155724; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }

        /* --- FOOTER --- */
        footer {
            background-color: #1a1a1a; color: #ffffff; padding: 60px 20px 30px; margin-top: auto;
        }
        .footer-grid {
            max-width: 1200px; margin: 0 auto; display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
            border-bottom: 1px solid #333; padding-bottom: 40px;
        }
        .footer-about p { color: #aaa; margin-top: 15px; line-height: 1.6; font-size: 0.95rem; }
        .footer-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #aaa; text-decoration: none; transition: var(--transition); }
        .footer-links a:hover { color: var(--white); padding-left: 5px; }
        .footer-socials { display: flex; gap: 15px; margin-top: 20px; }
        .footer-socials a {
            width: 40px; height: 40px; border-radius: 50%; background: #333;
            display: flex; justify-content: center; align-items: center;
            color: white; text-decoration: none; transition: var(--transition);
        }
        .footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }
        .footer-bottom { text-align: center; padding-top: 25px; color: #777; font-size: 0.9rem; }

        /* --- MODAL (DIALOGUE) --- */
        .modal {
            display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background-color: rgba(0, 0, 0, 0.6); z-index: 1000; justify-content: center; align-items: center; padding: 20px;
        }
        .modal-content {
            background-color: var(--white); border-radius: 16px; max-width: 850px; width: 100%;
            overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3); position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        .close-btn {
            position: absolute; top: 15px; right: 15px; background: var(--white); border: none;
            font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow);
            cursor: pointer; z-index: 10; color: var(--text-dark); transition: var(--transition);
        }
        .close-btn:hover { background: var(--primary); color: var(--white); }
        .modal-img { width: 100%; height: 100%; object-fit: cover; max-height: 500px; }
        .modal-details { padding: 40px 30px; display: flex; flex-direction: column; justify-content: space-between; }
        .modal-desc { color: var(--text-muted); margin: 20px 0; line-height: 1.7; font-size: 1rem; }

        /* --- DRAWER (PANIER LATÉRAL) --- */
        .cart-drawer {
            position: fixed; top: 0; right: -450px; width: 100%; max-width: 450px; height: 100vh;
            background-color: var(--white); box-shadow: -5px 0 25px rgba(0,0,0,0.15);
            z-index: 1050; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex; flex-direction: column;
        }
        .cart-drawer.open { right: 0; }
        .cart-header { padding: 25px; background-color: var(--primary); color: var(--white); display: flex; justify-content: space-between; align-items: center; }
        .cart-items-container { padding: 25px; flex-grow: 1; overflow-y: auto; }
        .cart-item { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 15px; }
        .cart-item-title { font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
        .cart-footer { padding: 25px; border-top: 1px solid var(--border-color); background-color: var(--bg-light); }
        .btn-whatsapp { background-color: #25D366; color: white; }
        .btn-whatsapp:hover { background-color: #20ba5c; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }

        /* --- ANIMATIONS --- */
        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes spin { to { transform: rotate(360deg); } }
        @keyframes modalFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

        /* --- RESPONSIVE DESIGN (Intégral) --- */
        @media (max-width: 992px) {
            .grid-2 { grid-template-columns: 1fr; gap: 30px; }
            .modal-content { grid-template-columns: 1fr; max-width: 90%; max-height: 90vh; overflow-y: auto; }
            .modal-img { height: 300px; }
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed; top: 70px; left: -100%; width: 100%; background: var(--white);
                flex-direction: column; padding: 30px 0; box-shadow: var(--shadow); transition: var(--transition);
            }
            .nav-links.active { left: 0; }
            .hero h1 { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            .info-section { padding: 40px 20px; }
        }
  