﻿/* Product Card */
.product-card {
    position: relative;
    transition: 0.3s ease;
    border: 1px solid #eee;
    flex-shrink: 0;
    padding: 0px !important;
}

/* Favorite Icon */
.fav-icon {
    position: absolute;
    top: 5px;
    left: 7px;
    width: 30px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 10;
}

    .fav-icon i {
        font-size: 18px;
        color: #999;
    }

    .fav-icon.active i {
        color: rgb(187, 16, 16);
    }

@media (max-width: 768px) {
    .product-card {
        width: 160px !important;
    }
}
