.produto-imagem {
  width: 100%;
  padding: 16px;
  background: #fff;
  text-align: center;
}

.produto-imagem img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.produto-info {
  padding: 16px;
  background: #fff;
}

.produto-info h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.produto-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffb400;
  margin-bottom: 8px;
}

.produto-preco {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
}

.produto-descricao {
  color: #666;
  line-height: 1.5;
}

.detalhe-container {
  padding: 16px;
}

/* CONTAINER DA IMAGEM */
#imagem-detalhe {
  width: 100%;
  max-width: 280px;      /* limite visual */
  height: auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;  /* evita distorção */
  border-radius: 12px;
}

.add-cart {
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  text-align: center;
}
