
.products{
    display:grid;
    padding:20px;
    max-width:1300px;
    margin:auto;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

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

.card img{
    width:100%;
    height:250px;
    /* object-fit:cover; */
    object-fit: contain;
    border-radius:12px;
    background:#fff;
    
}

.content{
    padding:15px;
}

.title{
    font-size:18px;
    font-weight:bold;
    margin-bottom:10px;
    color:#883600;
}

.price{
    color:red;
    font-size:20px;
    margin-bottom:15px;
}

.btn{
    display:inline-block;
    background:#2e7d32;
    color:white;
    padding:10px 15px;
    border-radius:8px;
    text-decoration:none;
}

.btn:hover{
    background:#1b5e20;
}

/* PAGINATION */

.pagination{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:40px;
    flex-wrap:wrap;
}

.page-btn{
    padding:10px 15px;
    border:none;
    background:white;
    border-radius:8px;
    cursor:pointer;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.page-btn.active{
    background:#2e7d32;
    color:white;
}
