body { background-color: #f8f9fa; }
        .product-card {
            background-color: #fff;
            border: none;
            
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
			padding: 0;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .product-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card-body h5 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .product-card-body .card-text {
            color: #6c757d;
            font-size: 0.9rem;
            flex-grow: 1;
        }
        .product-card-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0d6efd;
            margin-top: 15px;
        }
        .loader {
            text-align: center;
            padding: 20px;
            display: none; /* Inicia oculto */
        }
        .filters-card {
            background-color: #fff;
           
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
		
		.top-produtos {
		    margin-top: 100px;
		}

/* Card do produto */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    border: none;
    display: flex;
    flex-direction: column;
}

/* Hover com elevação */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
	color: #fff;
}

/* Imagem do produto */
.product-img {
    width: 100%;
    max-height: 200px; /* altura uniforme */
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Título */
.product-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
	text-align: left;
}

/* Descrição */
.product-card p {
    font-size: 0.9rem;
    line-height: 1.4;
	margin-bottom: 0px;
	text-align: left;
}

/* Botão moderno com gradiente */
.btn-gradient {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #0056b3, #0099cc);
    transform: translateY(-2px);
}
