/* ================================================
   GO.SUMMIT — Main Stylesheet
   Tema: Hijau Alam | Font: Outfit + Lora
   ================================================ */

/* ── Variables ── */
:root {
    --gs-g1:#334C2F;
    --gs-g2: #334C2F;
    --gs-g3: #4caf75;
    --gs-g4: #a8e6c0;
    --gs-g5: #e8f7ee;
    --gs-g6: #f0f7f2;
    --gs-orange: #e67e22;
    --gs-red: #e74c3c;
    --gs-amber: #f39c12;
    --gs-blue: #2980b9;
    --gs-txt: #1a2e1f;
    --gs-txt2: #4a6650;
    --gs-txt3: #7a9a82;
    --gs-bg: #f0f7f2;
    --gs-white: #ffffff;
    --gs-border: #d4e8db;
    --gs-r: 8px;
    --gs-r-lg: 12px;
    --gs-sidebar-w: 200px;
    --gs-topbar-h: 56px;
    --gs-navmenu-h: 44px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--gs-bg);
    color: var(--gs-txt);
    font-size: 14px;
}

/* ── TOPBAR ── */
.gs-topbar {
    background: var(--gs-g1);
    height: var(--gs-topbar-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.gs-topbar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 48px;
    height: 100%;
    width: 100%;
}
.gs-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.gs-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gs-g3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Search form disembunyikan (dihapus dari navbar) */
.gs-search-form { display: none; }

.gs-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}
.gs-topbar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    color: rgba(255,255,255,.85);
    font-size: 11px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: color .15s;
}
.gs-topbar-icon:hover { color: #fff; }
.gs-topbar-icon i { font-size: 22px; }
.gs-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--gs-orange);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}
.gs-avatar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gs-g3);
    border: 2px solid var(--gs-g4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
}
.gs-avatar-btn img { width: 100%; height: 100%; object-fit: cover; }
.gs-avatar-btn.dropdown-toggle::after { display: none; }
.gs-btn-outline-white {
    border: 1px solid rgba(255,255,255,.6);
    background: transparent;
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--gs-r);
    font-size: 13px;
    text-decoration: none;
    transition: all .15s;
}
.gs-btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }
.gs-btn-white {
    background: #fff;
    color: var(--gs-g1);
    padding: 6px 14px;
    border-radius: var(--gs-r);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
}
.gs-btn-white:hover { background: var(--gs-g4); }
.gs-dropdown { border: 1px solid var(--gs-border); border-radius: var(--gs-r-lg); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.gs-dropdown .dropdown-item { font-size: 13px; padding: 8px 16px; display: flex; align-items: center; }
.gs-dropdown .dropdown-item:hover { background: var(--gs-g5); color: var(--gs-g1); }

/* ── NAV MENU ── */
.gs-navmenu {
    background: var(--gs-g2);
    height: var(--gs-navmenu-h);
    overflow: hidden;
}
.gs-navmenu-inner {
    display: flex;
    justify-content: center; /* ★ DIUBAH: center nav items */
    overflow-x: auto;
    padding: 0 48px;
    width: 100%;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--gs-g3) transparent;
}
.gs-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .15s;
}
.gs-nav-item:hover, .gs-nav-item.active { color: #fff; border-bottom-color: var(--gs-g4); }
.gs-nav-item i { font-size: 16px; }

/* ── MAIN LAYOUT ── */
.gs-main-wrapper {
    display: flex;
    min-height: calc(100vh - var(--gs-topbar-h) - var(--gs-navmenu-h) - 80px);
    max-width: 1400px;
    margin: 0 auto;
}

/* ── SIDEBAR ── */
.gs-sidebar {
    width: var(--gs-sidebar-w);
    min-width: var(--gs-sidebar-w);
    background: var(--gs-white);
    border-right: 1px solid var(--gs-border);
    padding: 12px 0;
    position: sticky;
    top: calc(var(--gs-topbar-h) + var(--gs-navmenu-h));
    height: calc(100vh - var(--gs-topbar-h) - var(--gs-navmenu-h));
    overflow-y: auto;
    scrollbar-width: thin;
}
.gs-sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gs-border);
    margin-bottom: 8px;
}
.gs-sidebar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gs-g4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--gs-g1);
    overflow: hidden;
    flex-shrink: 0;
}
.gs-sidebar-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gs-sidebar-name { font-size: 13px; font-weight: 600; color: var(--gs-txt); }
.gs-sidebar-level { font-size: 11px; color: var(--gs-txt3); }
.gs-sidebar-section { margin-bottom: 4px; }
.gs-sidebar-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--gs-txt3);
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 8px 16px 6px;
}
.gs-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--gs-txt2);
    cursor: pointer;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all .12s;
}
.gs-sidebar-link:hover { background: var(--gs-g5); color: var(--gs-g1); }
.gs-sidebar-link.active {
    background: var(--gs-g5);
    color: var(--gs-g1);
    border-left-color: var(--gs-g2);
    font-weight: 600;
}
.gs-sidebar-link i { font-size: 16px; color: var(--gs-g2); }

/* ── CONTENT ── */
.gs-content { flex: 1; padding: 16px; min-width: 0; }

/* ── BANNER ── */
.gs-banner-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.gs-banner-main {
    flex: 2;
    border-radius: var(--gs-r-lg);
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, #1a2e1f 0%, #334C2F 60%, #3a6b42 100%);
}
.gs-banner-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://superlive.id/storage/articles/516f043d-f6b6-4f01-b32a-f5017638d329.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.4;
    z-index: 0;
}
.gs-banner-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,46,31,0.85) 0%, rgba(26,46,31,0.5) 60%, rgba(26,46,31,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}
.gs-banner-main > * {
    position: relative;
    z-index: 2;
}

.gs-banner-eyebrow { font-size: 11px; opacity: .75; margin-bottom: 6px; font-weight: 500; letter-spacing: .5px; }
.gs-banner-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    max-width: 65%;
}
.gs-banner-sub { font-size: 13px; opacity: .85; margin-top: 8px; max-width: 60%; line-height: 1.5; }
.gs-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--gs-g1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 14px;
    width: fit-content;
    text-decoration: none;
    transition: all .15s;
}
.gs-banner-cta:hover { background: var(--gs-g4); color: var(--gs-g1); }
.gs-banner-side { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.gs-banner-small {
    border-radius: var(--gs-r-lg);
    padding: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}
.gs-bs-blue { background: #2d4a6e; }
.gs-bs-brown { background: #5a3220; }
.gs-banner-tag {
    display: inline-block;
    background: rgba(255,255,255,.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-bottom: 6px;
    width: fit-content;
}
.gs-banner-small h3 { font-size: 13px; font-weight: 600; line-height: 1.4; }
.gs-banner-discount { font-size: 20px; font-weight: 700; margin-top: 6px; }
.gs-banner-note { font-size: 12px; opacity: .8; margin-top: 4px; }

/* ── PROMO STRIP ── */
.gs-promo-strip { display: flex; gap: 10px; margin-bottom: 16px; }
.gs-promo-card {
    flex: 1;
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-r);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: border-color .15s;
}
.gs-promo-card:hover { border-color: var(--gs-g3); }
.gs-promo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--gs-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.gs-pi-green { background: #e8f7ee; }
.gs-pi-amber { background: #fff3e0; }
.gs-pi-pink  { background: #fce4ec; }
.gs-pi-blue  { background: #e3f2fd; }
.gs-promo-card h4 { font-size: 13px; font-weight: 600; color: var(--gs-txt); margin: 0; }
.gs-promo-card p  { font-size: 11px; color: var(--gs-txt3); margin: 0; }

/* ── SECTION ── */
.gs-section { margin-bottom: 24px; }
.gs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.gs-section-title { font-size: 15px; font-weight: 600; color: var(--gs-g1); }
.gs-see-all { font-size: 13px; color: var(--gs-g2); cursor: pointer; display: flex; align-items: center; gap: 3px; text-decoration: none; }
.gs-see-all:hover { color: var(--gs-g1); }

/* ── KATEGORI ── */
.gs-cat-grid {
    display: flex;
    justify-content: center; /* ★ DIUBAH: center kategori */
    flex-wrap: wrap;          /* ★ DIUBAH: wrap supaya bisa center */
    gap: 4px;
    padding-bottom: 6px;
}
.gs-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    min-width: 80px;
    border-radius: var(--gs-r);
    transition: background .15s;
    color: var(--gs-txt2);
}
.gs-cat-item:hover { background: var(--gs-g5); }
.gs-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gs-g5);
    border: 2px solid var(--gs-g4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .15s;
}
.gs-cat-item:hover .gs-cat-icon { background: var(--gs-g4); border-color: var(--gs-g2); }
.gs-cat-name { font-size: 11px; text-align: center; line-height: 1.3; max-width: 72px; }

/* ── STATISTIK ── */
.gs-stats-row { display: flex; gap: 12px; margin-bottom: 20px; }
.gs-stat-card {
    flex: 1;
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-r-lg);
    padding: 16px;
    text-align: center;
}
.gs-stat-icon { font-size: 28px; color: var(--gs-g2); display: block; margin-bottom: 8px; }
.gs-stat-num { font-size: 24px; font-weight: 700; color: var(--gs-g1); line-height: 1; }
.gs-stat-label { font-size: 12px; color: var(--gs-txt3); margin-top: 4px; }

/* ── PRODUK ── */
.gs-prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 12px; }
.gs-prod-card {
    background: var(--gs-white);
    border-radius: var(--gs-r-lg);
    border: 1px solid var(--gs-border);
    overflow: hidden;
    position: relative;
    transition: all .2s;
}
.gs-prod-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,77,46,.12); border-color: var(--gs-g3); }
.gs-prod-img {
    height: 130px;
    background: var(--gs-g5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.gs-prod-img-actual { width: 100%; height: 100%; object-fit: cover; }
.gs-prod-img-placeholder { font-size: 44px; }
.gs-prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gs-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.4;
}
.gs-badge-new { background: var(--gs-g2) !important; }
.gs-prod-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gs-red);
    cursor: pointer;
    z-index: 2;
    transition: background .15s;
}
.gs-prod-fav:hover { background: #fff; }
.gs-prod-info { padding: 10px; }
.gs-prod-name {
    font-size: 12px;
    color: var(--gs-txt);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gs-prod-price { font-size: 14px; font-weight: 700; color: var(--gs-orange); }
.gs-prod-price-row { display: flex; gap: 6px; align-items: center; margin-top: 2px; }
.gs-prod-ori { font-size: 11px; color: var(--gs-txt3); text-decoration: line-through; }
.gs-prod-disc { font-size: 11px; color: var(--gs-red); font-weight: 600; }
.gs-prod-stars { color: var(--gs-amber); font-size: 11px; display: flex; align-items: center; gap: 1px; margin-top: 3px; }
.gs-prod-rating-count { color: var(--gs-txt3); margin-left: 3px; }
.gs-prod-sold { font-size: 11px; color: var(--gs-txt3); margin-top: 2px; }
.gs-btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    margin-top: 8px;
    background: var(--gs-g5);
    border: 1px solid var(--gs-g4);
    border-radius: var(--gs-r);
    padding: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gs-g2);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    font-family: 'Outfit', sans-serif;
}
.gs-btn-add-cart:hover { background: var(--gs-g4); color: var(--gs-g1); }

/* ── RENCANA MENDAKI ── */
.gs-plan-list {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-r-lg);
    overflow: hidden;
}
.gs-plan-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gs-g5);
}
.gs-plan-item:last-child { border-bottom: none; }
.gs-plan-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.gs-plan-info { flex: 1; }
.gs-plan-name { font-size: 13px; font-weight: 500; color: var(--gs-txt); }
.gs-plan-date { font-size: 11px; color: var(--gs-txt3); margin-top: 2px; }
.gs-plan-status { font-size: 11px; padding: 3px 10px; border-radius: 10px; font-weight: 600; white-space: nowrap; }
.gs-status-planning    { background: #e3f2fd; color: #1565c0; }
.gs-status-preparation { background: #fff3e0; color: var(--gs-orange); }
.gs-status-ready       { background: var(--gs-g5); color: var(--gs-g2); }
.gs-status-completed   { background: #e8eaf6; color: #3f51b5; }

/* ── FORUM ── */
.gs-forum-list { display: flex; flex-direction: column; gap: 8px; }
.gs-forum-card {
    background: var(--gs-white);
    border-radius: var(--gs-r);
    border: 1px solid var(--gs-border);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--gs-txt);
    transition: border-color .15s;
}
.gs-forum-card:hover { border-color: var(--gs-g3); }
.gs-forum-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gs-g4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gs-g1);
    flex-shrink: 0;
}
.gs-forum-body { flex: 1; }
.gs-forum-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.gs-forum-meta { font-size: 11px; color: var(--gs-txt3); }
.gs-forum-tag {
    display: inline-block;
    background: var(--gs-g5);
    color: var(--gs-g2);
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-right: 4px;
}
.gs-forum-stats { display: flex; gap: 14px; margin-top: 6px; font-size: 11px; color: var(--gs-txt3); }
.gs-forum-stats span { display: flex; align-items: center; gap: 3px; }
.gs-forum-stats i { font-size: 13px; }

/* ── ARTIKEL ── */
.gs-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gs-article-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    color: var(--gs-txt);
    transition: all .2s;
    display: flex;
    flex-direction: column;
}
.gs-article-card:hover { transform: translateY(-2px); border-color: var(--gs-g3); }
.gs-article-thumb {
    height: 110px;
    background: var(--gs-g5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gs-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gs-article-body { padding: 10px; flex: 1; }
.gs-article-cat { font-size: 11px; color: var(--gs-g2); font-weight: 600; margin-bottom: 4px; }
.gs-article-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.gs-article-meta { font-size: 11px; color: var(--gs-txt3); }

/* ── BUTTONS ── */
.gs-btn-primary-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gs-g2);
    color: #fff;
    border: none;
    border-radius: var(--gs-r);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: background .15s;
}
.gs-btn-primary-sm:hover { background: var(--gs-g1); color: #fff; }

.gs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gs-g1);
    color: #fff !important;
    border: none;
    border-radius: var(--gs-r);
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    transition: background .15s;
}
.gs-btn-primary:hover { background: var(--gs-g3); color: #fff !important; }

/* ── ALERTS ── */
.gs-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--gs-r);
    margin-bottom: 16px;
    font-size: 13px;
    transition: opacity .3s;
}
.gs-alert-success { background: var(--gs-g5); color: var(--gs-g1); border: 1px solid var(--gs-g4); }
.gs-alert-danger   { background: #fce4e4; color: #c0392b; border: 1px solid #f5c6cb; }

/* ── TOAST ── */
.gs-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: var(--gs-r);
    font-size: 13px;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.gs-toast-success { background: var(--gs-g1); color: #fff; }
.gs-toast-error   { background: #c0392b; color: #fff; }

/* ── EMPTY STATE ── */
.gs-empty-state {
    text-align: center;
    padding: 32px;
    color: var(--gs-txt3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gs-empty-state a { color: var(--gs-g2); }

/* ── FOOTER ── */
.gs-footer {
    background: var(--gs-g1);
    color: rgba(255,255,255,.85);
    margin-top: 32px;
    padding: 32px 20px 0;
}
.gs-footer-inner {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.gs-footer-brand { display: flex; align-items: flex-start; gap: 10px; flex-shrink: 0; }
.gs-footer-brand .gs-logo-icon { width: 36px; height: 36px; font-size: 20px; }
.gs-footer-brand strong { font-family: 'Lora', serif; font-size: 16px; color: #fff; }
.gs-footer-tagline { font-size: 12px; font-style: italic; opacity: .7; margin-top: 2px; }
.gs-footer-links { display: flex; gap: 40px; flex: 1; justify-content: flex-end; }
.gs-footer-links > div { display: flex; flex-direction: column; gap: 6px; }
.gs-footer-links h6 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.gs-footer-links a { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; }
.gs-footer-links a:hover { color: var(--gs-g4); }
.gs-footer-bottom {
    text-align: center;
    padding: 12px;
    font-size: 12px;
    opacity: .6;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── LOGO IMAGE ── */
.gs-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── LAYOUT TANPA SIDEBAR (dashboard user) ── */
.gs-main-no-sidebar { width: 100%; }
.gs-content-full {
    padding: 20px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .gs-sidebar { display: none; }
    .gs-topbar-inner, .gs-navmenu-inner { padding: 0 20px; }
    .gs-content-full { padding: 16px 20px; }
    .gs-banner-row { flex-direction: column; }
    .gs-banner-side { flex-direction: row; }
    .gs-promo-strip { flex-wrap: wrap; }
    .gs-promo-strip .gs-promo-card { min-width: calc(50% - 5px); }
    .gs-article-grid { grid-template-columns: repeat(2, 1fr); }
    .gs-stats-row { flex-wrap: wrap; }
    .gs-stats-row .gs-stat-card { min-width: calc(50% - 6px); }
}
@media (max-width: 600px) {
    .gs-topbar-inner, .gs-navmenu-inner { padding: 0 16px; }
    .gs-content-full { padding: 12px 16px; }
    .gs-topbar-icon small { display: none; }
    .gs-banner-title { font-size: 20px; }
    .gs-article-grid { grid-template-columns: 1fr; }
    .gs-prod-grid { grid-template-columns: repeat(2, 1fr); }
}