.card-grid {
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease;
    height: 30rem;
    margin: 0.2rem;
}
.card:hover { 
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.card-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}
.card_wraper_img {
    height: 25rem;
    overflow: hidden;
}
.card_wraper_img img{
    max-height: 30rem;
}

.menu__category li:nth-child(1) a{
    color: #2E2D2C;
}
.menu__category li:nth-child(1) svg g path {
    fill: #A1A1A1;
}
.menu__category li.menu__category_fill a,
.menu__category li.menu__category_fill svg g path {
    transition: all 0.3s ease;
}

.menu__category li.menu__category_fill:hover a {
    color: #FF4200;
}

.menu__category li.menu__category_fill:hover svg g path {
    fill: #FF4200;
}

.menu__category li a svg g path {
    fill: #a1a1a100;
}
.icon-section{display: none;}
@media (min-width: 833px) and (max-width: 1199px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card {
        height: 24rem;
    }
    .card img {
        margin-bottom: 0rem;
        height: 24rem;
    }
    .card_wraper_img {
        height: 19rem;
    }

}

@media (max-width: 833px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .card {
        height: 20rem;
    }
    .card img {
        width: 23rem;
        margin: 0 auto;
    }
    .card_wraper_img img {
        width: 29rem;
        height: 14rem;
        object-fit: cover;
    }
    .card_wraper_img {
        height: 15rem;
    }
        .menu__category_ul {
        padding-left: 1.2rem;
    }
    .menu__category li:last-child a {
        margin-left: 0rem;
        padding-left: 0.6rem;
        padding-right: 1.2rem;
    }  
    .icon-section{display: block;} 
    .main_content_section a{display: none;} 
    .main_content_section {
        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 1rem;
        align-items: center;
    }
    .main_content_section {
        padding: 2rem;
    }
    .menu__category li a svg{
        display: none;
    }
    .menu__category li a {
        margin-left: 0rem;
    }    
    .menu__category li:nth-child(1) a{
        color: #2F86FF;
    }
    .product__info h2.title{
        font-size: 2.2rem;
    }   
    
    .categories_product {
        width: 100%;
    }
    .section__info .title{
        font-size: 2.2rem;
    }

}
