/* ===== BASE ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
}

.comprar-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.comprar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .comprar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALERIA ===== */
.comprar-galeria {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Box com altura controlada (pra não “explodir”) */
.comprar-imgbox {
  width: 100%;
  height: 340px;           /* altura fixa */
  max-height: 340px;
  display: grid;
  place-items: center;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;        /* garante que nada vaze */
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
}

/* ✅ IMAGEM PEQUENA DE VERDADE (mesmo se existir img{width:100%} em outro CSS) */
#produtoImagem {
  width: 260px !important;     /* tamanho fixo */
  max-width: 260px !important;
  height: auto !important;
  max-height: 300px !important;
  object-fit: contain !important;
  display: block !important;

  border-radius: 12px;
  background: #fff;
  padding: 10px;
  border: 1px solid #eee;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 600px) {
  .comprar-imgbox {
    height: 260px;
    max-height: 260px;
  }

  #produtoImagem {
    width: 210px !important;
    max-width: 210px !important;
    max-height: 230px !important;
    padding: 8px;
  }
}

.comprar-hint {
  margin: 0;
  font-size: 13px;
  color: #666;
  text-align: center;
  max-width: 360px;
  line-height: 1.4;
}

/* ===== DETALHES ===== */
.comprar-detalhes {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.comprar-detalhes h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #0b2c3d;
}

.comprar-desc {
  margin: 0 0 14px;
  color: #444;
  line-height: 1.6;
}

.comprar-preco {
  margin: 10px 0 18px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comprar-preco span {
  color: #666;
  font-size: 14px;
}

.comprar-preco strong {
  color: #8f0000;
  font-size: 18px;
}

/* ===== FORM ===== */
.comprar-form {
  display: grid;
  gap: 10px;
}

.comprar-form label {
  font-size: 14px;
  color: #333;
  font-weight: 700;
}

.comprar-form select,
.comprar-form input[type="number"] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.comprar-form select:focus,
.comprar-form input[type="number"]:focus {
  border-color: #b00000;
}

.comprar-btn {
  margin-top: 8px;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: #b00000;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
}

.comprar-btn:hover {
  background: #8f0000;
}

.comprar-nota {
  margin-top: 14px;
  font-size: 13px;
  color: #666;
}
