/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
}

/* HEADER */
header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 15px;
    background:#020617;
    position:sticky;
    top:0;
    z-index:100;
}

.logo img{
    height:40px;
}

.nav-icons{
    display:flex;
    gap:15px;
}

.nav-icons a{
    color:#fff;
    font-size:20px;
    text-decoration:none;
}

/* ===================== */
/* SLIDER FIX COMPLET */
/* ===================== */

.banner-slider{
    position:relative;
    overflow:hidden;
    width:100%;
}

/* IMPORTANT : largeur dynamique */
.slides{
    display:flex;
    width:100%;
    transition:transform 0.5s ease-in-out;
}

/* IMPORTANT : bloque les slides correctement */
.slide{
    min-width:100%;
    flex:0 0 100%;
    padding:60px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:linear-gradient(135deg,#f97316,#f43f5e);
}

/* TEXT */
.slide h1{
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
}

.slide p{
    font-size:15px;
    opacity:0.9;
    margin-bottom:20px;
}

.btn{
    background:#fff;
    color:#000;
    padding:12px;
    border-radius:8px;
    text-align:center;
    font-weight:600;
    text-decoration:none;
}

/* SECTION TITLE */
.section-title{
    padding:15px;
    font-size:18px;
    font-weight:600;
}

/* PRODUCTS */
.products-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    padding:10px;
}

.product-card{
    background:#020617;
    border-radius:12px;
    overflow:hidden;
}

.product-card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.product-info{
    padding:10px;
}

.product-info h3{
    font-size:14px;
    margin-bottom:5px;
}

.price{
    color:#22c55e;
    font-weight:bold;
    margin-bottom:8px;
}

.btn-whatsapp{
    background:#25d366;
    color:#fff;
    padding:8px;
    border-radius:6px;
    font-size:13px;
    display:block;
    text-align:center;
    margin-bottom:6px;
    text-decoration:none;
}

.btn-cart{
    background:#f97316;
    color:#fff;
    padding:8px;
    border-radius:6px;
    font-size:13px;
    display:block;
    text-align:center;
    text-decoration:none;
}

/* TABLET */
@media(min-width:768px){
    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .slide h1{
        font-size:32px;
    }
}

/* DESKTOP */
@media(min-width:1024px){
    .products-grid{
        grid-template-columns:repeat(4,1fr);
        padding:20px;
    }

    .slide{
        padding:100px;
    }

    .slide h1{
        font-size:40px;
    }
}