/* Banner Css */

@media (max-width: 767px) {
    .hero-header-01 .hero-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;    
    }
     .hero-header-01 .hero-desc {
        margin-bottom: 3px !important;
        font-size: 12px !important;

    }

    .hero-header-01 .hero-content .btn {
        font-size: 13px !important;
        padding: 4px 18px !important;      
    }
    .hero-header-01 .hero-content p.text-uppercase {
        font-size: 11px !important;
        margin-bottom: 3px !important;
    }
}

@media (max-width: 480px) {
    .hero-header-01 .hero-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;    
    }
     .hero-header-01 .hero-desc {
        margin-bottom: 3px !important;
        font-size: 12px !important;

    }

    .hero-header-01 .hero-content .btn {
        font-size: 13px !important;
        padding: 4px 18px !important;      
    }
    .hero-header-01 .hero-content p.text-uppercase {
        font-size: 11px !important;
        margin-bottom: 3px !important;
    }
}


/* Single Product Css */
.product-detail-box {
    background: #f3f5eb;
    /* border-radius: 14px; */
    padding: 25px;
    box-shadow: 0 8px 25px rgba(139, 155, 90, 0.10);
}

.product-detail-box .form-control {
    background: #fff;
}

.product-detail-box .btn-dark {
    transition: all 0.3s ease;
}

.product-detail-box .btn-dark:hover {
    background: #8b9b5a !important;
    border-color: #8b9b5a !important;
}



/* Best Selling Products css*/
 .product-box {
       border: 1px solid #a1a1a1 !important;
       border-radius: 12px;
       overflow: hidden;
       transition: all 0.3s ease;
   }

   .product-box:hover {
       transform: translateY(-5px);
       border-color:#8b9b5a !important;
       box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   }

   .product-image-box {
       background: #f8f8f6;
   }

   .product-box .card-body {
       background: #fff;
   }

   .product-box .product-title a {
       transition: color 0.3s ease;
   }



   /* Features Box css */



   /* .icon-box-style-1.card {
    border: 1px solid #e8e8e8 !important;
    border-radius: 12px;
    background: #fff;
    padding: 25px;
    transition: all 0.3s ease;
}

.icon-box-style-1.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #8b9b5a !important;
} */
.icon-box-style-1.card {
    border: 1px solid #343434 !important;
    border-radius: 12px;
    background: #191919;
    padding: 28px 22px;
    min-height: 300px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-box-style-1.card:hover {
    transform: translateY(-6px);
    border-color: #8b9b5a !important;
    background: #202020;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

.icon-box-style-1 .icon-box-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    border: 1px solid #3d3d3d;
    border-radius: 50%;
    color: #a6b56b !important;
    transition: all 0.35s ease;
}

.icon-box-style-1:hover .icon-box-icon {
    background: #8b9b5a;
    border-color: #8b9b5a;
    color: #fff !important;
    transform: scale(1.05);
}

.icon-box-style-1 .icon-box-icon .icon {
    width: 45px;
    height: 45px;
}

.icon-box-style-1 .icon-box-title {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.icon-box-style-1 .icon-box-desc {
    color: #a9a9a9;
    line-height: 1.7;
    font-size: 15px !important;
}

.icon-box-style-1 .card-body {
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 767px) {

    .icon-box-style-1.card {
        margin-bottom: 4px;
    }

    .col-xl-3.col-md-6:last-child .icon-box-style-1.card {
        margin-bottom: 0;
    }

}