/* =====================
 CATEGORY PAGE
===================== */


.category-page{

    width:92%;

    max-width:1300px;

    margin:40px auto;

}



.category-title{

    text-align:center;

    color:white;

    font-size:32px;

    font-weight:800;

    margin-bottom:40px;

}




.category-products{


    display:grid;


    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));


    gap:25px;


}





.category-card{


    background:rgba(255,255,255,.08);


    backdrop-filter:blur(15px);


    border:1px solid rgba(255,255,255,.15);


    border-radius:25px;


    padding:20px;


    text-align:center;


    overflow:hidden;


    transition:.3s;


}



.category-card:hover{


    transform:translateY(-8px);


}





.category-card img{


    width:100%;


    height:260px;


    object-fit:contain;


    border-radius:20px;


    padding:15px;


    background:rgba(0,0,0,.15);


}






.category-card h3{


    color:white;


    font-size:18px;


    margin:15px 0;


}






.category-price{


    color:#D99B7F;


    font-size:21px;


    font-weight:800;


    margin:15px 0;


}





.category-stock{


    color:#4caf50;


    margin-bottom:15px;


    font-weight:700;


}




.category-out-stock{


    color:#ff5252;


    margin-bottom:15px;


    font-weight:700;


}





.category-btn-product{


    display:block;


    background:#0F3040;


    color:white;


    text-decoration:none;


    padding:12px;


    border-radius:15px;


    transition:.3s;


}





.category-btn-product:hover{


    background:#A56F63;


}






.empty-category{


    color:white;

    text-align:center;

    font-size:20px;

}





@media(max-width:768px){


.category-products{


    grid-template-columns:repeat(2,1fr);

}



.category-card img{


    height:190px;


}


}



@media(max-width:450px){


.category-products{


    grid-template-columns:1fr;


}


}