/* ===============================
   SEAGM MARKETPLACE STYLE
================================ */

.seagm-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

/* ITEM */
.seagm-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #0f0f0f;
    text-decoration: none;
    transition: .2s ease;
}

.seagm-item:hover {
    background: #1a1a1a;
}

/* ICON */
.seagm-icon img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

/* TEXT */
.seagm-info {
    display: flex;
    flex-direction: column;
}

.seagm-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.seagm-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

/* MOBILE HORIZONTAL SCROLL */
@media (max-width: 768px) {

    /* LIST JADI GRID 3 KOLOM */
    .seagm-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    /* ITEM */
    .seagm-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    /* ICON */
    .seagm-icon img {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    /* TEXT */
    .seagm-title {
        font-size: 12px;
        margin-top: 6px;
        line-height: 1.3;
    }

    .seagm-subtitle {
        font-size: 11px;
    }
}

/* ===============================
   MINIMALIST TAB STYLE
================================ */

.nx-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* TAB LIST */
.nx-tablist {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ITEM */
.nx-tab-item {
    position: relative;
}

/* LINK */
.nx-tab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 4px;
    text-decoration: none;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
    transition: color .2s ease;
}

.nx-tab-link i {
    font-size: 18px;
}

/* ACTIVE */
.nx-tab-link.active {
    color: #a855f7;
}

.nx-tab-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #a855f7;
    border-radius: 2px;
}

/* HOVER */
.nx-tab-link:hover {
    color: #c084fc;
}

/* MOBILE */
@media (max-width: 768px) {
    .nx-tablist {
        gap: 24px;
    }
}
