
/* 🔥 ANTI-FLICKER */

body.page-loja-equip {

    visibility: hidden;

    background: #09090b;
}

body.page-loja-equip.ready {

    visibility: visible;
}

/* =========================
   XP BAR
========================= */

.xp-bg {

    width: 100%;

    height: 8px;

    background: #18181b;

    border-radius: 4px;

    margin-top: 5px;

    overflow: hidden;

    border: 1px solid #27272a;
}

#xp-bar {

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #facc15,
            #eab308
        );

    width: 0%;

    transition: width 0.3s ease;
}

/* =========================
   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;
}

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

.item-title {

    font-size: 12px;

    font-weight: 700;

    color: #f4f4f5;

    margin-bottom: 2px;
}

.item-set {

    font-size: 10px;

    color: #a1a1aa;
}

.item-details {

    font-size: 10px;

    color: #71717a;

    margin-top: 2px;
}

.item-gold {

    color: #facc15;

    font-weight: 700;
}

.item-power {

    color: #22c55e;

    font-weight: 700;
}

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

.arrow {

    color: #3f3f46;

    font-size: 12px;

    opacity: 0.4;
}

.buy-action {

    color: #22c55e;

    font-size: 11px;

    font-weight: bold;

    opacity: 1;
}

.set-price {

    color: #facc15;

    font-size: 11px;

    font-weight: bold;

    opacity: 1;
}

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

.header-loja {

    padding:
        10px
        15px;

    color: #facc15;

    font-size: 13px;

    font-weight: bold;
}


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

.arrow {

    color: #facc15 !important;

    opacity: 1 !important;

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

