
         * { box-sizing: border-box; }
         
        html, body {
            font-family: "Inter", "Segoe UI", Arial, sans-serif;
            overflow-x: hidden !important;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
     
         
        ul.countdown { padding: 0; display: block; text-align: center; }
        ul.countdown li { margin-top: -15px; display: inline-block; }
        ul.countdown li span { font-size: 20px; line-height: 80px; color: #fff; }
        ul.countdown li.seperator { font-size: 14px; line-height: 80px; vertical-align: top; color: #fff; }
        ul.countdown li p { color: #fff; font-size: 10px; margin-top: -25px; }
        
        .zoom { transition: transform .2s; margin: 0 auto; }
        .zoom:hover { transform: scale(1.02); }
        
        .scrolling-wrapper { overflow-x: scroll; overflow-y: hidden; white-space: nowrap; -webkit-overflow-scrolling: touch; }
        .scrolling-wrapper::-webkit-scrollbar { display: none; }
        .scrolling-wrapper .card_scroll { display: inline-block; }
       
        /* Container des slides */
        .owl-carousel .owl-item {
            display: flex;
            justify-content: center;
        }
        
        .product-card {
          position: relative;
          display: flex;
          flex-direction: column;
          height: 100%;
          width: 220px;
          background-color: #ffffff;
          color: #111111;
          border-radius: 12px;
          overflow: hidden;
          transition: transform .2s ease, box-shadow .2s ease;
        }
        
        .product-card:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 22px rgba(0,0,0,.08);
        }
         
        .product-badge {
          position: absolute;
          top: 10px;
          left: 10px;
          z-index: 3;
          background-color: rgba(0,0,0,0.8);
          color: #ffffff;
          text-shadow: none;
          padding: 6px 10px;
          font-size: 11px;
          font-weight: 600;
          border-radius: 6px;
          text-transform: uppercase;
        }
        
        .product-card__image {
          height: 230px;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f9f9f9;
        }
        
        .product-card__image img {
          width: auto;
          height: auto;
          max-width: 180px;
          max-height: 200px;
          object-fit: contain;
        }

        .product-card__body {
          flex: 1;
          display: flex;
          flex-direction: column;
          padding: 12px;
          background-color: #ffffff;
          color: #111111;
        }
        
        .product-card__name {
          font-size: 14px;
          line-height: 1.35;
          margin-bottom: 6px;
          min-height: 40px;
          color: #111111;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
        }
        
        .product-card__name a {
          color: inherit;
          text-decoration: none;
        }
        
        .product-card__price {
          font-size: 15px;
          font-weight: 700;
          color: #1a7f00;
          margin-bottom: 8px;
          min-height: 24px;
          text-align: center; 
        }

        .product-card__footer {
          margin-top: auto;
          text-align: center;
        }
        
        .buy-zone {
          text-align: center;
          padding-top: 10px;
        }
        
        .buy-zone .btn {
          font-size: 12px;
          padding: 8px 14px;
          border-radius: 20px;
        }
        
        .flash-deal {
          background: #00af9e;
          color: #ffffff;
          padding: 8px 6px;
          border-radius: 6px;
          font-size: 11px;
        }
        
        .flash-deal .flash-title {
          text-align: center;
          margin-bottom: 4px;
          font-weight: 600;
        }
        
        .flash-deal .countdown {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 6px;
          padding: 0;
          margin: 0;
          list-style: none;
        }
        
        .flash-deal .countdown span { font-weight: bold; }
        .flash-deal .countdown p { font-size: 10px; margin: 0; }
        
        @media (max-width: 1024px) {
          .product-card { width: 180px; }
          .product-card__image { height: 200px; }
          .product-card__image img { max-width: 160px; max-height: 180px; }
          .product-card__name { font-size: 12px; min-height: 36px; }
          .product-card__price { font-size: 14px; min-height: 24px; }
        }
        
        @media (max-width: 768px) {
          .product-card { width: 140px; }
          .product-card__image { height: 180px; }
          .product-card__image img { max-width: 140px; max-height: 160px; }
        }
        
        @media (max-width: 480px) {
          .product-card { width: 120px; }
          .product-card__image { height: 160px; }
          .product-card__image img { max-width: 120px; max-height: 140px; }
          .product-card__name { font-size: 13px; min-height: 32px; }
          .product-card__price { font-size: 13px; min-height: 20px; }
        }
        
        .carousel-item {
            position: relative;
            height: 67vh;
            overflow: hidden;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .carousel-caption {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            pointer-events: none;
        }
        
        .caption-content {
            pointer-events: auto;
            padding: 1rem;
            max-width: 90vw;
        }
        
        .caption-content h2 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 4vw, 3rem);
        }
        
        .caption-content p {
            color: #fff;
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 2vw, 1.5rem);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .caption-content a {
            display: inline-block;
            color: #fff;
            border: 1px solid #fff;
            padding: 0.5rem 1.5rem;
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .caption-content a:hover {
            background-color: #fff;
            color: #000;
        }
        
        .carousel-caption .btn {
            font-size: 1rem;
            padding: 0.5rem 1.5rem;
        }
      
        .product-offer {
            height: 300px;
            overflow: hidden;
        }
        
        .product-offer img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        @media (max-width: 576px) {
            .carousel-item { height: 40vh; }
            .caption-content h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
            .caption-content p { font-size: clamp(0.8rem, 3vw, 1.2rem); }
            .caption-content a { font-size: 0.9rem; padding: 0.4rem 1rem; }
            .carousel-item img { object-fit: contain; }
        }
        
        @media (min-width: 577px) and (max-width: 768px) {
            .carousel-item { height: 50vh; }
            .caption-content h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
            .caption-content p { font-size: clamp(0.9rem, 2.5vw, 1.4rem); }
            .caption-content a { font-size: 1rem; padding: 0.5rem 1.2rem; }
        }
        
        @media (max-width: 1199px) and (min-width: 768px) {
            .product-offer { height: 80px; }
        }
        
        @media (max-width: 767px) {
            .product-offer { height: 60px; }
            .product-card .product-sticker { width: 60px !important; top: 1px; right: 4px; }
        } 
        
        .product-card .product-sticker {
              position: absolute;
              top: -2px;
              right: -3px;
              width: 80px !important;
              max-width: none !important;
              height: auto !important;
              object-fit: cover;
              z-index: 100;
              pointer-events: none;
            }

    /* SKELETON */
    .sliderMobile-skeleton { display: flex; gap: 12px; padding: 10px; }
    .skeleton-card { width: 160px; flex-shrink: 0; }
    .skeleton-img { width: 100%; height: 120px; border-radius: 8px; background: #e0e0e0; margin-bottom: 8px; }
    .skeleton-line { height: 12px; border-radius: 4px; background: #e0e0e0; margin-bottom: 6px; }
    .skeleton-line.small { width: 60%; }
    .shimmer { position: relative; overflow: hidden; }
    .shimmer::after {
        content: "";
        position: absolute;
        top: 0;
        left: -150px;
        width: 150px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
        animation: shimmer 1.3s infinite;
    }
    @keyframes shimmer { 100% { left: 100%; } }
    

      
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px 15px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .feature-item i { font-size: 26px; min-width: 30px; }
    .feature-item .title { font-size: 12px; font-weight: 600; color: #222; }
    .feature-item .subtitle { font-size: 10px; color: #777; }
    
    

        /* =========================================================
           STYLE ACTUEL
        ========================================================= */
        
        .brand-vault-item{
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .brand-vault-wrapper{
            position: relative;
            width: 100%;
            height: 130px;
        }
        
        .brand-vault-wrapper img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .brand-vault-overlay{
            position: absolute;
        
            inset: 0;
        
            background: rgba(0,0,0,0.35);
        
            display: flex;
        
            align-items: center;
        
            justify-content: center;
        
            transition: 0.3s ease;
        }
        
        .brand-vault-name{
            color: #fff;
        
            font-size: 14px;
        
            font-weight: 700;
        
            letter-spacing: 1px;
        
            text-transform: uppercase;
        
            text-align: center;
        
            padding: 10px 15px;
        
            background: rgba(0,0,0,0.25);
        
            border-radius: 10px;
        
            backdrop-filter: blur(4px);
        
            transition: 0.3s ease;
        }
        
        .brand-vault-item:hover .brand-vault-overlay{
            background: rgba(0,0,0,0.55);
        }
        
        .brand-vault-item:hover .brand-vault-name{
            transform: scale(1.05);
        
            background: rgba(0,0,0,0.4);
        }
        
        /* =========================================================
           SLIDER
        ========================================================= */
        
        .promo-slider-card{
            position: relative;
            overflow: hidden;           
         }
        
        /* GRID */
        
        .brands-slider {
            display: grid !important;
            grid-auto-flow: column;
            grid-template-rows: repeat(2, 1fr);
            gap: 12px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; 
            align-items: center; /* centre les items verticalement dans le slider */
  
        }
        
        /* SCROLLBAR */
        
        .brands-slider::-webkit-scrollbar{
            display: none;
        }
        
        /* ITEMS */
        
        .brands-slider .brand-vault-item{
            width: 180px;
             flex-shrink: 0;
        }
        
        /* FLECHES */
        
        .promo-arrow{
            position: absolute;
        
            top: 45%;
        
            transform: translateY(-50%);
        
            z-index: 50;
        
            width: 42px;
        
            height: 42px;
        
            border: none;
        
            border-radius: 50%;
        
            background: rgba(255,255,255,0.92);
        
            box-shadow:
                0 4px 12px rgba(0,0,0,0.15);
        
            cursor: pointer;
        
            font-size: 20px;
        
            transition: 0.25s;
        }
        
        /* HOVER */
        
        .promo-arrow:hover{
            transform:
                translateY(-50%)
                scale(1.08);
        }
        
        /* LEFT */
        
        .promo-arrow.left{
            left: 10px;
        }
        
        /* RIGHT */
        
        .promo-arrow.right{
            right: 10px;
        }
        
        /* =========================================================
           RESPONSIVE
        ========================================================= */
        
        @media(max-width:768px){
        
            .brands-slider .brand-vault-item{
                width: 130px;
            }
        
            .brand-vault-wrapper{
                height: 130px;
            }
        
        }
    
    
    
        .hero {
          position: relative;
          z-index: 1;
        }
        
        .hero-slider {
            width: 100%;
            height: 35%;
            overflow: hidden;
            position: relative;
        }
        
        .hero-track {
            display: flex;
            height: 100%;
            transition: transform 0.6s ease;
            will-change: transform;
        }
        
        .hero-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #131921;
        }
        
        .hero-slide picture {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .hero-btn {
            position: absolute;
            top: 20%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.4);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: 0.2s ease;
        }
        
        .hero-btn:hover { background: rgba(0,0,0,0.7); }
        .hero-btn.left { left: 12px; }
        .hero-btn.right { right: 12px; }
        .hero-btn i { font-size: 18px; }
     
        
        /* =========================================================
           WRAPPER PRINCIPAL
        ========================================================= */
        
        .promo-wrapper{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            align-items: start;
        }
        
        @media (max-width: 768px){
        
            .promo-wrapper{
                grid-template-columns: 1fr;
            }
        
        }
        
    /* =========================================================
       PAGE CONTAINER
    ========================================================= */
    
    .page-container{
        position: relative;
        z-index: 2;
        background: transparent;
        margin-top: -22%;
        width: 100%;
        padding: 30px 20px;
    }
    
    /* =========================================================
        CARD
    ========================================================= */
    .promo-card-top {
        position: relative;
        width: 100%; 
        top: 0;
        background: #fff;
        padding: 0 15px 25px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-radius: 0;
        overflow: hidden;
        height: 385px;
    }
     .promo-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        background: #fff;
        padding: 15px 15px 25px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        border-radius: 0;
        overflow: hidden;
        height: 400px;
    }
    
    /* =========================================================
       TOP BAND
    ========================================================= */
    
    .promo-card-top::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(
            90deg,
            #ff6a00,
            #ffb347,
            #ff6a00
        );
        z-index: 5;
    }
    .promo-card::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(
            90deg,
            #ff6a00,
            #ffb347,
            #ff6a00
        );
        z-index: 5;
    }
       
        
    .brand-bloc {
        height: 380px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
    }
     
    
    
    /* Large desktop */
    @media (min-width: 1440px) {
        .brand-bloc { height: 400px; }
    }
    
    /* Desktop */
    @media (max-width: 1200px) {
        .brand-bloc { height: 400px; }
    }
    
    /* Tablette paysage */
    @media (max-width: 1024px) {
        .brand-bloc { height: 400px; }
    }
    
    /* Tablette portrait */
    @media (max-width: 768px) {
        .brand-bloc { height: auto; }
    }
    
    /* Mobile */
    @media (max-width: 480px) {
        .brand-bloc { height: auto; }
    }
    
    /* Très petit mobile */
    @media (max-width: 360px) {
        .brand-bloc { height: auto; }
    }
    
    .productBrand {
        height: 400px;
        overflow: hidden; 
    }
     
    @media (max-width: 768px)  { .productBrand { height: 370px; } }
    @media (max-width: 480px)  { .productBrand { height: 360px; } }
    @media (max-width: 360px)  { .productBrand { height: 400px; } }
    
    
    /* =========================================================
       TITRE
    ========================================================= */
    .promo-title{
        font-size: 18px;
        color: #111111; /* noir profond */
        font-weight: 700;
        margin-bottom: 15px;
        margin-top: 15px ;
    }
    
    /* =========================================================
       GRID NORMAL
    ========================================================= */
    .promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
        width: 100%;
    }
           
    
    /* =========================================================
       GRID AUTRE
    ========================================================= */
    
    .promo-grid-other{
        display: grid;
         grid-template-columns:
            repeat(auto-fill, minmax(120px, 1fr));
    
        gap: 12px;
    
        width: 100%;
    }
    
    /* =======================================================
       SLIDER GRID
    ========================================================= */
    .promo-grid-slider{
        display: grid !important;
        grid-auto-flow: column;
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 0;
        grid-auto-columns: 120px;   /* ← doit matcher width */
    }
    
    .promo-grid-slider::-webkit-scrollbar{
        display: none;
    }
    
    .promo-grid-slider::-webkit-scrollbar{
        display: none;
    }
    
    /* =======================================================
       SLIDER GRID
    ========================================================= */
    .promo-grid-product{
        display: grid !important;
        grid-auto-flow: column;
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 0;
        grid-auto-columns: 125px;   /* ← doit matcher width */
    }
    
    .promo-grid-product::-webkit-scrollbar{
        display: none;
    }
    
    .promo-grid-product::-webkit-scrollbar{
        display: none;
    }
    
    /* =======================================================
       ITEMS
    ========================================================= */
    
    .promo-item{
        padding: 0 0 10px 0;
        border-radius: 8px;
        transition: all 0.25s ease;
        height: 100%;
        display: flex;
        flex-direction: column; 
    }
    
    
    /* =========================================================
       ITEMS SLIDER
    ========================================================= */
    
    .promo-slide-item{
        flex: 0 0 auto;
        width: 120px;
        scroll-snap-align: start;
    }
    
    /* =========================================================
       LINKS
    ========================================================= */
    
    .promo-item a{
        display: block;
    }
    
    /* =========================================================
       IMAGES
    ========================================================= */
    
    .promo-item img{
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        background: #f2f2f2;
        aspect-ratio: 1 / 1;
        transition: 0.25s;
    }
    
    /* IMAGE SLIDER */
    
    .promo-slide-item img{
        width: 100%;
        height: 100px;
    }
    
    /* HOVER */
    
    .promo-item:hover img{
        transform: scale(1.05);
    }
    
    /* =========================================================
       TITRE PRODUIT
    ========================================================= */
    
    .promo-item .title{
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.3;
        color: #0f1111;
        display: block;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-decoration: none;
    }
    
    /* =========================================================
       PARAGRAPHE
    ========================================================= */
    
    .promo-item p{
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.3;
        color: #333;
        width: 100%;
        min-width: 0;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* =========================================================
       SEE MORE
    ========================================================= */
    
    .see-more {
        display: block;
        font-size: 13px;
        color: #0a58ca;
        font-weight: 600;
        text-decoration: none;
        position: absolute;
        bottom: 10px;
        right: 15px;
    }
    
    .see-more:hover{
        color: #084298;
        text-decoration: underline;
    }
    
    /* =========================================================
       FLECHES
    ========================================================= */
    
    .promo-arrow{
        position: absolute;
    
        top: 45%;
    
        transform: translateY(-50%);
    
        width: 42px;
        height: 42px;
    
        border: none;
    
        border-radius: 50%;
    
        background: #fff;
    
        box-shadow:
            0 4px 12px rgba(0,0,0,0.15);
    
        cursor: pointer;
    
        z-index: 50;
    
        font-size: 20px;
    
        transition: 0.25s;
    }
    
    /* HOVER */
    
    .promo-arrow:hover{
        transform:
            translateY(-50%)
            scale(1.08);
    }
    
    /* LEFT */
    
    .promo-arrow.left{
        left: 5px;
    }
    
    /* RIGHT */
    
    .promo-arrow.right{
        right: 5px;
    }
    
    /* =========================================================
       RESPONSIVE
    ========================================================= */
    /* =========================================================
       LARGE DESKTOP
    ========================================================= */
    @media (min-width: 1440px) {
    
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
        }
    }
    
    /* =========================================================
       DESKTOP
    ========================================================= */
    @media (max-width: 1200px) {
    
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        }
    }
    
    /* =========================================================
       TABLETTE
    ========================================================= */
    @media (max-width: 992px) {
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
        }
    }
    
    /* =========================================================
       PETITE TABLETTE
    ========================================================= */
    @media (max-width: 768px) {
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
            gap: 10px;
        }
        
        .promo-card-top { 
            height: 430px;
            padding: 25px;
        } 
    }
    
    /* =========================================================
       MOBILE
    ========================================================= */
    @media (max-width: 480px) {
        .promo-grid { display: block;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
            gap: 10px;    
        }
    
        .promo-item img {
            width: 100%;
            height: 70px;
            object-fit: cover;
        }
       
    
        .promo-card-top { 
             height: 430px; 
             padding: 10px; 
        }
         
         .promo-card { 
            height: 430px; 
            padding: 10px; 
        }
            
              
        .productRandom{ 
            width: 150px;
        }
    }
    
    /* =========================================================
       ULTRA SMALL DEVICES
    ========================================================= */
           
    @media(max-width:768px){
    
        .promo-slide-item{
            width: 100px;
        }
    
        .promo-grid-other{
            grid-template-columns:
                repeat(2, 1fr);
        }
     
        .promo-arrow {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    
        .promo-arrow.left {
            left: 3px;
        }
    
        .promo-arrow.right {
            right: 3px;
        }
    }
    
    @media (max-width: 480px) {
     
        .product-card__image {
            height: 160px;
        }
    
        .product-card__image img {
            max-width: 120px;
            max-height: 140px;
        }

        .promo-arrow {
            width: 30px;
            height: 30px;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
    
        .promo-arrow:hover {
            transform: translateY(-50%) scale(1.05);
        }
        .promo-title {
            font-size: 16px;
        }
    
        .promo-item img {
            width: 100%;
            height: 120px;
        }
    
    
        .promo-slide-item {
            width: 120px;
        }
    }
    @media (max-width: 360px) {
        .promo-grid {
            grid-template-columns: repeat(2, 1fr);
             gap: 8px;
        } 
        .promo-item img {
            width: 100%;
            height: 100px;
        }
    
        .promo-title {
            font-size: 16px;
            
            margin-bottom: 12px;
            margin-top: 8px ;
        }
        
        .promo-card-top { 
             height: 375px;  
        }
         
        .promo-card { 
             height: 385px;  
        }
         
    }
    
    @media (min-width: 481px) and (max-width: 1024px) {
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        }
        
    }
    
    @media (min-width: 1440px) {
        .promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        }
    
    }
     
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 0.5rem;
    }
    
    .section-header-left {
        border-left: 2px solid #000;
        padding-left: 1rem;
        min-width: 0;
    }
    
    .section-header-title {
        font-size: clamp(15px, 2vw, 20px);
        font-weight: 500;
        color: #000;
        line-height: 1.2;
    }
    
    .section-header-sub {
        font-size: clamp(11px, 1.2vw, 13px);
        color: #888;
        margin-top: 4px;
    }
         
        /* =========================
        LAYOUT PRINCIPAL FULL WIDTH
        ========================= */
        .promo-layout{
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
        } 
        /* =========================
           RESPONSIVE MOBILE
        ========================= */
        
        @media(max-width: 768px){
        
            .promo-layout{
                grid-template-columns: 1fr; /* stack vertical */
            }
        }

    .gold-section {
        background: linear-gradient(135deg,#c79a2b 0%,#f7e3a1 50%,#c79a2b 100%);
        padding: 10px;
        margin: 25px 0;
        position: relative; 
        overflow: visible;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    
    .gold-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(255,255,255,.35), transparent 35%);
        pointer-events: none;
    }
    
   /* =========================================================
   GOLD HEADER
========================================================= */
.gold-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    width: 100%;

    flex-wrap: wrap;
}

/* =========================================================
   GOLD TITLE
========================================================= */
.gold-title {
    font-size: clamp(16px, 2.2vw, 22px);

    font-weight: 800;

    color: #fff;

    line-height: 1.3;

    width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}
    .gold-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 5;
    }
    
    .gold-prev, .gold-next {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #111;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s ease;
     }
    
    .gold-prev:hover, .gold-next:hover { background: #000; transform: scale(1.08); }

    .gold-slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gold-slider::-webkit-scrollbar { display: none; }
    
    .gold-product-card {
        flex: 0 0 auto !important;
        width: 190px;
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        box-shadow: 0 4px 10px rgba(0,0,0,.06), 0 10px 20px rgba(0,0,0,.05);
        transition: .25s ease;
        scroll-snap-align: start;
    }
    
    .gold-product-card:hover { transform: translateY(-6px); }
    
    .gold-product-image {
        width: 100%;
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #eee;
    }
    
    .gold-product-image img, .gold-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .gold-product-title { padding: 8px 10px 0 2px; }
    
    .gold-product-title a {
        display: block;
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #111;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
    }
    
    .gold-product-body {
        padding: 0 10px 12px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .gold-product-price {
        margin-top: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,#ff2d55,#c3002f);
        color: #fff;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 800;
        width: max-content;
        box-shadow: 0 6px 15px rgba(195,0,47,0.25);
    }
    
    .gold-product-price::before { content: "🔥 "; }
    
    @media(max-width: 768px) {
        .gold-product-card { width: 150px; }
        .gold-product-image { height: 140px; }
        .gold-title { font-size: 18px; }
    }
    /* =========================================================
   TABLETTE
========================================================= */
@media (max-width: 1024px) {

    .gold-header {
        margin-bottom: 16px;
    }

    .gold-title {
        font-size: 20px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {

    .gold-header {
        margin-bottom: 14px;
        gap: 8px;
    }

    .gold-title {
        font-size: 18px;
        line-height: 1.4;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */
@media (max-width: 480px) {

    .gold-header {
        margin-bottom: 12px;
    }

    .gold-title {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* =========================================================
   ULTRA SMALL DEVICES
========================================================= */
@media (max-width: 360px) {

    .gold-title {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* =========================================================
   LARGE SCREENS
========================================================= */
@media (min-width: 1440px) {

    .gold-title {
        font-size: 26px;
    }
}
    

/* =========================================================
   SECTION
========================================================= */
.catflow-section {
    width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 12px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */ 
.catflow-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    flex-wrap:nowrap; /* IMPORTANT */
}

/* =========================================================
   TITRE
========================================================= */
.catflow-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    flex: 1;
    min-width: 0;
}

.catflow-title a {
    color: inherit; 
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.link-cate {
    color: #0a58ca; 
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 14px);
}
/* =========================================================
   SEE MORE
========================================================= */
.catflow-see-more,
.see-more {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    transition: 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.catflow-see-more:hover,
.see-more:hover {
    color: #000;
    text-decoration: underline;
}

/* =========================================================
   WRAPPER
========================================================= */
.catflow-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* =========================================================
   SLIDER
========================================================= */
.catflow-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 14px;
    width: 100%;
    padding: 5px 2px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.catflow-slider::-webkit-scrollbar {
    display: none;
}

/* =========================================================
   CARD
========================================================= */
.catflow-card {
    flex: 0 0 auto;

    width: 230px;
    height: 230px;

    border-radius: 14px;

    overflow: hidden;

    background: #fff;

    position: relative;

    scroll-snap-align: start;

    transition: transform 0.25s ease;
}

.catflow-card:hover {
    transform: translateY(-3px);
}

/* =========================================================
   LINK
========================================================= */
.catflow-link {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================
   IMAGE
========================================================= */
.catflow-link img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.3s ease;
}

.catflow-card:hover img {
    transform: scale(1.04);
}

/* =========================================================
   NAV BUTTONS
========================================================= */
.catflow-nav-btn {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 90px;

    border: none;

    background: rgba(255,255,255,0.95);

    cursor: pointer;

    font-size: 20px;
    font-weight: bold;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.12);

    z-index: 20;

    transition: all 0.25s ease;
}

.catflow-nav-btn:hover {
    transform: translateY(-50%) scale(1.03);
}

.catflow-nav-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.catflow-prev {
    left: 0;
}

.catflow-next {
    right: 0;
}
.catflow-title a {
       text-decoration: none;
}
/* =========================================================
   REMOVE OUTLINE
========================================================= */
.catflow-nav-btn:focus,
.catflow-nav-btn:focus-visible,
.catflow-see-more:focus,
.catflow-see-more:focus-visible,
.see-more:focus,
.see-more:focus-visible {
    outline: none;
    box-shadow: none;
}

/* =========================================================
   TABLETTE
========================================================= */
@media (max-width: 1024px) {

    .catflow-card {
        width: 190px;
        height: 190px;
    }

    .catflow-nav-btn {
        width: 40px;
        height: 75px;
        font-size: 18px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {

    .catflow-section {
        padding: 10px;
    }

    .catflow-header {
        align-items: flex-start;
    }

    .catflow-title {
        font-size: 16px;
    }

    .catflow-card {
        width: 145px;
        height: 145px;
        border-radius: 10px; 
    }

    .catflow-slider {
        gap: 10px;
    }

    .catflow-nav-btn {
        width: 34px;
        height: 55px;
        font-size: 16px;
    }
}

/* =========================================================
   PETITS MOBILES
========================================================= */
@media (max-width: 480px) {

    .catflow-section {
        padding: 8px;
    }

    .catflow-header {
        margin-bottom: 10px;
    }

    .catflow-title {
        font-size: 16px; 
    }

    .catflow-card {
        width: 120px;
        height: 120px;
    }

    .catflow-slider {
        gap: 8px;
    }

    .catflow-nav-btn {
        width: 28px;
        height: 45px;
        font-size: 14px;
    }
}

/* ======================================================
   ULTRA SMALL DEVICES
========================================================= */
@media (max-width: 360px) {

    .catflow-card {
        width: 120px;
        height: 120px;
    }

    .catflow-title {
        font-size: 14px;
    }
 
    .see-more {
        font-size: 14px;
    }

    .catflow-nav-btn {
        width: 24px;
        height: 40px;
        font-size: 12px;
    }
}

/* ======================================================
   LARGE SCREENS
========================================================= */
@media (min-width: 1440px) {

    .catflow-card {
        width: 260px;
        height: 260px;
    }

    .catflow-slider {
        gap: 16px;
    }
}