/* CSS style for Featured Categories */
.product-categoreis-page{
    padding: 30px 0px;
}
.categories-list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap:20px;
}
.categories-list .categories-box{
    margin: 0px;
}
.categories-list .categories-img-inner {
    height: 240px;
    padding: 20px;
}
.categories-name {
    height: 60px;
    background-color: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.categories-name h5 {
    background-color: unset;
    padding: 5px 10px;
    width: 100%;
    word-wrap: break-word;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}
.blog-2 .view-header {
    display: none;
}
@media (max-width:1200px){
    .categories-list{
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width:991px){
    .categories-list{
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width:771px){
    .categories-list .categories-img-inner {
        height: 180px;
        padding: 20px;
    }
    .categories-name h5 {
        font-size: 12px;
    }
    .categories-name {
        height: 45px;
    }
}
@media (max-width:551px){
    .categories-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CSS style for Featured Brands */
.product-line-wrapper {
    display: flex;      
    flex-wrap: wrap;      
    gap: 20px;  
    display: flex;            
    align-items: center;
}
.product-line-box {
    flex: 0 0 calc(16.66% - 20px); 
    height: 130px; 
    background-color: #fff;
    border: 1px solid #ccc;  
    box-sizing: border-box;
    padding: 10px;
}
.product-line-box:hover{
    box-shadow: 0px 0px 5px #ccc;
}
.product-line-box .product-line-box-inner{
    height: 100%;
}
@media (max-width:991px){
    .product-line-box {
        flex: 0 0 calc(24.99% - 10px); 
    } 
}
