.wa-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2000;
}

.wa-box{
    background:white;
    padding:20px;
    border-radius:12px;
    width:90%;
    max-width:400px;
    text-align:center;
}

.hidden{
    display:none;
}
body{
    background-color:#b7bdc4;
     padding-top:110px;
}

/* TOP BAR */

.top-bar{
    background:#212529;
    color:white;
    padding:10px 0;
    font-size:14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.navbar{
    position:fixed;
    top:38px; /* hauteur de la top-bar */
    left:0;
    width:100%;
    z-index:1040;
}
.whatsapp-icon{
    width:16px;
    height:16px;
    margin-left:5px;
}
.logo{
    width:100px;
    height:100px;
    object-fit:contain;
}

.slogan{
    letter-spacing:1px;
    font-size:13px;
    line-height:1.2;
}

@media (max-width: 576px){
    .navbar-brand h4{
        font-size:16px;
    }
}

/* MOBILE */
@media (max-width: 576px){
    .slogan{
        font-size:10px;
        letter-spacing:0.5px;
        max-width:180px;
        white-space:normal;
    }
}
@media (max-width: 576px){
    .logo{
        width:60px;
        height:60px;
    }
}
/* HERO */
@media (max-width: 768px) {
    .hero {
        min-height: 45vh;
        padding: 25px 15px;
    }

    .hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem !important;
    }
}
.hero{
    background:url('https://www.pme.fr/wp-content/uploads/sites/48/2017/10/traiteur-paris.png') center/cover;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgb(255, 255, 255);
    text-align:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}
.hero-content p{
    max-width:700px;
    margin:0 auto;
}
.hero-content{
    position:relative;
    z-index:2;
}

/* SEARCH */

.search-box{
    margin-top:-30px;
    position:relative;
    z-index:5;
}

/* PRODUCT CARD */
h2{
    font-weight:700;
    border-left:5px solid #198754;
    padding-left:15px;
}
/* .product-card{
    transition:0.3s;
    border:none;
    border-radius:15px;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-5px);
} */

.product-card img{
    height:220px;
    object-fit:cover;
}
.product-image-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-image{
    width:100%;
    max-width:220px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
}
.product-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}
/* FOOTER */

footer{
    background:#212529;
    color:white;
    padding:30px 0;
    margin-top:50px;
}
#searchInput{
    border-radius:10px;
    padding-left:15px;
}
.product-card .btn{
    border-radius:8px;
    font-weight:500;
}
