 /* ===== SECTION PRODUITS SPONSORISÉS ===== */
        .sponsored-section {
            margin: 30px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            position: relative;
            padding-left: 12px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary);
            border-radius: 4px;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 22px;
                padding-left: 16px;
            }
        }

        .view-all {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @media (min-width: 768px) {
            .view-all {
                font-size: 14px;
            }
        }

        .sponsored-carousel {
            position: relative;
        }

        .sponsored-wrapper {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 4px 4px 16px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .sponsored-wrapper::-webkit-scrollbar {
            display: none;
        }

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

        @media (min-width: 480px) {
            .sponsored-card {
                width: 160px;
            }
        }

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

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

        .sponsored-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            opacity: 0;
        }

        .sponsored-image img.loaded {
            opacity: 1;
        }

        .sponsored-card:hover .sponsored-image img {
            transform: scale(1.05);
        }

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

        .sponsored-info {
            padding: 10px;
        }

        .sponsored-name {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 34px;
            line-height: 1.3;
        }

        .sponsored-price {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .sponsored-current {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
        }

        .sponsored-old {
            font-size: 11px;
            color: var(--secondary);
            text-decoration: line-through;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: var(--white);
            border: none;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            display: none;
        }

        @media (min-width: 768px) {
            .carousel-arrow {
                display: flex;
            }
        }

        .carousel-arrow:hover {
            background: var(--primary);
            color: var(--white);
        }

        .carousel-arrow.left {
            left: -16px;
        }

        .carousel-arrow.right {
            right: -16px;
        }