.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.badge {
    background: var(--gold-dark);
    color: white;
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 20px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.price {
    color: var(--gold-dark);
    font-weight: bold;
}



.badge.desconto {
    background: #b00020;
    color: white;
    font-weight: bold;
}

.price.old {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.price.new {
    color: var(--gold-dark);
    font-weight: bold;
    font-size: 16px;
}
