*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f7fb;
}

/* CONTAINER */
.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 15px;
}

/* HERO */
.hero-section{
    position:relative;
    height:350px;
    overflow:hidden;
}


.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content h1{
    color:#fff;
    font-size:48px;
    margin-bottom:10px;
}

.hero-content p{
    color:#fff;
    font-size:18px;
}

/* PRODUCTS */
.products-section{
    padding:60px 0;
}

/* FILTER */
.filter-box{
    margin-bottom:30px;
    text-align: center;
}

#filter{
    width:100%;
    max-width:600px;

    padding:12px;

    border-radius:8px;
    border:1px solid #ccc;

    background:#fff;
    /*display:none;*/
}

/* GRID */
.product-grid{
    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:25px;
}

/* CARD */
.product-card{
    background:#fff;

    border-radius:14px;

    overflow:hidden;

    text-decoration:none;

    transition:0.3s;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.product-card:hover{
    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.product-image{
    width:100%;
    height:260px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:0.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.product-content{
    padding:18px;
}

.product-content h3{
    color:#111;
    font-size:20px;

    margin-bottom:10px;

    line-height:1.4;
}

.product-content p{
    color:#666;

    font-size:14px;

    line-height:1.5;

    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
}

/* TABLET */
@media(max-width:992px){

    .product-grid{
        grid-template-columns:repeat(2, 1fr);
    }
    

}

/* MOBILE */
@media(max-width:600px){

    .hero-section{
        height:220px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:14px;
    }

    .product-grid{
        grid-template-columns:repeat(2, 1fr);

        gap:15px;
    }

    .product-image{
        height:160px;
    }

    .product-content{
        padding:12px;
    }

    .product-content h3{
        font-size:15px;
    }

    .product-content p{
        font-size:12px;
    }
    


}