body.page-loja {
    visibility: hidden;
}
body.page-loja.ready {
    visibility: visible;
}

/* layout base */
.menu-list {
    padding: 10px 15px 90px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* card item */
.loja-card {
    background: linear-gradient(145deg, #0f0f12, #1a1a1f);
    border: 1px solid #27272a;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.loja-card:hover {
    transform: scale(1.02);
    border-color: #facc15;
}

/* info */
.loja-info {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #f4f4f5;
}

.loja-icon {
    width: 36px;
    height: 36px;
    background: #09090b;
    border: 1px solid #18181b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* botão */
.btn-buy {
    background: #facc15;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}

/* modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: #111113;
    border: 1px solid #27272a;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
