.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #ede5dc;
    transition: all .2s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 42, 40, .1);
    border-color: transparent;
}
.product-img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.product-img-link,
.product-img-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-img-link img {
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    z-index: 2;
}

.product-badge.hot {
    background: #f5909a;
}

.product-badge.new {
    background: #9FB665;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border: none;
    z-index: 2;
}
.wishlist-btn:hover svg{
    background-color: rgb(245, 144, 155);
    fill: #fff !important;
    padding: 4px;
    border-radius: 15px;
}
.wishlist-btn svg{
        fill: #f5909b !important;
    width: 25px;
    margin-top: -10px;
    transition: 0.3s;
}
.product-info {
    padding: 14px 16px 16px;
}

.product-cat {
    font-size: 10px;
    font-weight: 500;
    color: #8a8078;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d2a28;
    margin-bottom: 10px;
    line-height: 1.4;

}

.product-name a {
    color: inherit;
    text-decoration: none;
        transition: 0.3s;
}

.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.price-wrap {
    display: flex;
    flex-direction: column;
}
.old-price {
    font-size: 11px;
    color: #BBA89A;
    text-decoration: line-through;
}
.price-wrap del {
    font-size: 11px;
    color: #BBA89A;
    text-decoration: line-through;
}

.price-wrap ins {
    font-size: 19px;
    color: #2d2a28;
    font-weight: 700;
        text-decoration: none !important;
}
.price-wrap .price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 17px;
    font-weight: 700;
    color: #2d2a28;
    margin: 0;
}

.price-wrap .woocommerce-Price-currencySymbol {
    font-size: 11px;
    font-weight: 400;
    margin-right: 2px;
}

.add-btn {
    width: 34px;
    height: 34px;
    background: #A0B766;
    border: none;
    border-radius: 10px;
    color: #fff !important;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    line-height: 1;
    text-decoration: none !important;
    flex-shrink: 0;
}

.add-btn:hover {
    background: #88a857;
}


@media (max-width: 767px) {
    .product-img {
        height: 180px;
    }

    .product-name {
        font-size: 13px;
    }

    .price-wrap .price,
    .price-wrap .woocommerce-Price-amount {
        font-size: 15px;
    }
}