/*======================================
    CATEGORY PAGE
======================================*/

.category-page{

    padding:80px 0;

    background:#f8f8f8;

}

.category-page .container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/*======================================
    CATEGORY HEADER
======================================*/

.category-header{

    text-align:center;

    margin-bottom:60px;

}

.category-header h1{

    font-size:42px;

    color:#222;

    margin-bottom:15px;

    font-weight:700;

}

.category-header p{

    max-width:700px;

    margin:auto;

    color:#777;

    font-size:18px;

    line-height:1.8;

}

/*======================================
    PRODUCTS GRID
======================================*/

.category-products{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*======================================
    PRODUCT CARD
======================================*/

.product-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s ease;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.product-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.05);

}

/*======================================
    PRODUCT INFO
======================================*/

.product-info{

    padding:25px;

    text-align:center;

}

.product-info h3{

    margin:0 0 15px;

    font-size:22px;

}

.product-info h3 a{

    color:#222;

    text-decoration:none;

}

.product-info h3 a:hover{

    color:#b88a28;

}

.price{

    display:block;

    font-size:22px;

    font-weight:700;

    color:#b88a28;

    margin-bottom:20px;

}

/*======================================
    BUTTON
======================================*/

.view-btn{

    display:inline-block;

    background:#b88a28;

    color:#fff;

    padding:12px 30px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.view-btn:hover{

    background:#222;

    color:#fff;

}

/*======================================
    PAGINATION
======================================*/

.pagination{

    margin-top:60px;

    text-align:center;

}

.pagination .page-numbers{

    display:inline-block;

    width:45px;

    height:45px;

    line-height:45px;

    margin:0 5px;

    border-radius:50%;

    background:#fff;

    color:#222;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.pagination .page-numbers:hover{

    background:#b88a28;

    color:#fff;

}

.pagination .current{

    background:#b88a28;

    color:#fff;

}

/*======================================
    NO PRODUCTS
======================================*/

.no-products{

    text-align:center;

    padding:80px 20px;

}

.no-products h2{

    font-size:32px;

    color:#222;

}

/*======================================
    TABLET
======================================*/

@media(max-width:992px){

.category-products{

    grid-template-columns:repeat(2,1fr);

}

.product-card img{

    height:240px;

}

}

/*======================================
    MOBILE
======================================*/

@media(max-width:768px){

.category-page{

    padding:60px 0;

}

.category-header h1{

    font-size:32px;

}

.category-header p{

    font-size:16px;

}

.category-products{

    grid-template-columns:1fr;

}

.product-card img{

    height:230px;

}

.view-btn{

    width:100%;

}

}

/*======================================
    SMALL MOBILE
======================================*/

@media(max-width:480px){

.category-header h1{

    font-size:28px;

}

.product-info{

    padding:20px;

}

.product-info h3{

    font-size:20px;

}

.price{

    font-size:20px;

}

}