.meu-carrinho-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  font-family: 'Arial', sans-serif;
}

.carrinho-coluna {
  flex: 2;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.resumo-compra {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  height: fit-content;
}

.resumo-compra h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: .5rem;
}

.resumo-compra .total {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  font-weight: bold;
}

.botao-finalizar,
.btn-finalizar {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  padding: 1rem;
  background: #3483fa;
  color: white;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.meu-carrinho-tabela {
  width: 100%;
  border-collapse: collapse;
}

.meu-carrinho-tabela th,
.meu-carrinho-tabela td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.produto-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.produto-info img {
  width: 60px;
  border-radius: 5px;
}

.qty-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.qty-control button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  background: #f0f0f0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.qty-control .qty-input {
  width: 40px;
  text-align: center;
  font-size: 1rem;
  border: none;
  background: transparent;
}

a.remove {
  color: red;
  text-decoration: none;
  font-size: 1.2rem;
}

.produto-card {
  background: #fff;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.produto-card img {
  max-width: 100%;
}

.produto-card .price {
  font-weight: bold;
  margin: .5rem 0;
}


.qty-control button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  border: none;
  background-color: #3483fa; /* Azul Mercado Livre */
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-control button:hover {
  background-color: #2968c8;
}

