/* PATCH v23 — remove coluna duplicada + tamanhos reais dos PNGs (sem distorção) */

.donate-page .inventory-grid.inv-5{
  display:grid;
  grid-template-columns: repeat(5, 96px);
  grid-auto-rows: 96px;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(120,150,255,.18);
  background: linear-gradient(180deg, rgba(5,10,28,.85), rgba(3,6,18,.92));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  align-content: start;
  justify-content: start;
}

/* Slot base */
.donate-page .inventory-grid.inv-5 .slot{
  width: 96px;
  height: 96px;
  border-radius: 12px;
  border: 1px solid rgba(120,150,255,.25);
      background: #000;
box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.45),
    0 10px 18px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  overflow: hidden;
}

/* Armor ocupa 2x2, mas imagem mantém tamanho real */
.donate-page .inventory-grid.inv-5 .slot--armor{
  grid-column: span 2;
  grid-row: span 2;
  width: auto;
  height: auto;
}

/* Imagem: NÃO estica */
.donate-page .inventory-grid.inv-5 .inv-img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display:block;
  image-rendering: auto;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.55));
}

/* Tamanhos reais solicitados */
.donate-page .inventory-grid.inv-5 .inv-img.sz-22{ width:22px; height:22px; }
.donate-page .inventory-grid.inv-5 .inv-img.sz-44{ width:44px; height:44px; }
.donate-page .inventory-grid.inv-5 .inv-img.sz-44x66{ width:44px; height:66px; }
.donate-page .inventory-grid.inv-5 .inv-img.sz-44x88{ width:44px; height:88px; }
.donate-page .inventory-grid.inv-5 .inv-img.sz-66x88{ width:66px; height:88px; }

/* Label (nome do item) */
.donate-page .inventory-grid.inv-5 .slot-label{
  position:absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  color: rgba(230,240,255,.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events:none;
}

/* hover suave */
.donate-page .inventory-grid.inv-5 .slot:hover{
  border-color: rgba(160,200,255,.55);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.45),
    0 12px 22px rgba(0,0,0,.42);
}

/* Mobile */
@media (max-width: 980px){
  .donate-page .inventory-grid.inv-5{
    grid-template-columns: repeat(3, 96px);
    width: 100%;
  }
  .donate-page .inventory-grid.inv-5 .slot--armor{
    grid-column: span 3;
    grid-row: span 2;
  }
}


/* Price banners + compare bullets */
.price-banner{
  height:200px;
  border-radius:14px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
  margin: 6px auto 12px;
}
.price-banner img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}
.price-bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  text-align:left;
  color: rgba(240,244,255,0.92);
  font-size: 14px;
  line-height: 1.55;
}
.price-bullets li{ margin: 4px 0; }
