.product-box {
    position: relative;
    display: block;
    border: solid 1px #eeeeee;
    padding: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--module-background);
    height: 100%;
}
.inside-product-box {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 12px;
}
.product-box .image {
    position: relative;
    display: block;
    flex: 0 0 auto;
    margin-bottom: 10px;
    transition: 0.2s all;
    opacity: 1;
}
.product-box .image .special-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 13px;
    padding: 5px 8px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 6px;
}
.product-box .title {
    position: relative;
    display: block;
    flex: 1 1 auto;
    color: var(--color-black);
}
.product-box-caption {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: flex-end;
}
.product-box-caption-left {
    position: relative;
    display: block;
    flex: 1 1 auto;
}
.product-box-caption-right {
    position: relative;
    display: block;
    flex: 0 0 auto;
}

.product-box-caption-right .btn {
    border-radius: 100%;
    border: none;
    padding: 5px;
    width: 37px;
    height: 37px;
    text-align: center;
}
.product-box-caption-right .btn svg {
    height: 24px;
}
.product-box-caption-right .btn.btn-success svg path {
    stroke: var(--color-white);
}
.product-box-caption-right .btn.btn-success {
    background: var(--color-primary);
}
.product-box-caption-right .btn.btn-success:hover {
    background: var(--color-third);
}

.product-box-caption-right .btn.btn-default {
    background: #eeeeee;
}

.product-box-caption-left .price {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-box-caption-left .price-special {
    position: relative;
    font-size: 18px;
    line-height: 14px;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}
.product-box-caption-left .price-old {
    position: relative;
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    font-weight: 400;
    white-space: nowrap;
    text-decoration: line-through;
}