.product-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
    background-color: #f8f8f8;
    border: 1px solid #f8f8f8;
}
.product-box .image {
    position: relative;
    display: block;
    margin-bottom: 10px;
    background: #FFF;
    transition: 0.2s all;
    opacity: 1;
}
.product-box.out-of-stock .image a {
    position: relative;
}
.product-box.out-of-stock .image a:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}
.product-box .image:hover {
    opacity: 0.7;
}
.product-box .image .special-badge {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 14px;
    padding: 7px;
    border-radius: 6px;
    background: var(--text-red);
    color: var(--text-white);
    font-weight: 600;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.product-box .image .background-image-product-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    display: block;
}
.product-box .image .background-image-product-box img {
    opacity: 0;
}
.product-box .product-box-text {
    padding: var(--var-product-text-padding);
    /* padding-bottom: 0px; */
    /* margin-bottom: 10px; */
    /* text-align: center; */
    /* border-bottom: 1px solid var(--border-product-text); */
}
.product-box .category {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 16px;
    color: var(--text-gray-dark);
    margin-bottom: 4px;
    height: 16px;
    overflow: hidden;
}
.product-box .category:hover {
    color: var(--text-red);
}
.product-box .rate {
    position: relative;
    display: block;
    font-size: 11px;
    color: var(--yellow-color);
}
.product-box .title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 22px;
    color :var(--black-color);
    font-weight:500;
    margin-bottom: 5px;
    /* padding-top: 10px; */
    /* border-top: 1px solid var(--border-product-text); */
}
.product-box .product-box-description {
    margin-bottom: 0px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-product-text);
}
/* .product-box .title:hover {
    color: var(--text-red);
} */
.product-box .product-box-actions {
    padding: var(--var-product-actions-padding);
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap; */
    /* justify-content: center; */
    /* justify-content: flex-start;
    align-items: center; */
}
.product-box .price {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    max-width: calc(100% - 120px);
    max-width: calc(100% - 111px);
}
.product-box .price .price-old {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    color: var(--text-black);
    font-weight: 400;
    font-size: 16px;
    text-decoration: line-through;
}
.product-box .price .price-special {
    color: #FF0000;
}
.product-box.special_product .price {
    font-size: 24px;
    color: #444;
    max-width: calc(100% - 55px);
}
.product-box .stock-status {
    position: relative;
    display: block;
    font-size: 13px;
    padding: 2px 0px;
    color: var(--text-gray-light);
}
.product-box .stock-status.in-stock {
    color: var(--green-color);
}
.product-box .buttons {
    position: relative;
    display: block;
    margin: 10px;
}
.product-box .buttons .btn {
    min-width :100px;
    padding: 5px 20px;
    padding: 5px 10px;
    border-radius: 25px;
    background-color: var(--blue-background);
    border-color: var(--blue-background);
    color: var(--text-white);
    text-align: center;
    font-size: 16px;
    font-size: 14px;
}
.product-box .buttons .btn:hover {
    border-color: var(--red-background);
    background-color: var(--red-background);
    color: var(--text-white);
}
.product-box .buttons .btn span.add-to-cart-text {
    display: inline-block;
}
.product-box .buttons .btn span.add-to-cart-icon {
    display: none;
}
.product-box.special_product .buttons .btn {
    background-color: #fbc926;
    color: #000;
    fill: #000;
    padding: 5px 0;
    margin-top: 5px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    border-radius: 10px;
}
.product-box.special_product .buttons .btn svg {
    width: 20px;
    height: 20px;
}
/* .product-box.special_product .buttons .btn span.add-to-cart-text {
    display: none;
} */
.product-box.special_product .buttons .btn span.add-to-cart-icon {
    display: inline-block;
    margin-left: 5px;
    position: relative;
}
/* .product-box.special_product .buttons .btn span.add-to-cart-icon:after {
    content: '1';
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--red-background);
    color: var(--white-color);
    transition: 0.2s opacity;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 3;
} */
/* .product-box.special_product .buttons .btn:hover span.add-to-cart-icon:after {
    opacity: 1;
} */
.product-box.special_product .price .discount-percent {
    color: var(--text-red);
}
.owl-item .product-box {
    margin-bottom: 0px;
}

.fa-stack {
    width: 14px !important;
    height: 14px !important;
    line-height: 10px !important;
}
.fa-star-incomplet {
    color: #ddd !important;
}
.prodrating {
    display: inline-block;
    margin-right: 7px;
    color: gold;
}
.prodnrreview {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.prodnrreview * {
    cursor: pointer;
}

@media only screen and ( max-width: 767px ) {
    
}

@media only screen and ( max-width: 479px ) {
    .product-box .image .special-badge {
        position: absolute;
        top: 7px;
        right: 7px;
        font-size: 13px;
        padding: 5px;
        border-radius: 6px;
        background: var(--text-red);
        color: var(--text-white);
        font-weight: 600;
        pointer-events: none;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
    }
    .product-box .title {
        font-size: 14px !important;
    }
    .product-box.special_product .price {
        max-width: 100%;
        width: 100%;
    }
    .product-box .price .price-special, 
    .product-box .price .price-old {
        width: 100%;
        margin-left: 0px;
    }
    .product-box .buttons {
        /* width: 100%; */
        margin: 5px;
    }
    .product-box .buttons .btn {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        margin: 0px !important;
        width: 100%;
        border: 1px solid var(--red-background) !important;
        padding: 0px 4px !important;
        background-color: transparent;
        align-items: center;
        vertical-align: middle;
        justify-content: center;
        color: var(--black-color);
    }
    .product-box .buttons .btn:hover {
        background-color: var(--red-background);
    }
    .product-box.special_product .buttons .btn span.add-to-cart-text {
        display: flex;
        order: 2;
        font-size: 14px;
        align-items: center;
        padding: 5px 0px;
    }
    .product-box.special_product .buttons .btn span.add-to-cart-icon {
        order: 1;
        margin-left: 0px;
        width: 20px;
        display: none;
    }
    .product-box.special_product .buttons .btn span.add-to-cart-icon svg {
        width: 20px;
    }
    .product-box.special_product .buttons .btn:hover span.add-to-cart-icon:after {
        display: none;
    }
}