
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f6f9;
    color:#333;
}

/* =======================
        BANNER
======================= */

.banner{
    height:220px;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/Banner_OlympeStore.jpg") center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.banner-content{
    color:#fff;
}

.banner h1{
    font-size:42px;
    margin-bottom:10px;
}

.banner p{
    font-size:18px;
}


.hero-btn{

    display:inline-block;

    margin-top:20px;

    padding:18px 45px;

    background:white;

    color:#111;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}


.hero-btn:hover{

    background:#e63946;

    color:white;

    transform:scale(1.05);

}

/* =======================
      CONTENEUR
======================= */

.container{
    width:90%;
    max-width:1300px;
    margin:50px auto;
}

.section-title{
    font-size:32px;
    margin-bottom:30px;
    color:#222;
}

/* =======================
      LISTE PRODUITS
======================= */

.products{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

/* =======================
      CARTE
======================= */

.card{

    text-decoration:none;
    color:#222;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* =======================
        IMAGE
======================= */

.image{

    position:relative;
    overflow:hidden;

}

.image img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.card:hover img{

    transform:scale(1.08);

}

/* Badge */

.stock{

    position:absolute;
    top:15px;
    left:15px;
    background:#22c55e;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;

}

/* =======================
        CONTENU
======================= */

.content{

    padding:22px;

}

.content h3{

    margin-bottom:10px;
    font-size:22px;

}

.content p{

    color:#666;
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;

}

.bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.price{

    color:#e63946;
    font-size:28px;
    font-weight:bold;

}

.more{

    color:#0d6efd;
    font-weight:bold;
    transition:.3s;

}

.card:hover .more{

    transform:translateX(5px);

}

@media(max-width:768px){

.banner{

height:180px;

}

.banner h1{

font-size:32px;

}

.banner p{

font-size:16px;

}

}

/* FOOTER */


footer{

    background:#111;
    color:white;
    text-align:center;
    padding:30px;

}
