
/* 🔥 ANTI-FLICKER */
body.page-runas {

    visibility: hidden;

    background: #09090b;
}

body.page-runas.ready {

    visibility: visible;
}

/* =========================
   HEADER
========================= */

.header-loja {

    padding: 10px 15px;

    color: #facc15;

    font-size: 13px;

    font-weight: bold;
}

/* =========================
   MENU
========================= */

.menu-list {

    padding: 10px 15px 90px 15px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 10px;
}

/* =========================
   CATEGORY
========================= */

.menu-category {

    font-size: 10px;

    color: #71717a;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin: 12px 0 4px 5px;

    font-weight: 800;
}

/* =========================
   ITEM
========================= */

.menu-item {

    background: #111113;

    border: 1px solid #27272a;

    padding: 10px 12px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-decoration: none;

    min-height: 46px;

    transition:
        background .15s ease,
        border-color .15s ease,
        transform .08s ease;
}

.menu-item:hover {

    border-color: #3f3f46;
}

.menu-item:active {

    transform: scale(0.98);
}

/* =========================
   INFO
========================= */

.menu-info {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #f4f4f5;

    font-size: 13px;

    white-space: nowrap;
}

/* =========================
   ICON
========================= */

.menu-icon {

    width: 30px;

    height: 30px;

    background: #09090b;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    font-size: 16px;

    border: 1px solid #18181b;

    flex-shrink: 0;
}

/* =========================
   RUNA IMAGE
========================= */

.menu-info img {

    width: 38px;

    height: 38px;

    object-fit: contain;

    flex-shrink: 0;

    image-rendering: auto;
}

/* =========================
   TEXTOS
========================= */

.menu-info > div {

    display: flex;

    flex-direction: column;
}

.menu-info > div > div:nth-child(1) {

    color: #f4f4f5;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 2px;
}

.menu-info > div > div:nth-child(2) {

    color: #71717a;

    font-size: 10px;

    font-weight: 600;
}

.menu-info > div > div:nth-child(3) {

    color: #facc15;

    font-size: 10px;

    font-weight: 700;

    margin-top: 2px;
}

/* =========================
   ARROW / ACTION
========================= */

.arrow {

    color: #22c55e;

    font-size: 11px;

    font-weight: bold;

    flex-shrink: 0;
}

/* =========================
   LOCKED
========================= */

.menu-item[style*="grayscale"] {

    opacity: .4;
}

/* =========================
   RARIDADES
========================= */

.raridade-comum {

    color: #a1a1aa;
}

.raridade-raro {

    color: #3b82f6;
}

.raridade-epico {

    color: #a855f7;
}

.raridade-lendario {

    color: #facc15;
}

.raridade-mistico {

    color: #ef4444;
}

.raridade-divino {

    color: #ffffff;
}


/* =========================
   PODER RUNA
========================= */

.menu-info > div > div:nth-child(2) {

    color: #22c55e !important;

    font-size: 10px;

    font-weight: 700;

    text-shadow:
        0 0 8px rgba(34,197,94,.18);
}


/* =========================
   SETAS RUNAS
========================= */

.arrow {

    color: #facc15 !important;

    opacity: 1 !important;

    text-shadow:
        0 0 8px rgba(250,204,21,.14);
}

