
        :root {
             --color-30: #eef6f1;
            --color-50: #E8FDF0;
            --color-100: #BEF8D5;
            --color-200: #95F4B9;
            --color-300: #7BF1A8;
            --color-400: #42EB83;
            --color-500: #18E767;
            --color-600: #14BD55;
            --color-700: #109442;
            --color-800: #0B6A30;
            --color-900: #07411D;
            --color-950: #02170A;
            --whatsapp: #25D366;
            --danger: #a70314;
        }
        body {
             background: var(--color-30);
            font-family: 'Poppins', sans-serif;
           
            color: #333;
            overflow-x: hidden;
        }
        .container {
            padding-left: 30px;
            padding-right: 30px;
            
        }
        /* Barre des catégories sous la navbar */
        .categories-bar {
            background: white;
            border-bottom: 2px solid var(--color-200);
            padding: 5px 0;
            white-space: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }
        .categories-bar .category-link {
            display: inline-block;
            padding: 8px 10px;
            margin: 0 5px;
            background: var(--color-50);
            border-radius: 40px;
            color: var(--color-800);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        .categories-bar .category-link:hover {
            background: var(--color-600);
            color: white;
            border-color: var(--color-700);
        }
        .categories-bar .category-link i {
            margin-right: 6px;
            color: var(--color-600);
        }
        .categories-bar .category-link:hover i {
            color: white;
        }
        /* Image cliquable + zoom */
        .product-image-link {
            display: block;
            overflow: hidden;
            border-radius: 16px;
        }
        .product-image-link img {
            transition: transform 0.5s;
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        .product-image-link:hover img {
            transform: scale(1.1);
        }
        /* CARTES HORIZONTALES – TRÈS GRANDES IMAGES */
        .product-card-horizontal {
            border: none;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            background: white;
            height: 100%;
        }
        .product-card-horizontal:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(7, 65, 29, 0.1);
        }
        .product-card-horizontal .row {
            transition: background 0.25s;
            border-radius: 24px;
            height: 100%;
        }
        .product-card-horizontal:hover .row {
            background-color: var(--color-50);
        }
        .product-card-horizontal .col-6 img {
            max-height: 200px; /* ENCORE PLUS GRAND */
            padding: 15px;
            width: 100%;
        }
        /* CARTES VERTICALES – IMAGES 120px */
        .product-card-vertical {
            border: none;
            border-bottom: 1px solid var(--color-100);
            padding: 18px 0;
            background: transparent;
            transition: all 0.2s;
        }
        .product-card-vertical:last-child {
            border-bottom: none;
        }
        .product-card-vertical:hover {
            background-color: var(--color-50);
            border-radius: 16px;
            padding-left: 15px;
        }
        .product-card-vertical img {
            max-height: 120px;
            width: auto;
            object-fit: contain;
            transition: transform 0.5s;
        }
        .product-card-vertical:hover img {
            transform: scale(1.1);
        }
        /* Boutons */
        .btn-teranga {
            background-color: var(--color-600);
            color: white;
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
        }
        .btn-teranga:hover {
            background-color: var(--color-700);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(20, 189, 85, 0.3);
            color: white;
        }
        .btn-teranga-sm {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
        .btn-whatsapp {
            background-color: var(--whatsapp);
            color: white;
            border-radius: 50px;
            padding: 8px 16px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
        }
        .btn-whatsapp:hover {
            background-color: #20b859;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
            color: white;
        }
        .btn-whatsapp-sm {
            padding: 6px 14px;
            font-size: 0.85rem;
        }
        .btn-added {
            background-color: var(--danger) !important;
            color: white !important;
        }
        /* Bannières pub */
        .pub-banner {
            background: linear-gradient(145deg, var(--color-900), var(--color-700));
            color: white;
            border-radius: 20px;
            padding: 25px 20px;
            transition: all 0.3s;
        }
        .pub-banner:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .pub-banner-light {
            background: linear-gradient(145deg, var(--color-50), white);
            border: 2px solid var(--color-200);
            color: var(--color-900);
        }
        /* Scroll Premium */
        .premium-scroll {
            background: linear-gradient(145deg, var(--color-800), var(--color-900));
            color: white;
            border-radius: 30px;
            padding: 30px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            box-shadow: 0 15px 35px rgba(7,65,29,0.3);
        }
        .premium-scroll img {
            max-height: 200px;
            border-radius: 20px;
            border: 4px solid var(--color-200);
            transition: transform 0.5s;
        }
        .premium-scroll img:hover {
            transform: scale(1.05);
        }
        /* Sections marques */
        .brand-card {
            background: white;
            border-radius: 24px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.02);
            border: 1px solid var(--color-100);
        }
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0,0,0,0.05);
            border-color: var(--color-400);
        }
        .brand-card img {
            max-height: 160px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        .brand-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-800);
        }
        .brand-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
        }
        .brand-btn {
            background-color: var(--color-600);
            color: white;
            border-radius: 40px;
            padding: 10px 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }
        .brand-btn:hover {
            background-color: var(--color-700);
            color: white;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .container-fluid {
                padding-left: 20px;
                padding-right: 20px;
            }
            .col-lg-9, .col-lg-3 {
                width: 100%;
            }
            .premium-scroll {
                flex-direction: column;
                text-align: center;
            }
            .premium-scroll img {
                margin-bottom: 20px;
                max-height: 180px;
            }
            .product-card-horizontal .col-6 img {
                max-height: 160px;
            }
        }
        @media (max-width: 576px) {
            .btn-teranga, .btn-whatsapp {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
            h1 {
                font-size: 2rem !important;
            }
            .brand-card img {
                max-height: 120px;
            }
        }
        /* Grille pour les produits premium */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.premium-scroll {
    background: linear-gradient(145deg, var(--color-800), var(--color-900));
    color: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(7,65,29,0.2);
    transition: 0.3s;
}
.premium-scroll:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7,65,29,0.4);
}
.premium-scroll img {
    border-radius: 12px;
    border: 2px solid var(--color-200);
    max-height: 100px;
    object-fit: contain;
    background: white;
}
/* Responsive */
@media (max-width: 992px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
}
.product-card-horizontal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    background: white;
    height: 100%;
}

.product-card-horizontal .row {
    height: 100%;
}

.product-card-horizontal .product-image-link {
    height: 100%;
    min-height: 140px; /* assure une hauteur minimale */
}

.product-card-horizontal img {
    transition: transform 0.5s;
}

.product-card-horizontal:hover img {
    transform: scale(1.05);
}
   
    