.product-box {
    position: relative;
    display: block;
    /* padding: 30px 0; */
    height: 100%;
}
.inside-product-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--color-white);
    border-radius: 18px;
    /* box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15); */
    box-shadow: 0px 4px 30px 0px #0000001A;
    height: 100%;

    overflow: hidden;
}
.product-box .image {
    grid-area: productboximage;
    flex: 0 0 auto;
}
.product-box .title {
    grid-area: productboxtitle;
    flex: 1 1 auto;
    padding: 0 10px;
    font-size: 16px;
}
.product-box .price {
    grid-area: productboxprice;
    flex: 0 0 auto;
    padding: 0 10px;
    font-size: 0.9rem;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    font-weight: 600;
}
.product-box .price .price-old {
    color: #999999;
    font-weight: 300;
    text-decoration: line-through;
}
.product-box .rate {
    grid-area: productboxrate;
    flex: 0 0 auto;
    padding: 0 10px;
    font-size: 10px;
    line-height: 10px;
}
.product-box .rate i {
    font-size: 10px;
    line-height: 10px;
}
.product-box .rate i.grey {
    color: #999999 ;
}
.product-box .rate i.gold {
    color: gold;
}
.product-box .stock-status {
    grid-area: productboxstockstatus;
    flex: 0 0 auto;
    padding: 0 10px;
    color: #FF1E00;
    font-size: 16px;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
}
.product-box .stock-status span {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #999999;
    vertical-align: 2px;
    margin-right: 4px;
}
.product-box .stock-status.in-stock {
    color: #12b332;
}
.product-box .stock-status.in-stock span {
    background: #12b332;
}
.product-box .buttons {
    grid-area: productboxbuttons;
    flex: 0 0 auto;
    padding: 0 10px;
    padding-bottom: 8px;
}
.product-box .buttons .btn {
    line-height: 24px;
    border-radius: 100%;
    padding: 4px;
    width: 36px;
    height: 36px;
}
.product-box .buttons .btn svg {
    height: 24px;
}
.product-box .buttons .btn svg path {
    stroke: var(--color-white);
}
.product-box .buttons .btn.btn-default svg path {
    stroke: var(--color-third);
}

.product-box .special-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--color-third);
    padding: 2px 8px;
    border-radius: 18px;
    color: var(--color-white);
    font-size: 12px;
}
.product-box .btn-wishlist {
    position: absolute;
    top: 3px;
    right: 10px;
    background: none;
    padding: 0;
    border: none;
    transform: scale(1);
}
.product-box .btn-wishlist svg {
    height: 20px;
}
.product-box .btn-wishlist svg path {
    fill: var(--color-third);
}
.product-box .btn-wishlist.active svg path {
    fill: var(--color-primary);
}
.product-box .btn-wishlist:hover {
    transform: scale(1.1);
}