/* ===============================
   SHOP BY CATEGORY
================================ */

.featured-products{
  border-bottom: 1px solid rgba(255, 184, 0, .15);
}
.shop-by-category-section{
   /*background:#111827;*/
   padding:80px 0;
   }

 .shop-by-category-section .container{
   max-width:1280px;
    margin:auto;
    padding:0 20px;
   }

.shop-category-section{
    padding:70px 0;
    background:#0f172a;
    border-top:1px solid rgba(255,184,0,.15);
    border-bottom:1px solid rgba(255,184,0,.15);
}

.shop-category-section .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

/* Header */

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.category-header h2{
    margin:0;
    color:#fff;
    font-size:34px;
    font-weight:700;
    text-transform:uppercase;
    font-family:'Bebas Neue',sans-serif;
    letter-spacing:1px;
}

.category-header h2::after{
    content:"";
    display:inline-block;
    width:80px;
    height:3px;
    background:#ffb800;
    margin-left:15px;
    vertical-align:middle;
}

/* New Css */
 .shop-category-section{
   padding:70px 0;
    border-top:1px solid rgba(255,193,7,.15);
    border-bottom:1px solid rgba(255,193,7,.15);
    background:#0f0f0f;
   }
 .section-header{
   text-align:center;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
   }
 .section-header h2{
   color:#fff;
    font-size:34px;
    font-weight:800;
    text-transform:uppercase;
    position:relative;
   }
 .section-header h2::after{
   content:"";
    width:80px;
    height:3px;
    background:#ffb800;
    display:inline-block;
    margin-left:15px;
    vertical-align:middle;
   }

.view-all{
    color:#ffb800;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.view-all:hover{
    color:#fff;
}

/* Grid */

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

/* Card */

.category-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#000;
    border:1px solid rgba(255,184,0,.12);
    border-radius:16px;
    padding:25px 15px;
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#ffb800;
    box-shadow:0 10px 30px rgba(255,184,0,.15);
}

/* Image */

.category-image{
    width:120px;
    height:120px;
    border:2px solid #ffb800;
    border-radius:50%;
    overflow:hidden;
    margin-bottom:18px;
    transition:.35s;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.category-card:hover .category-image{
    transform:scale(1.08);
}

.category-card:hover .category-image img{
    transform:scale(1.1);
}

/* Title */

.category-card h3{
    margin:0;
    color:#fff;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    text-align:center;
    font-family:'Bebas Neue',sans-serif;
    letter-spacing:1px;
    transition:.3s;
}

.category-card:hover h3{
    color:#ffb800;
}

.shop-by-category-section{
    padding:80px 0;
    background:#0f0f0f;
    position:relative;
}

.shop-by-category-section::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:rgba(255,184,0,.18);
}

/* Responsive */

@media (max-width:992px){

    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:768px){

    .category-header{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .category-header h2{
        font-size:28px;
    }

}

@media (max-width:576px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .category-image{
        width:90px;
        height:90px;
    }

    .category-card{
        padding:20px 10px;
    }

}
