:root {
    --bgb-orange: #FB8C3C;
    --bgb-orange-main: #FF7A1A;
    --bgb-orange-dark: #E96300;
    --bgb-orange-soft: #FFF3EA;
    --bgb-text: #172033;
    --bgb-muted: #6B7280;
    --bgb-border: #F1E5DC;
    --bgb-card: #FFFFFF;
    --bgb-bg: #FFFFFF;
    --bgb-shadow: 0 22px 60px rgba(23, 32, 51, 0.08);
    --bgb-shadow-hover: 0 28px 80px rgba(255, 122, 26, 0.16);
}

.bgb-help-page {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #ffffff;
}


.bgb-help-page .container {
    position: relative;
    z-index: 1;
}

.bgb-help-hero {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.bgb-help-badge {
    width: fit-content;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 122, 26, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px rgba(255, 122, 26, 0.08);
    color: var(--bgb-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.bgb-help-badge span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bgb-orange), var(--bgb-orange-main));
    box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.13);
}

.bgb-help-hero h1 {
    margin: 0;
    color: var(--bgb-text);
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.bgb-help-hero p {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--bgb-muted);
    font-size: 18px;
    line-height: 1.75;
}

.bgb-help-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 760px;
    margin: 34px auto 0;
    padding: 8px;
    border: 1px solid rgba(255, 122, 26, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--bgb-shadow);
}

.bgb-help-search-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgb-orange-main);
    font-size: 22px;
}

.bgb-help-search input {
    width: 100%;
    height: 52px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--bgb-text);
    font-size: 15px;
    font-weight: 600;
}

.bgb-help-search input::placeholder {
    color: #A0A7B4;
    font-weight: 500;
}

.bgb-help-search button {
    height: 52px;
    min-width: 132px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bgb-orange), var(--bgb-orange-main));
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255, 122, 26, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bgb-help-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(255, 122, 26, 0.34);
}

.bgb-help-section {
    margin-top: 76px;
}

.bgb-help-section-head {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.bgb-help-section-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--bgb-orange-main);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bgb-help-section-head h2 {
    margin: 0;
    color: var(--bgb-text);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.bgb-help-section-head p {
    margin: 14px auto 0;
    color: var(--bgb-muted);
    font-size: 16px;
    line-height: 1.7;
}

.bgb-help-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.bgb-help-category-card {
    position: relative;
    display: flex;
    gap: 16px;
    min-height: 168px;
    padding: 24px;
    border: 1px solid var(--bgb-border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 44px rgba(23, 32, 51, 0.06);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bgb-help-category-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.07);
    transition: transform 0.18s ease;
}

.bgb-help-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 26, 0.28);
    box-shadow: var(--bgb-shadow-hover);
}

.bgb-help-category-card:hover::after {
    transform: scale(1.12);
}

.bgb-help-category-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff4eb, #ffffff);
    color: var(--bgb-orange-main);
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 122, 26, 0.14);
}

.bgb-help-category-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.bgb-help-category-content h3 {
    margin: 0;
    color: var(--bgb-text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.bgb-help-category-content p {
    display: -webkit-box;
    margin: 8px 0 0;
    color: var(--bgb-muted);
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bgb-help-category-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: var(--bgb-orange-main);
    font-size: 13px;
    font-weight: 900;
}

.bgb-help-category-meta i {
    font-size: 16px;
    transition: transform 0.18s ease;
}

.bgb-help-category-card:hover .bgb-help-category-meta i {
    transform: translateX(3px);
}

.bgb-help-popular {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 880px;
    margin: 34px auto 0;
}

.bgb-help-article-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--bgb-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 36px rgba(23, 32, 51, 0.05);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bgb-help-article-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 26, 0.25);
    box-shadow: 0 22px 56px rgba(255, 122, 26, 0.13);
}

.bgb-help-article-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--bgb-orange-soft);
    color: var(--bgb-orange-main);
    font-size: 21px;
}

.bgb-help-article-title {
    min-width: 0;
    flex: 1;
    color: var(--bgb-text);
    font-size: 14px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bgb-help-article-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #98A1B2;
    font-size: 12px;
    font-weight: 800;
}

.bgb-help-cta {
    position: relative;
    margin-top: 78px;
    padding: 54px 26px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 30%),
        linear-gradient(135deg, #FB8C3C 0%, #FF7A1A 55%, #F06400 100%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(255, 122, 26, 0.26);
}

.bgb-help-cta-glow {
    position: absolute;
    right: -110px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.bgb-help-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.bgb-help-cta-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    font-size: 31px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}

.bgb-help-cta h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.bgb-help-cta p {
    max-width: 620px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.bgb-help-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.bgb-help-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.bgb-help-btn:hover {
    transform: translateY(-2px);
}

.bgb-help-btn-light {
    background: #FFFFFF;
    color: var(--bgb-orange-main);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.bgb-help-btn-light:hover {
    background: #FFF7F0;
    color: var(--bgb-orange-dark);
}

.bgb-help-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.bgb-help-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .bgb-help-page {
        padding: 105px 0 68px;
    }

    .bgb-help-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bgb-help-popular {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bgb-help-page {
        padding: 94px 0 54px;
    }

    .bgb-help-hero {
        text-align: center;
    }

    .bgb-help-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .bgb-help-search {
        display: block;
        padding: 10px;
        border-radius: 28px;
    }

    .bgb-help-search-icon {
        position: absolute;
        left: 18px;
        top: 18px;
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .bgb-help-search input {
        height: 52px;
        padding-left: 48px;
        padding-right: 10px;
        font-size: 16px;
    }

    .bgb-help-search button {
        width: 100%;
        margin-top: 8px;
    }

    .bgb-help-section {
        margin-top: 58px;
    }

    .bgb-help-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bgb-help-category-card {
        min-height: auto;
        padding: 20px;
        border-radius: 26px;
    }

    .bgb-help-category-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .bgb-help-article-card {
        padding: 15px;
        border-radius: 22px;
    }

    .bgb-help-article-title {
        white-space: normal;
        line-height: 1.45;
    }

    .bgb-help-article-views {
        align-self: flex-start;
        margin-top: 4px;
    }

    .bgb-help-cta {
        margin-top: 58px;
        padding: 42px 18px;
        border-radius: 30px;
    }

    .bgb-help-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bgb-help-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .bgb-help-category-card {
        flex-direction: column;
    }

    .bgb-help-article-card {
        gap: 11px;
    }

    .bgb-help-article-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

.dark .bgb-help-page {
    background: #ffffff;
}
.dark .bgb-help-badge,
.dark .bgb-help-search,
.dark .bgb-help-category-card,
.dark .bgb-help-article-card {
    background: rgba(15, 23, 42, 0.86);
    border-color: rgba(255, 255, 255, 0.08);
}

.dark .bgb-help-hero h1,
.dark .bgb-help-section-head h2,
.dark .bgb-help-category-content h3,
.dark .bgb-help-article-title {
    color: #FFFFFF;
}

.dark .bgb-help-hero p,
.dark .bgb-help-section-head p,
.dark .bgb-help-category-content p {
    color: #CBD5E1;
}

.dark .bgb-help-search input {
    color: #FFFFFF;
}

.dark .bgb-help-category-icon,
.dark .bgb-help-article-icon {
    background: rgba(255, 122, 26, 0.12);
}
.bgb-help-search-page {
    position: relative;
    padding: 118px 0 78px;
    background: #FFFFFF;
}

.bgb-help-search-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.bgb-help-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: #9AA3B2;
    font-size: 14px;
    font-weight: 700;
}

.bgb-help-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bgb-orange-main);
    text-decoration: none;
    font-weight: 900;
}

.bgb-help-breadcrumb a:hover {
    color: var(--bgb-orange-dark);
}

.bgb-help-breadcrumb span {
    color: #D2D7E0;
}

.bgb-help-breadcrumb p {
    margin: 0;
    color: #8B95A7;
}

.bgb-help-search-head {
    max-width: 720px;
}

.bgb-help-search-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 122, 26, 0.16);
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--bgb-orange-main);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
}

.bgb-help-search-badge i {
    font-size: 17px;
}

.bgb-help-search-head h1 {
    margin: 0;
    color: var(--bgb-text);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.bgb-help-search-head p {
    max-width: 660px;
    margin: 18px 0 0;
    color: var(--bgb-muted);
    font-size: 17px;
    line-height: 1.72;
}

.bgb-help-search-box {
    display: flex;
    align-items: center;
    margin-top: 32px;
    padding: 8px;
    border: 1px solid var(--bgb-border);
    border-radius: 999px;
    background: #FFFFFF;
    box-shadow: 0 18px 46px rgba(23, 32, 51, 0.07);
}

.bgb-help-search-box-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgb-orange-main);
    font-size: 22px;
}

.bgb-help-search-box input {
    width: 100%;
    height: 52px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--bgb-text);
    font-size: 15px;
    font-weight: 700;
}

.bgb-help-search-box input::placeholder {
    color: #A3ACB9;
    font-weight: 500;
}

.bgb-help-search-box button {
    height: 52px;
    min-width: 128px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bgb-orange), var(--bgb-orange-main));
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(255, 122, 26, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bgb-help-search-box button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(255, 122, 26, 0.30);
}

.bgb-help-search-empty {
    margin-top: 34px;
    padding: 54px 28px;
    border: 1px solid var(--bgb-border);
    border-radius: 34px;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 18px 50px rgba(23, 32, 51, 0.06);
}

.bgb-help-search-empty-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: var(--bgb-orange-soft);
    color: var(--bgb-orange-main);
    font-size: 34px;
}

.bgb-help-search-empty h2 {
    margin: 0;
    color: var(--bgb-text);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.bgb-help-search-empty p {
    max-width: 520px;
    margin: 12px auto 0;
    color: var(--bgb-muted);
    font-size: 15px;
    line-height: 1.7;
}

.bgb-help-search-empty strong {
    color: var(--bgb-text);
    font-weight: 900;
}

.bgb-help-search-ticket-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bgb-orange), var(--bgb-orange-main));
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(255, 122, 26, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bgb-help-search-ticket-btn:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    box-shadow: 0 18px 40px rgba(255, 122, 26, 0.30);
}

.bgb-help-search-results-head {
    margin-top: 28px;
}

.bgb-help-search-results-head p {
    margin: 0;
    color: var(--bgb-muted);
    font-size: 14px;
    font-weight: 700;
}

.bgb-help-search-results-head strong {
    color: var(--bgb-text);
    font-weight: 950;
}

.bgb-help-search-results-head span {
    color: var(--bgb-orange-main);
    font-weight: 900;
}

.bgb-help-search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}

.bgb-help-search-result-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--bgb-border);
    border-radius: 28px;
    background: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(23, 32, 51, 0.055);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bgb-help-search-result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 26, 0.28);
    box-shadow: 0 24px 62px rgba(255, 122, 26, 0.13);
}

.bgb-help-search-result-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: var(--bgb-orange-soft);
    color: var(--bgb-orange-main);
    font-size: 23px;
}

.bgb-help-search-result-content {
    min-width: 0;
    flex: 1;
}

.bgb-help-search-result-content h3 {
    margin: 0;
    color: var(--bgb-text);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.bgb-help-search-result-category {
    width: fit-content;
    margin-top: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #FFF5ED;
    color: var(--bgb-orange-main);
    font-size: 12px;
    font-weight: 900;
}

.bgb-help-search-result-content p {
    margin: 10px 0 0;
    color: var(--bgb-muted);
    font-size: 14px;
    line-height: 1.65;
}

.bgb-help-search-result-arrow {
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    border-radius: 999px;
    background: #FFF7F0;
    color: var(--bgb-orange-main);
    font-size: 18px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.bgb-help-search-result-card:hover .bgb-help-search-result-arrow {
    transform: translateX(3px);
    background: var(--bgb-orange-soft);
}

@media (max-width: 767px) {
    .bgb-help-search-page {
        padding: 96px 0 54px;
    }

    .bgb-help-breadcrumb {
        justify-content: center;
        margin-bottom: 24px;
    }

    .bgb-help-search-head {
        text-align: center;
    }

    .bgb-help-search-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .bgb-help-search-head p {
        font-size: 15px;
    }

    .bgb-help-search-box {
        display: block;
        position: relative;
        padding: 10px;
        border-radius: 28px;
    }

    .bgb-help-search-box-icon {
        position: absolute;
        left: 18px;
        top: 18px;
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .bgb-help-search-box input {
        height: 52px;
        padding-left: 48px;
        padding-right: 10px;
        font-size: 16px;
    }

    .bgb-help-search-box button {
        width: 100%;
        margin-top: 8px;
    }

    .bgb-help-search-empty {
        padding: 42px 18px;
        border-radius: 30px;
    }

    .bgb-help-search-result-card {
        gap: 13px;
        padding: 18px;
        border-radius: 24px;
    }

    .bgb-help-search-result-icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .bgb-help-search-result-content h3 {
        font-size: 16px;
    }

    .bgb-help-search-result-arrow {
        display: none;
    }
}

@media (max-width: 420px) {
    .bgb-help-search-result-card {
        flex-direction: column;
    }

    .bgb-help-search-result-icon {
        width: 46px;
        min-width: 46px;
        height: 46px;
    }
}
/* =========================================================
   BeeGoBox Help Article Page - v1.0.3
   Clean white background / unique classes / no layout conflict
========================================================= */

.bgb-harticle-page {
    width: 100%;
    padding: 118px 0 80px;
    background: #ffffff;
    color: #172033;
}

.bgb-harticle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.bgb-harticle-main,
.bgb-harticle-sidebar {
    min-width: 0;
}

/* Breadcrumb */
.bgb-harticle-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 800;
}

.bgb-harticle-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff7a1a;
    text-decoration: none;
}

.bgb-harticle-breadcrumb a:hover {
    color: #e96300;
}

.bgb-harticle-breadcrumb span {
    color: #d2d7e0;
}

.bgb-harticle-breadcrumb p {
    margin: 0;
    max-width: 420px;
    color: #8b95a7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Header */
.bgb-harticle-header {
    max-width: 860px;
}

.bgb-harticle-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 122, 26, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #ff7a1a;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
}

.bgb-harticle-header h1 {
    margin: 0;
    color: #172033;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.bgb-harticle-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.bgb-harticle-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #f1e5dc;
    border-radius: 999px;
    background: #ffffff;
    color: #6b7280;
    font-size: 12px;
    font-weight: 850;
}

.bgb-harticle-meta i {
    color: #ff7a1a;
    font-size: 15px;
}

/* Content card */
.bgb-harticle-content {
    width: 100%;
    margin-top: 30px;
    padding: 34px;
    border: 1px solid #f1e5dc;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(23, 32, 51, 0.06);
    color: #465165;
    font-size: 16px;
    line-height: 1.85;
    overflow-x: auto;
}

.bgb-harticle-content > *:first-child {
    margin-top: 0 !important;
}

.bgb-harticle-content > *:last-child {
    margin-bottom: 0 !important;
}

.bgb-harticle-content h1,
.bgb-harticle-content h2,
.bgb-harticle-content h3,
.bgb-harticle-content h4,
.bgb-harticle-content h5,
.bgb-harticle-content h6 {
    color: #172033;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.bgb-harticle-content h1 {
    margin: 0 0 18px;
    font-size: 34px;
}

.bgb-harticle-content h2 {
    margin: 34px 0 14px;
    font-size: 28px;
}

.bgb-harticle-content h3 {
    margin: 28px 0 12px;
    font-size: 22px;
}

.bgb-harticle-content p {
    margin: 0 0 18px;
    color: #465165;
}

.bgb-harticle-content a {
    color: #ff7a1a;
    font-weight: 850;
    text-decoration: none;
}

.bgb-harticle-content a:hover {
    color: #e96300;
    text-decoration: underline;
}

.bgb-harticle-content ul,
.bgb-harticle-content ol {
    margin: 18px 0 22px;
    padding-left: 22px;
    color: #465165;
}

.bgb-harticle-content li {
    margin: 8px 0;
}

.bgb-harticle-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #ff7a1a;
    border-radius: 18px;
    background: #fff7f0;
    color: #172033;
    font-weight: 750;
}

.bgb-harticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

/* Important: prevents ugly broken article tables */
.bgb-harticle-content table {
    width: 100%;
    min-width: 720px;
    margin: 24px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #f1e5dc;
    border-radius: 20px;
    overflow: hidden;
}

.bgb-harticle-content th,
.bgb-harticle-content td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1e5dc;
    color: #465165;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
}

.bgb-harticle-content th {
    background: #fff7f0;
    color: #172033;
    font-weight: 950;
}

.bgb-harticle-content tr:last-child td {
    border-bottom: 0;
}

.bgb-harticle-content code {
    padding: 3px 7px;
    border-radius: 9px;
    background: #fff1e6;
    color: #e96300;
    font-size: 0.92em;
    font-weight: 850;
}

.bgb-harticle-content pre {
    max-width: 100%;
    padding: 18px;
    border-radius: 20px;
    background: #172033;
    color: #ffffff;
    overflow-x: auto;
}

.bgb-harticle-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

/* Feedback */
.bgb-harticle-feedback {
    margin-top: 22px;
    padding: 30px;
    border: 1px solid #f1e5dc;
    border-radius: 32px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 16px 44px rgba(23, 32, 51, 0.055);
}

.bgb-harticle-feedback-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 21px;
    background: #fff3ea;
    color: #ff7a1a;
    font-size: 29px;
}

.bgb-harticle-feedback h2 {
    margin: 0;
    color: #172033;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.bgb-harticle-feedback p {
    margin: 10px auto 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
}

.bgb-harticle-feedback-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.bgb-harticle-feedback-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid #f1e5dc;
    border-radius: 999px;
    background: #ffffff;
    color: #172033;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.bgb-harticle-feedback-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 26, 0.35);
    color: #ff7a1a;
    box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.bgb-harticle-thanks {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #16a34a;
    font-size: 14px;
    font-weight: 950;
}

/* Sidebar */
.bgb-harticle-side-card {
    padding: 22px;
    border: 1px solid #f1e5dc;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(23, 32, 51, 0.055);
}

.bgb-harticle-side-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #172033;
    font-size: 15px;
    font-weight: 950;
}

.bgb-harticle-side-card h3 i {
    color: #ff7a1a;
    font-size: 19px;
}

.bgb-harticle-related {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.bgb-harticle-related a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px;
    border-radius: 18px;
    color: #6b7280;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.bgb-harticle-related a:hover {
    background: #fff7f0;
    color: #ff7a1a;
}

.bgb-harticle-related span {
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff3ea;
    color: #ff7a1a;
    font-size: 15px;
}

.bgb-harticle-related p {
    margin: 3px 0 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 850;
}

.bgb-harticle-help-card {
    margin-top: 18px;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fb8c3c 0%, #ff7a1a 70%, #f06400 100%);
    color: #ffffff;
    box-shadow: 0 18px 48px rgba(255, 122, 26, 0.22);
}

.bgb-harticle-help-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 27px;
}

.bgb-harticle-help-card h3 {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.bgb-harticle-help-card p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.6;
}

.bgb-harticle-help-card a {
    min-height: 46px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #ff7a1a;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.18s ease, background 0.18s ease;
}

.bgb-harticle-help-card a:hover {
    transform: translateY(-2px);
    background: #fff7f0;
    color: #e96300;
}

/* Responsive */
@media (max-width: 991px) {
    .bgb-harticle-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bgb-harticle-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bgb-harticle-help-card {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .bgb-harticle-page {
        padding: 96px 0 54px;
    }

    .bgb-harticle-breadcrumb {
        justify-content: center;
        text-align: center;
        margin-bottom: 24px;
    }

    .bgb-harticle-breadcrumb p {
        max-width: 100%;
    }

    .bgb-harticle-header {
        text-align: center;
    }

    .bgb-harticle-label {
        margin-left: auto;
        margin-right: auto;
    }

    .bgb-harticle-meta {
        justify-content: center;
    }

    .bgb-harticle-content {
        margin-top: 24px;
        padding: 24px 20px;
        border-radius: 28px;
        font-size: 15px;
        line-height: 1.78;
    }

    .bgb-harticle-content h1 {
        font-size: 28px;
    }

    .bgb-harticle-content h2 {
        font-size: 24px;
    }

    .bgb-harticle-content h3 {
        font-size: 20px;
    }

    .bgb-harticle-feedback {
        padding: 26px 18px;
        border-radius: 28px;
    }

    .bgb-harticle-feedback-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bgb-harticle-feedback-btn {
        width: 100%;
    }

    .bgb-harticle-side-card,
    .bgb-harticle-help-card {
        border-radius: 28px;
    }
}

@media (max-width: 420px) {
    .bgb-harticle-meta span {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================================
   BeeGoBox Help Category Page - v1.0.4
   Clean white background / unique classes
========================================================= */

.bgb-hcategory-page {
    width: 100%;
    padding: 118px 0 80px;
    background: #ffffff;
    color: #172033;
}

.bgb-hcategory-wrap {
    max-width: 920px;
    margin: 0 auto;
}

/* Breadcrumb */
.bgb-hcategory-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 800;
}

.bgb-hcategory-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff7a1a;
    text-decoration: none;
}

.bgb-hcategory-breadcrumb a:hover {
    color: #e96300;
}

.bgb-hcategory-breadcrumb span {
    color: #d2d7e0;
}

.bgb-hcategory-breadcrumb p {
    margin: 0;
    color: #8b95a7;
}

/* Header */
.bgb-hcategory-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border: 1px solid #f1e5dc;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(23, 32, 51, 0.06);
}

.bgb-hcategory-icon {
    width: 76px;
    min-width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: #fff3ea;
    color: #ff7a1a;
    font-size: 34px;
}

.bgb-hcategory-head-content {
    min-width: 0;
}

.bgb-hcategory-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 122, 26, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #ff7a1a;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(23, 32, 51, 0.05);
}

.bgb-hcategory-header h1 {
    margin: 0;
    color: #172033;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.bgb-hcategory-header p {
    margin: 13px 0 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.72;
}

/* Article list */
.bgb-hcategory-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
}

.bgb-hcategory-article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #f1e5dc;
    border-radius: 28px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(23, 32, 51, 0.055);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bgb-hcategory-article:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 26, 0.28);
    box-shadow: 0 24px 62px rgba(255, 122, 26, 0.13);
}

.bgb-hcategory-article-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff3ea;
    color: #ff7a1a;
    font-size: 23px;
}

.bgb-hcategory-article-content {
    min-width: 0;
    flex: 1;
}

.bgb-hcategory-article-content h3 {
    margin: 0;
    color: #172033;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.bgb-hcategory-article-content p {
    margin: 7px 0 0;
    color: #98a1b2;
    font-size: 12px;
    font-weight: 800;
}

.bgb-hcategory-article-content span {
    margin: 0 5px;
    color: #d2d7e0;
}

.bgb-hcategory-article-arrow {
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff7f0;
    color: #ff7a1a;
    font-size: 18px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.bgb-hcategory-article:hover .bgb-hcategory-article-arrow {
    transform: translateX(3px);
    background: #fff3ea;
}

/* Empty */
.bgb-hcategory-empty {
    margin-top: 24px;
    padding: 54px 28px;
    border: 1px solid #f1e5dc;
    border-radius: 34px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 50px rgba(23, 32, 51, 0.06);
}

.bgb-hcategory-empty-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: #fff3ea;
    color: #ff7a1a;
    font-size: 34px;
}

.bgb-hcategory-empty h2 {
    margin: 0;
    color: #172033;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.bgb-hcategory-empty p {
    max-width: 460px;
    margin: 12px auto 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Back */
.bgb-hcategory-back {
    margin-top: 28px;
    text-align: center;
}

.bgb-hcategory-back a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff7a1a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.bgb-hcategory-back a:hover {
    color: #e96300;
}

/* Responsive */
@media (max-width: 767px) {
    .bgb-hcategory-page {
        padding: 96px 0 54px;
    }

   .bgb-hcategory-breadcrumb {
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 24px;
}

    .bgb-hcategory-header {
        display: block;
        padding: 26px 20px;
        text-align: center;
        border-radius: 30px;
    }

    .bgb-hcategory-icon {
        width: 72px;
        min-width: 72px;
        height: 72px;
        margin: 0 auto 18px;
    }

    .bgb-hcategory-label {
        margin-left: auto;
        margin-right: auto;
    }

    .bgb-hcategory-header p {
        font-size: 15px;
    }

    .bgb-hcategory-article {
        gap: 13px;
        padding: 18px;
        border-radius: 24px;
    }

    .bgb-hcategory-article-icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .bgb-hcategory-article-content h3 {
        font-size: 16px;
    }

    .bgb-hcategory-article-arrow {
        display: none;
    }

    .bgb-hcategory-empty {
        padding: 42px 18px;
        border-radius: 30px;
    }
}

@media (max-width: 420px) {
    .bgb-hcategory-article {
        flex-direction: column;
        align-items: flex-start;
    }

    .bgb-hcategory-article-icon {
        width: 46px;
        min-width: 46px;
        height: 46px;
    }
}