.product-box {
    position: relative;
    display: block;
    border: solid 10px var(--color-general-border);
    border-radius: var(--radius);
    background: var(--module-background)
}

.inside-product-box {
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
}

.mtopauto {
    margin-top: auto;
}

.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 .special-badge {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 22px;
    font-weight: 600;
    padding: 0 7px 0 20px;
    background: var(--color-secondary);
    color: #ffffff;
    border-radius: 20px 0 0 20px
}

.product-box .rate {
    font-size: 14px;
    color: #F5C82F;
    text-align: center;
}

.product-box .title {
    font-size: 18px;
    font-weight: 800;
    margin: 5px 20px;
    color: #2b2b2b;
    text-align: center;
    line-height: 20px;
}

.product-box .price .price-old {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
    display: inline-block;
    text-decoration: line-through;
    margin-left: 13px;
}

.product-box .price .price-special {
    display: inline-block;
    color: red
}

.bottomprodbox .price {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #2b2b2b;
    line-height: 40px;
}

.btnaddcart {
    border: solid 1px #000;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    padding: 0 20px;
    height: 36px;
    line-height: 34px;
    font-size: 14px;
    font-weight: 500;
    color: #2b2b2b;
    transition: all 0.3s ease-in-out;
    background: transparent;
    align-items: center;
    margin: 10px auto 20px;
}

.btnaddcart:hover {
    background: var(--color-primary);
    color: #fff;
}

.btnaddcart img {
    filter: invert(1);
    transition: all 0.3s ease-in-out;
    width: initial !important;
}

.btnaddcart:hover img {
    filter: invert(0);
}

.inside-product-box .new-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 999;
}
