.custom-product-section {
    margin: 30px 0;
}
.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.custom-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-card {
    padding: 0px;
    /* border-radius: 12px;
    text-align: center; */
}
.product-contents-box .cat-items {
    font: 400 15px/20px "josefin sans";
    color: #000;
}
.product-title a {
    font: 700 20px/20px "josefin sans";
    margin: 5px 0 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #000;
}
.rating span{
    color: #000;
    font: 400 16px/16px "Josefin Sans"
}
.price {
    font-weight: bold;
}
.rating {
    color: #FFC107;
}
.product-card:hover .product-icon{
    display: block;
}
.product-card:hover .product-title{
    color: #EF7726 !important;
}
.product-card:hover .product-image img {
    -webkit-animation: scale-up-center 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes scale-up-center{
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    
}
.product-image-box {
    background: #EF772614;
    border-radius: 10px;
}
.product-contents-box {
    padding: 10px 5px;
}
.product-image-box .cat-items {
    /* background: #EF7726;
    position: absolute;
    top: 20px;
    left: 0px;
    padding: 8px 8px 6px 8px;
    border-radius: 0px 4px 4px 0px;
    color: #fff !important;
    font: 400 14px/14px "Josefin Sans"; */
}
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-image{
    width: 220px;
    height: 250px;
    margin: 0 auto;
    padding: 25px 20px 25px 20px;
}
.product-card:hover .product-icon {
    opacity: 1 !important;
    animation: fadeInRight 2s;
}
@keyframes fadeInRight{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* new for display none */

.owl-nav.disabled {
	display: none !important;
}