/* Seletores de tamanho PP–GG (Parte de Cima / Parte de Baixo) — substituem os reais (só P/M/G) */

.tamanho-selector-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}

.tamanho-grupo-titulo {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.tamanho-grupo-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tamanho-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.tamanho-btn:hover {
  border-color: #1a1a1a;
}

.tamanho-btn.ativo {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
}
