.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

.product-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.product-card-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.product-card-seller {
    font-size: 0.8rem;
    color: #8a9bae;
    margin-bottom: 0.75rem;
}

.product-card-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--h-green-dark);
}

.product-card-qty {
    font-size: 0.8rem;
    color: #8a9bae;
}

.product-card-link {
    text-decoration: none !important;
    color: inherit !important;
}

    .product-card-link:hover {
        text-decoration: none !important;
        color: inherit !important;
    }

.pin-item {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    border: none;
    color: #cd6969;
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
    z-index: 2;
    transition: background-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .pin-item:hover {
        color: #e47185;
        background-color: #fff;
        transform: scale(1.1);
    }

.pin-icon {
    font-size: 14px;
}
