
.product-card {
    /* width: 340px; */
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    background: #f6f1ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.product-image img {
    height: 300px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.favorite-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    /* padding: 8px; */
    cursor: pointer;

    width: 32px;
    height: 32px;
    display: grid;
    place-content: center;
}

.favorite-icon i {
    color: #d9739f;
    font-size: 1.2rem;
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
}

.btn-buy {
    border-radius: 25px;
    background-color: #3d2c8d;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-buy:hover {
    background-color: #5a42c2;
    color: #fff;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}	