/* CONTENEDOR GENERAL */
.armory-layout {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    justify-items: center;
    margin-top: 20px;
}

/* COLUMNA IZQUIERDA Y DERECHA */
.char-gear-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 180px;
    align-items: center;
}

/* CENTRO */
.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* VIEWER */
#viewer3d {
    width: 360px;
    height: 480px;
    background: #000;
    border-radius: 6px;
}

/* SLOTS */
.gear-slot {
    width: 108px;
    height: 120px;
    text-align: center;
}

.slot-name {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 4px;
}

.item-icon {
    width: 54px;
    height: 54px;
}

.item-name {
    font-size: 11px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-slot {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

/* FILA DE ABAJO */
.bottom-col {
    grid-column: 1 / span 3;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

/* SCALE GENERAL */
.armory-scale {
    transform: scale(0.85);
    transform-origin: top center;
}
