/** Product Cart **/
.product-item {
    background: #fff;
    border-radius: 24px;
    padding: 16px 16px 11px;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    border: 1px solid #E6E6E6;
}
.product-card-text-wrap {
    gap: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 1rem;
}
.product-image {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(239, 247, 250, 1) 70%);
    border-radius: 24px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5rem;
    min-height: 270px;
}
.product-image img {
    transition: 400ms ease-in-out;
}
.product-item:hover img {
    transform: scale(1.05);
}
.product-item h3 a {
    text-align: right;
    font-size: clamp(14px, 4vw, 18px);
    color: var(--black);
    font-family: var(--SemiBold);
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.7;
    transition: 0.4s;
    min-height: 62px;
}
.product-item:hover h3 a {
    color: var(--color1);
}
.product-item .add-cart {
    background: #F4F5F7;
    height: 44px;
    width: 44px;
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 50%;
    color: var(--color1);
    transition: 0.4s;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-item:hover .add-cart {
    background: var(--color2);
    color: var(--white);
}
.on-sale {
    position: absolute;
    top: 6px;
    right: 50%;
    transform: translateX(50%);
    font-size: 16px;
    width: 45px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-family: var(--Bold);*/
}
.on-sale > span {
    width: 100%;
    color: #fff;
    background: #B72E47;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
    border-radius: 20px;
    flex-direction: row-reverse;
    gap: 2px;
}
.on-sale .percentage {
    font-size: 12px;
}
.on-sale:before {
    content: '\e924';
    font-family: 'icomoon';
    position: absolute;
    top: 10px;
    color: white;
    font-size: 17px;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
}
.price {
    display: flex;
    line-height: 1;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    font-family: var(--SemiBold);
}
.price del,
.price ins {
    display: block;
}
.price del {
    color: #B6B6B6;
    font-size: 12px;
}
.price del .woocommerce-Price-currencySymbol {
    font-size: inherit;
    display: none;
}
.woocommerce-Price-currencySymbol {
    font-size: 8px;
    color: transparent;
}
.woocommerce-Price-currencySymbol:before {
    content: "\e928";
    font-family: 'icomoon';
    position: absolute;
    color: var(--black);
    font-size: 18px;
}
.price > .woocommerce-Price-amount > bdi,
.price ins {
    color: #333333;
    font-size: 16px;
    font-family: var(--bold_font);
    text-decoration: none;
    transition: 0.3s;
}
.product-item .price > .woocommerce-Price-amount > bdi,
.product-item .price ins {
    font-size: clamp(14px, 4vw, 18px);
}
.product-item .call-for-price,
.product-item .out-of-stock {
    width: fit-content;
}
.product-item .out-of-stock {
    background: var(--color2);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
    line-height: 1;
    font-size: 14px;
    margin-top: 10px;
}
.call-for-price {
    padding: 4px 15px;
    background: var(--color1);
    border-radius: 9px;
    font-size: 15px;
    transition: 0.4s ease;
    color: white;
}
.call-for-price:hover {
    background: var(--color2);
    color: white;
}
.items--product {
    font-size: 12px;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--color5);
}
.items--product .title-model {
    margin-inline: 4px;
}
.product-sale .countdown-wrapper {
    direction: ltr;
    background: var(--color4);
    color: var(--color1);
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(9px, 2vw, 14px);
    transition: 0.4s;
}
.product-sale:hover .countdown-wrapper {
    background: var(--color1);
    color: var(--white);
}
.product-sale .expire-text {
    background: var(--color2);
    color: var(--white);
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-sale .add-cart {
    bottom: 65px;
}
@media only screen and (max-width: 768px) {
    .product-item {
        padding: 16px 12px 12px;
    }
    .product-item .add-cart {
        background: #F4F5F7;
        height: 36px;
        width: 36px;
        font-size: 16px;
    }
}
.countdown {
    display: flex;
    gap: clamp(4px, 2vw, 8px);
}
.countdown .number {
    display: flex;
    gap: 4px;
}
.quantity-selector {
    background: #F4F5F7;
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 8px;
    color: var(--color1);
    transition: 0.4s;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    width: 100px;
    height: 50px;
}
.quantity-selector .decrease,
.quantity-selector .increase {
    font-size: 22px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: var(--color1);
    border: 2px solid var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
}
.quantity-selector .decrease:hover,
.quantity-selector .increase:hover {
    border-color: var(--color2);
    color: var(--color2);
}