.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffcc00;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
}

.product-card {
    position: relative; /* Para a tag funcionar */
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}