.products-page{
padding:80px 20px;
background:#f8f8f8;
}

.page-title{
text-align:center;
font-size:40px;
margin-bottom:40px;
color:#3b2a09;
}

.filter-buttons{
text-align:center;
margin-bottom:40px;
}

.filter-buttons button{
padding:10px 20px;
margin:5px;
border:none;
background:#c9a84c;
color:white;
cursor:pointer;
border-radius:5px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.product-card{
background:white;
border-radius:10px;
padding:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
}

.product-card h3{
margin:10px 0;
font-size:18px;
}

.product-card p{
color:#777;
}
/* NAVBAR MENU ITEMS */

.nav{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
}

.nav-link{
position:relative;
padding:10px 16px;
font-size:14px;
font-weight:500;
letter-spacing:1px;
text-transform:uppercase;
color:#3d2e0a;
transition:0.3s;
}

/* Hover Effect */
.nav-link:hover{
color:#c9a84c;
}

/* Underline Animation */
.nav-link::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#c9a84c;
transition:0.3s;
}

.nav-link:hover::after{
width:100%;
}

/* Active Page */
.nav-link.active{
color:#c9a84c;
font-weight:600;
}

.nav-link.active::after{
width:100%;
}
.whatsapp-btn{

display:inline-block;
margin-top:10px;
padding:10px 18px;
background:#25D366;
color:white;
text-decoration:none;
font-size:14px;
border-radius:5px;
transition:0.3s;

}

.whatsapp-btn:hover{
background:#1ebe5d;
}