 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        /* ===== UTILITAIRES ===== */
        .container-custom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 12px;
        }

        @media (min-width: 768px) {
            .container-custom {
                padding: 0 20px;
            }
        }
 /* ===== HERO CAROUSEL ===== */
        .hero-carousel {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin: 12px 0 20px;
        }

        .carousel-item {
            position: relative;
            height: 180px;
        }

        @media (min-width: 576px) {
            .carousel-item {
                height: 220px;
            }
        }

        @media (min-width: 768px) {
            .carousel-item {
                height: 300px;
            }
        }

        @media (min-width: 992px) {
            .carousel-item {
                height: 380px;
            }
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-item img.loaded {
            opacity: 1;
        }

        .carousel-caption {
            background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
            border-radius: 12px;
            left: 0;
            right: auto;
            bottom: 0;
            top: 0;
            width: 70%;
            padding: 20px 15px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 576px) {
            .carousel-caption {
                width: 60%;
                padding: 30px 20px;
            }
        }

        @media (min-width: 768px) {
            .carousel-caption {
                width: 50%;
                padding: 40px 30px;
            }
        }

        .carousel-caption h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
            color: white;
        }

        @media (min-width: 576px) {
            .carousel-caption h3 {
                font-size: 22px;
                margin-bottom: 8px;
            }
        }

        @media (min-width: 768px) {
            .carousel-caption h3 {
                font-size: 28px;
                margin-bottom: 12px;
            }
        }

        @media (min-width: 992px) {
            .carousel-caption h3 {
                font-size: 36px;
                margin-bottom: 16px;
            }
        }

        .carousel-caption p {
            font-size: 12px;
            margin-bottom: 12px;
            opacity: 0.9;
            color: white;
            display: none;
        }

        @media (min-width: 576px) {
            .carousel-caption p {
                display: block;
                font-size: 14px;
            }
        }

        @media (min-width: 768px) {
            .carousel-caption p {
                font-size: 16px;
                margin-bottom: 20px;
            }
        }

        .carousel-caption .btn {
            background: var(--primary);
            border: none;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            width: fit-content;
            font-size: 12px;
        }

        @media (min-width: 576px) {
            .carousel-caption .btn {
                padding: 8px 24px;
                font-size: 14px;
            }
        }

        @media (min-width: 768px) {
            .carousel-caption .btn {
                padding: 10px 30px;
                font-size: 16px;
            }
        }

        .carousel-indicators {
            margin-bottom: 10px;
        }

        .carousel-indicators button {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin: 0 4px;
        }

        /* ===== SECTION VENTE FLASH ===== */
        .flash-sale {
            background: linear-gradient(135deg, #ff6b00, #ff3d00);
            border-radius: 16px;
            padding: 16px;
            margin: 20px 0;
            color: white;
            box-shadow: var(--shadow-md);
        }

        .flash-sale-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 12px;
        }

        .flash-sale-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
        }

        .flash-sale-title i {
            font-size: 24px;
            animation: pulse 2s infinite;
        }

        .flash-timer {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 50px;
            backdrop-filter: blur(4px);
        }

        .timer-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 40px;
        }

        .timer-number {
            font-size: 20px;
            font-weight: 700;
            line-height: 1;
        }

        .timer-label {
            font-size: 10px;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .timer-separator {
            font-size: 20px;
            font-weight: 700;
        }

        .flash-products {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 8px 4px 12px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .flash-products::-webkit-scrollbar {
            display: none;
        }

        .flash-product-card {
            flex: 0 0 auto;
            width: 110px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        @media (min-width: 480px) {
            .flash-product-card {
                width: 130px;
            }
        }

        .flash-product-image {
            height: 100px;
            overflow: hidden;
            position: relative;
            background-color: var(--skeleton-bg);
        }

        .flash-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .flash-product-image img.loaded {
            opacity: 1;
        }

        .flash-product-badge {
            position: absolute;
            top: 6px;
            left: 6px;
            background: var(--primary);
            color: white;
            padding: 2px 6px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            z-index: 3;
        }

        .flash-product-info {
            padding: 8px;
        }

        .flash-product-name {
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 30px;
            color: var(--dark);
        }

        .flash-product-price {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
        }

        .flash-product-old-price {
            font-size: 10px;
            color: var(--secondary);
            text-decoration: line-through;
            margin-left: 4px;
        }

        /* ===== SECTION GIFS ===== */
        .gifs-section {
            margin: 30px 0;
        }

        .gifs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        @media (min-width: 576px) {
            .gifs-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
        }

        @media (min-width: 992px) {
            .gifs-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
        }

        .gif-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            aspect-ratio: 1/1;
            transition: var(--transition);
            background-color: var(--skeleton-bg);
            position: relative;
        }

        .gif-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .gif-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gif-card img.loaded {
            opacity: 1;
        }