.shopping-page {
  display: flex;
  min-height: 100vh; /* ocupa a tela toda */
  background: #0f0f0f;
}

/* MENU LATERAL */
.shopping-menu {
  width: 260px;
  background: #141414;
  border-right: 1px solid #222;
  padding: 20px;
  min-height: 100vh; /* força ir até o fundo */
}
.menu-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  color: #f00707;
}



.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #1b1b1b;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

.menu-list li:hover {
  background: #8f1313;
}

/* MENU ATIVO */
.menu-list li.active {
  background: #c01111;
  color: #fff;
  font-weight: bold;
}



/* CONTEÚDO */
.shopping-content {
  flex: 1;
  padding: 25px;
}

.shopping-content h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

/* GRID DE ITENS */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* APENAS PARA SET'S */
.items-grid.sets-grid {
  grid-template-columns: repeat(5, 220px); /* mesmo tamanho antigo */
  justify-content: left;                /* centraliza as colunas */
}

.item-card {
  background: #f2f2f2;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #1f1f1f;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  position: relative;
}

.item-img {
  border: 1px solid rgba(194, 0, 0, 0.6);

}
.item-img img {
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;

  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;    /* ESSENCIAL */
  mix-blend-mode: normal;
}

.item-name {
  font-weight: bold;
  color: #dd0000;
  text-align: center;
}

.buy-btn {
  background: #c01111;
  color: #000;
  border: none;
  padding: 8px;
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.buy-btn:hover {
  opacity: 0.85;
  background: #d80b0b;
}

.shopping-content h1 {
  color: #dd1111; /* vermelho */
  margin-bottom: 20px;
  font-size: 24px;
}

.item-price {
  color: #c62828;
  font-weight: bold;
}

.buy-btn:hover {
  background: #a00000;
}


.buy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.buy-modal.hidden {
  display: none;
}

.buy-modal-content {
  background: #141414;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  border: 1px solid #c01111;
  text-align: center;
  box-shadow: 0 0 15px rgba(192,17,17,.4);
}

.buy-modal-content h2 {
  color: #dd1111;
  margin-bottom: 15px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
}

.option-group label {
  cursor: pointer;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.btn-cancel,
.btn-confirm {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-cancel {
  background: #333;
  color: #fff;
}

.btn-cancel:hover {
  background: #444;
}

.btn-confirm {
  background: #c01111;
  color: #000;
}

.btn-confirm:hover {
  background: #e01414;
}


.modal-item-img {
  width: 151px;
  height: 151px;
  margin: 10px auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #0f0f0f; /* fundo escuro real */
  border: 1px solid rgba(192, 17, 17, 0.6);

}

.modal-item-img img {
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* opções lado a lado */
.option-group.horizontal {
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.option-group.horizontal label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: bold;
}



.msg-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.msg-modal.hidden {
  display: none;
}

.msg-modal-content {
  background: #141414;
  padding: 20px 25px;
  border: 1px solid #c01111;
  border-radius: 4px;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 0 15px rgba(192,17,17,.5);
}

.msg-modal-content p {
  color: #fff;
  margin-bottom: 15px;
  font-size: 15px;
}

.msg-modal-content button {
  background: #c01111;
  color: #000;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 3px;
}

.msg-modal-content button:hover {
  background: #e01414;
}

.item-invisivel {
  opacity: 0;
  pointer-events: none;
}

.buy-btn:disabled {
  background: #333;
  color: #777;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ============================================
   PACOTE: BADGE
   ============================================ */
.pacote-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #c62828, #8b0000);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 8px rgba(198, 40, 40, 0.5);
}

/* ============================================
   PACOTE: LISTA DE ITENS NO MODAL
   ============================================ */
.pacote-list-title {
  color: #ff5c5c;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 8px;
  text-align: left;
}

.pacote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
  max-height: 200px;
  overflow-y: auto;
}

.pacote-list li {
  padding: 6px 10px;
  margin-bottom: 4px;
  background: #1a1a1a;
  border: 1px solid #2a0000;
  border-radius: 4px;
  color: #ddd;
  font-size: 13px;
}

.pacote-list li::before {
  content: "\2022 ";
  color: #c62828;
  font-weight: bold;
  margin-right: 6px;
}




/* MENU DIREITO */
.shopping-menu-right {
  width: 200px;
  background: #141414;
  border-left: 1px solid #222;
  padding: 20px;
  min-height: 100vh;
}

/* itens do menu classe */
.class-item {
  padding: 10px 12px;
  margin-bottom: 6px;
  background: #1b1b1b;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

.class-item:hover {
  background: #8f1313;
}

.class-item.active {
  background: #c01111;
  color: #fff;
  font-weight: bold;
}



.info-tooltip {
  position: relative;
  bottom: 257px;
  left: 210px;
}

/* bolinha do i */
.info-icon {
  width: 22px;
  height: 22px;
  background: #c01111;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 0 6px rgba(192,17,17,.6);
}

/* caixa escondida */
.info-box {
  position: relative;
  bottom: 108px;
  right: 214px;
  background: #141414;
  color: #fff;
  padding: 10px;
  width: 220px;
  border: 1px solid #c01111;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s;
  box-shadow: 0 0 10px rgba(0,0,0,.5);
}

/* setinha */
.info-box::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 10px;
  border-width: 6px;
  border-style: solid;
  border-color: #141414 transparent transparent transparent;
}

/* hover ativa */
.info-tooltip:hover .info-box {
  opacity: 1;
  transform: translateY(0);
}