/* Estiliza o card do produto */
.product-card {
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    width: 250px;
    padding: 15px;
}

input.form-control{
    padding: 8px 1px !important;
  }

.flex{
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

/* Imagem do produto */
.product-image {
    width: 100%;
    height: 250px; /* Ajuste conforme necessário */
    object-fit: cover;
}

/* Estilo do nome do produto */
.product-name {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Preço */
.price {
    font-size: 1.2rem;
    color: #333;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.new-price {
    font-weight: bold;
    color: #c9a23e; /* Dourado */
}

/* Badge de desconto */
.discount-badge {
    background: #d9534f;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 5px;
}

/* Botão de compra */
.buy-button {
    background: black;
    color: white;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.2s;
}

.buy-button:hover {
    background: #333;
}

/* Quantidade */
.quantity-input {
    width: 50px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
