.product-box {
    position: relative;
    display: block;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--module-background);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
}
.inside-product-box {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.bottomprice {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-box .image {
    position: relative;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s all;
    opacity: 1;
}
.product-box .image img {
    border-radius: 6px;
}

.product-box .image .special-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 13px;
    padding: 5px 8px;
    background: var(--color-specialprice);
    color: #ffffff;
    border-radius: var(--radius);
}
.product-box .rate {
    font-size: 12px;
    color: #F5C82F;
}
.product-box .title {
    margin-bottom: 3px;
    color: var(--color-black);
    transition: 0.2s all;
}
.product-box .title:hover {
    color: var(--color-primary);
}
.product-box .price {
    font-size: 22px;
    color: var(--color-specialprice);
    font-weight: 500;
}
.product-box .price .price-special {
    color: var(--color-specialprice);
    font-weight: 500;
    font-size: 18px;
    line-height: 17px;
}
.product-box .price .price-old {
    color: var(--color-grey-dark);
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
}
.product-box .stock-status {
    position: relative;
    display: block;
    font-size: 13px;
    padding: 2px 0;
    color: #999999;
}
.product-box .stock-status.in-stock {
    color: #23ba29;
}
.product-box .btn.btn-cart {
    background: none;
    border: none;
    padding: 0;
}
.product-box .btn.btn-cart svg {
    height: 40px;
}
.product-box .btn.btn-cart svg path {
    stroke: #000000;
    transition: 0.2s all;
}
.product-box .btn.btn-cart:hover svg path {
    stroke: var(--color-primary)
}