.product_heading a{
    font-size:14px;
}
.acitve_color{
    border: 4px solid #f29120;
}
.feature-cat-item {
    flex: 0 0 16.33%;
    padding: 0 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight:bold;
}

.feature-cat-item .feature-cat-item-inner:hover {
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.feature-cat-item .feature-cat-item-inner {
    display: block;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    padding: 15px 0;
    
    background-size: cover; /* Ensures the background image covers the entire div */
    background-repeat: no-repeat;
    background-position: center;
    width: 100%; /* Adjust this to fit your needs */
    padding-top: 48.25%; /* Aspect ratio for 16:9 images, adjust based on your image */
    position: relative;
    z-index:1;
}

.background-opacity {
    position: relative;
    z-index: 1;
}

.background-opacity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7; /* Adjust the opacity as needed */
    z-index: -2;
    pointer-events: none; /* Ensure it doesn't block clicks */
}

.background-opacity::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.2); Black overlay with 50% opacity */
    background-color: rgb(0 0 0 1);
    z-index: 1;
    pointer-events: none; /* Ensure it doesn't block clicks */
}

.main_divs{
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-opacity .main_divs p {
    position: absolute;
    bottom: 10px; /* Adjust the distance from the bottom as needed */
    z-index: 5;
    color: #ffffff; /* White color to ensure visibility on the black overlay */
    opacity: 1; /* Full opacity */
}

/* Hover effect */
.background-opacity:hover::after {
    background-color: rgba(0, 0, 0, 0.4); /* Darker black overlay on hover */
}

.feature-cat-items-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.feature-cat-item .feature-cat-icon {
    display: inline-block;
    padding: 9px;
}

.feature-cat-item p {
    font-size: 14px;
    margin: 0;
}

.main_info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* space between items */
}

.div_mains {
    flex: 1 1 calc(33.33% - 16px); /* 3 items per row on large screens */
    padding: 16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .div_mains {
        flex: 1 1 calc(50% - 16px); /* 2 items per row on tablets */
    }
}

@media (max-width: 767px){
    .feature-cat-item {
        flex: 0 0 50%;
        margin-bottom: 10px;
        font-weight:bold;
    }

    .feature-cat-item .feature-cat-item-inner {
        /* border-radius: 10px; */
        /*padding: 5px 0;*/
    }

    .div_mains {
        flex: 1 1 calc(50% - 16px); /* 2 items per row on mobile */
    }

    /* .feature-cat-item .feature-cat-icon {
        width: 60px;
        height: 60px;
    } */

    .feature-cat-item p {
        line-height: 17px;
        min-height: 25px;
        font-weight: bold;
        text-align: center;
    }

    .navbar{
        padding-top: .0rem;
        padding-bottom: .0rem;
    }
}

@media (max-width: 1279px){
    .feature-cat-item p {
        font-size: 11px;
    }
}

.feature-m-header {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
}

.feature-m-blur {
    text-align: center;
    font-size: 15px;
    color: #01132d;
    line-height: 26px;
}

.p-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.cart-button i {
    margin: 10px 0 5px;
}

.cart-button:hover {
    background: #1C8200
    ;
}

.cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background: #1c8200bd;
    border: 1px solid rgba(252, 60, 60, 0.2);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
    width: 59px;
    height: 59px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%), -5px 5px 10px rgb(0 0 0 / 10%);
    border-radius: 4px;
}

.cart-button span.counter {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -10px;
    background: #ef4a23;
    line-height: 20px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.cart{
    color:white;
}

.bg-gray{
    background:#f2f4f85e;
}