/* ===== STICKY NAV TABS ===== */
.kj-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}
.kj-sticky-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.kj-sticky-nav__inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.kj-sticky-nav__inner::-webkit-scrollbar {
    display: none;
}
.kj-sticky-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}
.kj-sticky-nav__link:hover {
    color: var(--primary);
    background: #f8fafc;
}
.kj-sticky-nav__link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 700;
}

