﻿.anv_containera{
    display:flex;
    flex-wrap:nowrap;
    gap:16px;
    padding:12px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;

    scrollbar-width:thin;
    scrollbar-color:#888 #ececec;
}

/* Chrome, Edge */
.anv_containera::-webkit-scrollbar{
    height:10px;
}

.anv_containera::-webkit-scrollbar-track{
    background:#ececec;
    border-radius:20px;
}

.anv_containera::-webkit-scrollbar-thumb{
    background:#888;
    border-radius:20px;
}

.anv_containera::-webkit-scrollbar-thumb:hover{
    background:#555;
}

/* Card */
.anv_carda{
    flex:0 0 290px;
    width:290px;

    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:18px;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.3s ease;

    position:relative;
}

.anv_carda:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 28px rgba(0,0,0,.14);
}







.category-bar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    padding:20px 10px;
    background:#fff;
    overflow-x:auto;
    scrollbar-width:none;
}

.category-bar::-webkit-scrollbar{
    display:none;
}

.category-item{
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:90px;
    transition:.3s;
    padding-bottom:10px;
    border-bottom:3px solid transparent;
}

.category-item img{
    width:48px;
    height:48px;
    object-fit:contain;
    transition:.3s;
}

.category-item span{
    margin-top:8px;
    font-size:12px;
    color:#666;
    font-weight:500;
}

.category-item.active{
    border-bottom:3px solid #0b422a;
}

.category-item.active span{
    color:#0b422a;
    font-weight:700;
}

.category-item:hover img{
    transform:scale(1.08);
}


.category-item,
.category-item:link,
.category-item:visited,
.category-item:hover,
.category-item:active{
    text-decoration:none !important;
}

.category-item span{
    text-decoration:none !important;
    display:block;
    color:#333;
}

@media(max-width:768px){

.category-bar{
    justify-content:flex-start;
    gap:20px;
}

.category-item{
    min-width:80px;
}

.category-item img{
    width:42px;
    height:42px;
}

}



/*=========================
      SECTION HEADING
=========================*/

.pmx-heading{
    text-align:center;
    margin:20px 0 35px;
}

.pmx-heading h2{
    margin:0;
    font-size:38px;
    font-weight:800;
    color:#0b422a;
    letter-spacing:.5px;
    line-height:1.2;
}

.pmx-heading h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:linear-gradient(90deg,#0b422a,#d8a316);
    margin:12px auto 0;
    border-radius:30px;
}

.pmx-heading p{
    margin-top:15px;
    font-size:17px;
    color:#666;
    font-weight:500;
    letter-spacing:.3px;
}

/* Mobile */

@media(max-width:768px){

    .pmx-heading{
        margin:15px 0 25px;
    }

    .pmx-heading h2{
        font-size:28px;
    }

    .pmx-heading p{
        font-size:14px;
    }

    .pmx-heading h2::after{
        width:70px;
        height:3px;
    }

}