*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}

/* PAGE */
.products-page{
    background: #fffdf7;
}

/* HEADER */
.products-header{
    text-align: center;
    padding: 80px 20px 60px;
    background: #fffdf7;
}

.products-header h1{
    font-size: 45px;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.products-header p{
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* CATEGORY */
.product-category{
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.product-category h2{
    font-size: 30px;
    margin-bottom: 30px;
    color: #1f1f1f;
    position: relative;
}

.product-category h2::after{
    content: "";
    width: 60px;
    height: 3px;
    background: #f4c430;
    display: block;
    margin-top: 8px;
}

/* LIGHT BACKGROUND */
.light-bg{
    background: #fffdf7;
}

/* GRID */
.product-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.product-card{
    text-decoration: none;
    background: #fffdf7;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.product-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card h3{
    text-align: center;
    padding: 15px;
    font-size: 16px;
    color: #1f1f1f;
}


.product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .product-grid{
        grid-template-columns: 1fr;
    }

    .products-header h1{
        font-size: 28px;
    }

    .product-category h2{
        font-size: 24px;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Mobile size */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 15px;
    }
}





