
        
        /* ===== NAVBAR & MEGA MENU (from Clean Crate code) ===== */
        :root {
        --main-blue: #00457C;
        --nav-bg: #f8f9fa;      /* Cement color */
        --nav-link: #222;       /* Black for links */
        --nav-link-light: #222;
        --hover-blue: #f8f8f8;
        --focus-blue: #135ea8;
        --dropdown-bg: rgba(0, 69, 124, 0.97);

        /* Existing style variables for the rest of the layout */
        --sidebar-bg: #f7f7f7;
        --sidebar-active: #184aff;
        --sidebar-border: #e3e7f3;
        --sidebar-text: #222;
        --sidebar-hover: #e7eeff;
        --sidebar-active-bg: #fff;
        --desc-grey: #848484;
        --primary-blue: #245ce6;
        --text-base: 15px;
        --text-small: 13.7px;
        --sidebar-font: 15.4px;
        --sidebar-font-mobile: 14.2px;
        --heading-lg: 2.15rem;
        --heading-md: 1.14rem;
        --feature-li: 15px;
        --anim-duration: .75s;
        }
        html, body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', Arial, sans-serif;
        background: #fff;
        color: #181a20;
        height: 100%;
        min-height: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        font-size: var(--text-base);
        }


        /* ---- SIDEBAR & MAIN CONTENT: Your Existing Styles Below ---- */
        /* MAIN LAYOUT */
    /* Layout Root: Flex for desktop, stack for mobile */
    .layout-root {
    display: flex;
    min-height: 100vh;
    background: #fff;
    margin-top: 56px;
    box-sizing: border-box;
    }

    .sidebar {
    position: fixed;
    top: 56px;
    left: 0;
    height: calc(100vh - 56px);
    width: 246px;
    background: var(--sidebar-bg);
    border-right: 1.5px solid var(--sidebar-border);
    box-shadow: 0 2px 32px #0001;
    padding: 38px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1030;
    }
    .main-section {
    flex: 1 1 0;
    max-width: 1100px;
    min-width: 0;
    font-size: var(--text-base);
    margin-left: 246px;
    padding: 52px 40px 38px 52px;
    transition: margin-left 0.3s, padding 0.3s;
    box-sizing: border-box;
    }
    @media (max-width: 1100px) {
    .main-section {
        padding: 32px 10px 16px 18px;
    }
    .sidebar {
        width: 175px;
    }
    .main-section {
        margin-left: 175px;
    }
    }
    @media (max-width: 900px) {
    .layout-root {
        display: block;
        margin-top: 56px;
    }
    .sidebar {
        display: none !important;
    }
    .main-section {
        margin-left: 0 !important;
        padding: 18px 2vw 8vw 2vw !important;
        max-width: 99vw;
    }
    }
    @media (max-width: 600px) {
    .main-section {
        padding: 8vw 3vw 9vw 3vw !important;
    }
    }

        /* --- END SIDEBAR RESPONSIVENESS --- */

        /* PRODUCT MAIN IMAGE — INCREASED HEIGHT, RESPONSIVE */
        .product-main-img {
        width: 100%;
        border-radius: 0;
        margin-bottom: 18px;
        /* background: #e6eefa; */
        object-fit: cover;
        aspect-ratio: 16/7;
        max-height: 430px; 
        min-height: 210px; 
        display: block;
        opacity: 0;
        transform: scale(.97) translateY(40px);
        transition: all var(--anim-duration) cubic-bezier(.22,.67,.23,1.11);
        }
        .product-main-img.in-view { opacity: 1; transform: scale(1) translateY(0);}
        @media (max-width: 900px) {
        .product-main-img {
            min-height: 160px;
            max-height: 230px;
            aspect-ratio: 16/10;
        }
        }
        /* code for changing the height of the image  */
        @media (max-width: 600px) {
        .product-main-img {
            min-height: 180px;
            max-height: 220px;
            aspect-ratio: 16/10;
        }
        }

        /* MAIN SECTION AND REST UNCHANGED */
        .main-section {
        flex: 1 1 0;
        padding: 52px 40px 38px 52px;
        max-width: 1100px;
        min-width: 0;
        font-size: var(--text-base);
        }
        .back-link {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #555e6a;
        font-size: var(--text-small);
        font-weight: 400;
        text-decoration: none;
        margin-bottom: 15px;
        margin-top: 0;
        transition: color 0.14s;
        cursor: pointer;
        user-select: none;
        letter-spacing: 0.01em;
        opacity: 0;
        transform: translateY(-30px);
        transition: all var(--anim-duration) cubic-bezier(.17,.67,.23,1.11);
        }
        .back-link.in-view { opacity: 1; transform: translateY(0);}
        .page-title {
        font-size: var(--heading-lg);
        font-weight: 700;
        margin: 0 0 18px 0;
        font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        display: flex;
        align-items: center;
        gap: 0.18em;
        /* line-height: 1.18; */
        line-height: 24px;
        letter-spacing: -0.005em;
        opacity: 0;
        transform: translateY(-25px) scale(.98);
        transition: all var(--anim-duration) cubic-bezier(.17,.67,.23,1.11);
        }
        .page-title.in-view { opacity: 1; transform: translateY(0) scale(1);}
        .page-title .divider {
        color: #232323;
        font-weight: 400;
        margin: 0 0.17em;
        font-size: 1.03em;
        letter-spacing: 0;
        }
        .desc-lead {
            text-align: justify;
        font-size: var(--text-base);
        color: var(--desc-grey);
        margin-bottom: 0;
        margin-top: 2px;
        font-weight: 400;
        max-width: 940px;
        line-height: 1.56;
        opacity: 0;
        transform: translateX(-42px);
        transition: all var(--anim-duration) cubic-bezier(.22,.67,.23,1.11);
        }
        .desc-lead.in-view { opacity: 1; transform: translateX(0);}
        .key-features-section {
        margin-top: 52px;
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(40px) scale(.96);
        transition: all var(--anim-duration) cubic-bezier(.21,.64,.19,1.1);
        }
        .key-features-section.in-view {
        opacity: 1;
        transform: translateY(0) scale(1);
        }
        .key-features-title {
        font-size: var(--heading-md);
        font-weight: 700;
        color: #232323;
        margin-bottom: 16px;
        letter-spacing: 0.01em;
        }
        .feature-list {
        padding-left: 18px;
        margin-top: 0;
        margin-bottom: 30px;
        }
        .feature-list li {
        font-size: var(--feature-li);
        color: #3e3e3e;
        margin-bottom: 5px;
        line-height: 1.6;
        font-weight: 400;
        letter-spacing: 0.02em;
        max-width: 820px;
        }
        .feature-actions {
        display: flex;
        gap: 23px;
        margin-top: 20px;
        margin-bottom: 5px;
        flex-wrap: wrap;
        }
        .feature-btn {
        background: #245ce6;
        color: #fff;
        font-family: 'Poppins', Arial, sans-serif;
        font-size: var(--text-base);
        font-weight: 600;
        border: none;
        border-radius: 2.5px;
        padding: 12px 32px;
        cursor: pointer;
        transition: background .13s, box-shadow .12s;
        box-shadow: 0 2px 12px #e8eefa22;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: center;
        }
        .feature-btn:active, .feature-btn:focus { outline: none; }
        .feature-btn:hover { background: #184aff; }
        .feature-btn.secondary {
        background: #fff;
        color: #245ce6;
        border: 2px solid #245ce6;
        box-shadow: none;
        font-weight: 600;
        }
        .feature-btn.secondary:hover { background: #e8f0ff; color: #184aff; border-color: #184aff; }
        .see-action-section {
        margin-top: 48px;
        margin-bottom: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(44px) scale(.94);
        transition: all var(--anim-duration) cubic-bezier(.22,.65,.16,1.07);
        }
        .see-action-section.in-view { opacity: 1; transform: translateY(0) scale(1);}
        .see-action-title {
        font-size: 2.1rem;
        font-weight: 700;
        color: #181a20;
        margin-bottom: 18px;
        margin-left: 0;
        margin-top: 0;
        font-family: 'Poppins', Arial, sans-serif;
        letter-spacing: 0;
        }
        .see-action-video-wrap {
        width: 100%;
        background: transparent;
        border-radius: 0;
        min-height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 10px;
        box-sizing: border-box;
        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: 16/8;
        }
        .see-action-video-iframe {
        width: 74vw;
        max-width: 730px;
        min-width: 210px;
        min-height: 180px;
        aspect-ratio: 16 / 8;
        max-height: 350px;
        border: none;
        background: #ececec;
        display: block;
        border-radius: 0;
        z-index: 2;
        }
        .see-action-video-desc {
        position: absolute;
        left: 0; right: 0;
        top: 22%;
        text-align: center;
        color: #222;
        font-size: 15.1px;
        font-weight: 500;
        pointer-events: none;
        z-index: 2;
        }
        .related-products-section {
        margin-top: 60px;
        width: 100%;
        padding: 0;
        background: transparent;
        opacity: 0;
        transform: translateY(55px) scale(.97);
        transition: all 1.15s cubic-bezier(.22,.67,.23,1.11);
        }
        .related-products-section.in-view {
        opacity: 1;
        transform: translateY(0) scale(1);
        }
        .related-products-title-wrap {
        text-align: center;
        margin-bottom: 36px;
        margin-top: 10px;
        }
        .related-products-title {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0;
        color: #181a20;
        margin: 0 auto 10px auto;
        font-family: 'Poppins', Arial, sans-serif;
        position: relative;
        display: inline-block;
        z-index: 1;
        }
        .related-products-title:after {
        content: '';
        display: block;
        margin: 13px auto 0 auto;
        width: 45px;
        height: 6px;
        border-radius: 3px;
        background: #245ce6;
        opacity: 1;
        }
        .related-products-list {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 26px;
        margin: 0 auto;
        flex-wrap: nowrap;
        box-sizing: border-box;
        }
        .related-product-card {
        position: relative;
        width: 410px;
        height: 390px;
        background: #f6f8fc;
        box-shadow: 0 5px 30px #1313130c;
        border-radius: 0;
        overflow: hidden;
        transition: box-shadow 0.21s, transform 0.23s cubic-bezier(.17,.67,.23,1.11);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        animation: cardFadeIn 1.2s cubic-bezier(.24,.83,.45,1.08);
        }
        .related-product-card:hover {
        box-shadow: 0 10px 38px #181a2022;
        transform: translateY(-7px) scale(1.017);
        }
        @keyframes cardFadeIn {
        from { opacity: 0; transform: translateY(40px) scale(.97);}
        to   { opacity: 1; transform: translateY(0) scale(1);}
        }
        .related-product-img {
        width: 100%;
        height: 315px;
        object-fit: cover;
        border-radius: 0;
        background: #f0f1f7;
        display: block;
        box-shadow: none;
        }
        .related-product-info {
        position: absolute;
        left: 0; bottom: 0;
        width: 72%;
        min-width: 260px;
        max-width: 300px;
        background: rgba(255,255,255,0.78);
        box-shadow: 0 8px 32px #002c5015;
        border-radius: 0;
        padding: 28px 22px 26px 24px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 9px;
        text-align: left;
        margin: 0 0 24px 30px;
        }
        .related-product-title {
        font-weight: 700;
        font-size: 1.16rem;
        margin-bottom: 5px;
        margin-top: 0;
        color: #181a20;
        font-family: 'Poppins', Arial, sans-serif;
        }
        .related-product-desc {
        font-size: 1.01rem;
        font-weight: 400;
        color: #444950;
        line-height: 1.58;
        margin-bottom: 0;
        margin-top: 0;
        font-family: 'Poppins', Arial, sans-serif;
        }
        .related-product-arrow {
        position: absolute;
        bottom: 0;
        right: 0;
        background: #2469ec;
        color: #fff;
        width: 48px;
        height: 48px;
        border-radius: 9px 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.1rem;
        font-weight: 600;
        box-shadow: 0 2px 12px #245ce63a;
        cursor: pointer;
        border: none;
        outline: none;
        z-index: 10;
        transition: background 0.17s;
        }
        .related-product-arrow:hover, .related-product-arrow:focus {
        background: #003bb8;
        }
        @media (max-width: 1200px) {
        .related-products-list { gap: 14px;}
        .related-product-card { width: 340px; height: 325px; }
        .related-product-img { height: 245px;}
        .related-products-title { font-size: 2rem;}
        }
        @media (max-width: 900px) {
        .related-products-list { flex-wrap: wrap; gap: 13px;}
        .related-product-card { width: 88vw; min-width: 0; max-width: 98vw; height: 320px;}
        .related-product-info { margin: 0 0 15px 13px; max-width: 89vw; }
        .related-product-img { height: 170px;}
        }
        @media (max-width: 650px) {
        .related-products-section { margin-top: 18px;}
        .related-products-title { font-size: 1.23rem;}
        .related-products-list { flex-direction: column; gap: 11px;}
        .related-product-card { width: 100vw; min-width: 0; max-width: 99vw; height: 268px;}
        .related-product-info { left: 0; right: 0; margin-left: 5vw; max-width: 95vw; padding: 14px 11px;}
        .related-product-img { height: 108px;}
        .related-product-arrow { width: 38px; height: 38px; font-size: 1.18rem;}
        }
        @media (max-width: 1200px) {
        .main-section { padding: 35px 13px 16px 18px; }
        .sidebar { width: 175px; }
        .cat-link { font-size: 15px; }
        .page-title { font-size: 1.65rem; }
        .key-features-title { font-size: 1.07rem;}
        .see-action-title { font-size: 1.46rem; }
        .see-action-video-wrap { min-height: 110px; }
        .see-action-video-iframe { min-height: 110px; }
        }
        @media (max-width: 900px) {
        .see-action-title { font-size: 1.22rem; }
        .see-action-video-iframe { min-height: 90px; }
        .see-action-video-desc { font-size: 13px;}
        .main-section { padding: 16px 2vw 15vw 2vw;}
        .see-action-section { margin-top: 30px;}
        .see-action-video-wrap { max-width: 98vw;}
        }
        @media (max-width: 600px) {
        .see-action-title { font-size: 1.01rem; }
        .see-action-video-wrap { min-height: 60px; max-width: 99vw;}
        .see-action-video-iframe { min-height: 60px; max-width: 99vw;}
        .main-section { padding: 8vw 4vw 9vw 4vw;}
        .see-action-section { margin-top: 18px;}
        }
        /* side menu bar code css */
        /* Sidebar menu (desktop) */
    .sidebar {
    width: 246px;
    background: var(--sidebar-bg);
    border-right: 1.5px solid var(--sidebar-border);
    box-shadow: 0 2px 32px #0001;
    padding: 38px 0 32px 0;
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    }
    .sidebar h2 {
    font-size: var(--heading-md);
    font-weight: 700;
    padding-left: 28px;
    margin: 0 0 23px 0;
    letter-spacing: 0.01em;
    }
    .cat-list {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    }
    .cat-item {
    margin-bottom: 3px;
    width: 100%;
    overflow: hidden;
    }
    .cat-link {
    display: block;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 93.5px;
    color: var(--sidebar-text);
    font-weight: 500;
    padding: 10px 0 10px 28px;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-left: 4px solid transparent;
    border-radius: 0 8px 8px 0;
    text-align: left;
    transition: background .12s, color .12s, border .11s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    box-sizing: border-box;
    max-width: 96%;
    }
    .cat-link.active, .cat-link:focus {
    background: var(--sidebar-active-bg);
    color: var(--sidebar-active);
    border-left: 4px solid var(--sidebar-active);
    font-weight: 700;
    box-shadow: 0 1px 12px #e7eaff17;
    }
    .cat-link:hover:not(.active) {
    color: var(--sidebar-active);
    background: var(--sidebar-hover);
    border-left: 4px solid #b7cefa;
    text-decoration: none;
    }

    /* Responsive switching */
    @media (max-width: 900px) {
    .sidebar {
        display: none !important;
    }
    .sidebar-drawer {
        display: flex !important;
    }
    }
    @media (min-width: 901px) {
    .sidebar-drawer {
        display: none !important;
    }
    }
    .mobile-categories {
    display: none;
    background: #fff;
    padding: 18px 0 0 0;
    margin-bottom: 16px;
    }
    @media (max-width: 900px) {
    .mobile-categories {
        display: block;
    }
    .main-section .mobile-categories ul.cat-list {
        padding-left: 0;
    }
    }
    /* Hide sidebar completely on mobile */
    @media (max-width: 900px) {
    .sidebar {
        display: none !important;
    }
    }
    @media (min-width: 901px) {
    .mobile-categories {
        display: none !important;
    }
    }
    /* video code for responsiveness  */
    @media (max-width: 600px) {
    .see-action-video-wrap,
    .see-action-video-iframe {
        min-height: 120px;
        aspect-ratio: 16/9;
        max-width: 100vw;
    }
    }
    @media (max-width: 600px) {
    .related-products-list {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        padding: 0;
    }
    .related-product-card {
        width: 96vw;
        max-width: 400px;
        min-width: 0;
        height: 380px;    /* Set a fixed height for card */
        margin: 0 auto;
        overflow: visible;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .related-product-img {
        height: 280px;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }
    .related-product-info {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 77%;
        min-width: 170px;
        max-width: 89vw;
        background: #fff;
        box-shadow: 0 8px 32px #002c5015;
        border-radius: 0;
        padding: 12px 10px 11px 14px;
        z-index: 2;
        margin: 0 0 12px 10px;
        font-size: 0.97rem;
    }
    .related-product-arrow {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 38px;
        height: 38px;
        font-size: 1.18rem;
        border-radius: 9px 0 0 0;
        z-index: 10;
        margin: 0;
    }
    }
    /* box visibleness for the related videos section  */
    /* for reducing gap in mobile view above categories  */
    /* Tighten space above Categories on mobile */
    @media (max-width: 900px) {
    /* reduce the main content top padding */
    .main-section {
        padding-top: 6px !important;  /* was 18px / 8vw */
    }

    /* remove extra padding/margin on the Categories wrapper */
    .mobile-categories {
        padding-top: 4px;   /* was 18px */
        margin-top: 0;
    }

    /* kill the default big top margin on the H2 */
    .mobile-categories h2 {
        margin-top: 4px;    /* was browser default ~20px */
        margin-bottom: 10px;
    }

    /* guard against any first-child margin collapse adding space */
    .main-section > *:first-child {
        margin-top: 0;
    }
    }
    /* color hover ovverriding */
    /* Fix mobile menu hover turning white */
    @media (max-width: 900px) {
    .mobile-menu-link:hover,
    .mobile-menu-link:focus {
        background: #005187 !important;   /* pick your blue */
        border-color: #005187 !important;
        color: #fff !important;
    }
    }


    :root {
        --main-blue: #00457C;
        --nav-bg: #e6e4df;
        --nav-link: #222;
        --nav-link-light: #222;
        --hover-blue: #00457C;
        --focus-blue: #135ea8;
        --dropdown-bg: rgba(0, 69, 124, 0.97);
        --sidebar-bg: #f7f7f7;
        --sidebar-active: #184aff;
        --sidebar-border: #e3e7f3;
        --sidebar-text: #222;
        --sidebar-hover: #e7eeff;
        --sidebar-active-bg: #fff;
        --desc-grey: #848484;
        --primary-blue: #245ce6;
        --text-base: 15px;
        --text-small: 13.7px;
        --sidebar-font: 15.4px;
        --sidebar-font-mobile: 14.2px;
        --heading-lg: 2.15rem;
        --heading-md: 1.14rem;
        --feature-li: 15px;
        --anim-duration: .75s;
        --top-video-height: 470px;
        --top-video-mobile: 230px;
        --sidebar-width: 246px;
    }
    html, body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', Arial, sans-serif;
        background: #fff;
        color: #181a20;
        height: 100%;
        min-height: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        font-size: var(--text-base);
        scroll-behavior: smooth;
    }

    .ss-layout {
        display: flex;
        min-height: 100vh;
        background: #fff;
        box-sizing: border-box;
        position: relative;
    }
    .ss-sidebar {
        width: var(--sidebar-width);
        background: var(--sidebar-bg);
        border-right: 1.5px solid var(--sidebar-border);
        box-shadow: 0 2px 32px #0001;
        padding: 38px 0 32px 0;
        min-height: calc(100vh - 56px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: sticky;
        top: 0;
        z-index: 2;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        transition: box-shadow .18s;
    }
    .ss-sidebar h2 {
        font-size: var(--heading-md);
        font-weight: 700;
        padding-left: 28px;
        margin: 0 0 23px 0;
        letter-spacing: 0.01em;
    }
    .ss-nav-list {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    .ss-nav-item {
        margin-bottom: 3px;
        width: 100%;
        overflow: hidden;
    }
    .ss-nav-link {
        font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        display: block;
        font-size: 13.5px;
        color: var(--sidebar-text);
        font-weight: 500;
        padding: 10px 0 10px 28px;
        width: 100%;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        border-left: 4px solid transparent;
        border-radius: 0 8px 8px 0;
        text-align: left;
        transition: background .12s, color .12s, border .11s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
        box-sizing: border-box;
        max-width: 96%;
    }
    .ss-nav-link.active, .ss-nav-link:focus {
        background: var(--sidebar-active-bg);
        color: var(--sidebar-active);
        border-left: 4px solid var(--sidebar-active);
        font-weight: 700;
        box-shadow: 0 1px 12px #e7eaff17;
    }
    .ss-nav-link:hover:not(.active) {
        color: var(--sidebar-active);
        background: var(--sidebar-hover);
        border-left: 4px solid #b7cefa;
        text-decoration: none;
    }
    @media (max-width: 900px) {
        .ss-layout {
        flex-direction: column;
        }
        .ss-sidebar {
        width: 100vw;
        min-height: unset;
        border-right: none;
        border-bottom: 1.5px solid var(--sidebar-border);
        box-shadow: 0 2px 16px #0001;
        padding: 18px 0 10px 0;
        position: static;
        top: unset;
        height: auto;
        max-height: unset;
        overflow-y: unset;
        }
        .ss-sidebar h2 {
        padding-left: 16px;
        margin-bottom: 11px;
        }
        .ss-nav-link {
        padding: 10px 0 10px 16px;
        font-size: var(--sidebar-font-mobile);
        max-width: 99vw;
        }
    }
    @media (max-width: 600px) {
        .ss-sidebar {
        padding: 10px 0 5px 0;
        }
        .ss-sidebar h2 {
        font-size: 1.08rem;
        margin-bottom: 7px;
        }
        .ss-nav-link {
        font-size: 13px;
        padding: 8px 0 8px 12px;
        }
    }
    .ss-main {
        flex: 1 1 0;
        padding: 52px 40px 38px 52px;
        max-width: 1100px;
        min-width: 0;
        font-size: var(--text-base);
        min-height: 100vh;
        background: #fff;
    }
    @media (max-width: 900px) {
        .ss-main {
        padding: 16px 2vw 15vw 2vw;
        min-height: unset;
        }
    }
    @media (max-width: 600px) {
        .ss-main {
        padding: 8vw 4vw 9vw 4vw;
        }
    }
    .ss-back-link {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #555e6a;
        font-size: var(--text-small);
        font-weight: 400;
        text-decoration: none;
        margin-bottom: 15px;
        margin-top: 0;
        transition: color 0.14s;
        cursor: pointer;
        user-select: none;
        letter-spacing: 0.01em;
        opacity: 0;
        transform: translateY(-30px);
        transition: all var(--anim-duration) cubic-bezier(.17,.67,.23,1.11);
    }
    .ss-back-link.ss-in-view { opacity: 1; transform: translateY(0);}

    .ss-section-title {
        color:#184aff;
        font-size: var(--heading-lg);
        font-weight: 700;
        margin: 0 0 18px 0;
        font-family: 'Poppins', Arial, sans-serif;
        display: flex;
        align-items: center;
        gap: 0.18em;
        line-height: 1.18;
        letter-spacing: -0.005em;
        opacity: 0;
        transform: translateY(-25px) scale(.98);
        transition: all var(--anim-duration) cubic-bezier(.17,.67,.23,1.11);
        text-wrap: balance;
        justify-content: center;
        text-align: center;
        scroll-margin-top: 16px;
    }
    .ss-section-title.ss-in-view { opacity: 1; transform: translateY(0) scale(1);}
    .ss-section-title .ss-divider {
        color: #232323;
        font-weight: 400;
        margin: 0 0.17em;
        font-size: 1.03em;
        letter-spacing: 0;
    }

    .ss-section-lead {
        font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-size: 13.5px;
        color: #585858;
        margin-bottom: 0;
        margin-top: 2px;
        font-weight: 400;
        max-width: 940px;
        line-height: 1.56;
        opacity: 0;
        transform: translateX(-42px);
        transition: all var(--anim-duration) cubic-bezier(.22,.67,.23,1.11);
        text-wrap: pretty;
    }
    .ss-section-lead.ss-in-view { opacity: 1; transform: translateX(0);}

    .ss-media-row {
        display: flex;
        flex-direction: row;
        gap: 34px;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 22px;
        margin-top: 10px;
    }
    .ss-media-col {
        flex: 1 1 0;
        min-width: 0;
    }
    .ss-image-col {
        max-width: 52%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .ss-product-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 3px 18px #dde6fa33;
        /* background: #e6eefa; */
        display: block;
    }
    .ss-video-col {
        max-width: 48%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-video-wrap {
        width: 100%;
        /* background: #000; */
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 14px;
    }
    .ss-custom-lead {
        font-size: 1rem;
        color: #3e3e3e;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.54;
        opacity: 1;
        transform: none;
        transition: none;
        max-width: 99%;
        text-wrap: pretty;
    }
    @media (max-width: 900px) {
        .ss-media-row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        }
        .ss-image-col, .ss-video-col {
        max-width: 100%;
        width: 100%;
        }
        .ss-video-wrap iframe {
        min-height: 180px;
        height: 41vw;
        max-height: 250px;
        }
        .ss-section-lead, .ss-custom-lead { text-align: justify; hyphens: auto; }
    }
    @media (max-width: 600px) {
        .ss-media-row {
        gap: 10px;
        margin-bottom: 10px;
        }
        .ss-video-wrap iframe {
        min-height: 140px;
        height: 38vw;
        max-height: 170px;
        }
        .ss-section-lead, .ss-custom-lead { text-align: justify; hyphens: auto; }
    }

    .ss-keyfeat {
        margin-top: 52px;
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(40px) scale(.96);
        transition: all var(--anim-duration) cubic-bezier(.21,.64,.19,1.1);
    }
    .ss-keyfeat.ss-in-view {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .ss-keyfeat-title {
        font-size: var(--heading-md);
        font-weight: 700;
        color: #232323;
        margin-bottom: 16px;
        letter-spacing: 0.01em;
    }
    .ss-feature-list {
        padding-left: 18px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .ss-feature-list li {
        font-size: var(--feature-li);
        color: #3e3e3e;
        margin-bottom: 5px;
        line-height: 1.6;
        font-weight: 400;
        letter-spacing: 0.02em;
        max-width: 820px;
    }
    .ss-cta-row {
        display: flex;
        gap: 23px;
        margin-top: 20px;
        margin-bottom: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ss-cta-btn {
        background: #245ce6;
        color: #fff;
        font-family: 'Poppins', Arial, sans-serif;
        font-size: var(--text-base);
        font-weight: 600;
        border: none;
        border-radius: 2.5px;
        padding: 12px 32px;
        cursor: pointer;
        transition: background .13s, box-shadow .12s;
        box-shadow: 0 2px 12px #e8eefa22;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: center;
        justify-content: center;
    }
    .ss-cta-btn:active, .ss-cta-btn:focus { outline: none; }
    .ss-cta-btn:hover { background: #184aff; }
    .ss-cta-btn.secondary {
        background: #fff;
        color: #245ce6;
        border: 2px solid #245ce6;
        box-shadow: none;
        font-weight: 600;
        justify-content: center;
    }
    .ss-cta-btn.secondary:hover { background: #e8f0ff; color: #184aff; border-color: #184aff; }

    .ss-see-action {
        margin-top: 48px;
        margin-bottom: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(44px) scale(.94);
        transition: all var(--anim-duration) cubic-bezier(.22,.65,.16,1.07);
    }
    .ss-see-action.ss-in-view { opacity: 1; transform: translateY(0) scale(1);}
    .ss-see-action-title {
        font-size: 2.1rem;
        font-weight: 700;
        color: #181a20;
        margin-bottom: 18px;
        margin-left: 0;
        margin-top: 0;
        font-family: 'Poppins', Arial, sans-serif;
        letter-spacing: 0;
    }
    .ss-see-action-vwrap {
        width: 100%;
        background: #ececec;
        border-radius: 0;
        min-height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 10px;
        box-sizing: border-box;
        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: 16/8;
    }
    .ss-see-action-iframe {
        width: 74vw;
        max-width: 730px;
        min-width: 210px;
        min-height: 180px;
        aspect-ratio: 16 / 8;
        border: none;
        background: #ececec;
        display: block;
        border-radius: 0;
        z-index: 2;
    }
    .ss-see-action-vdesc {
        position: absolute;
        left: 0; right: 0;
        top: 22%;
        text-align: center;
        color: #222;
        font-size: 15.1px;
        font-weight: 500;
        pointer-events: none;
        z-index: 2;
    }

    .ss-related {
        margin-top: 60px;
        width: 100%;
        padding: 0;
        background: transparent;
        opacity: 0;
        transform: translateY(55px) scale(.97);
        transition: all 1.15s cubic-bezier(.22,.67,.23,1.11);
    }
    .ss-related.ss-in-view {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .ss-related-title-wrap {
        text-align: center;
        margin-bottom: 36px;
        margin-top: 10px;
    }
    .ss-related-title {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0;
        color: #181a20;
        margin: 0 auto 10px auto;
        font-family: 'Poppins', Arial, sans-serif;
        position: relative;
        display: inline-block;
        z-index: 1;
    }
    .ss-related-title:after {
        content: '';
        display: block;
        margin: 13px auto 0 auto;
        width: 45px;
        height: 6px;
        border-radius: 3px;
        background: #245ce6;
        opacity: 1;
    }
    .ss-related-list {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 26px;
        margin: 0 auto;
        flex-wrap: nowrap;
        box-sizing: border-box;
    }
    .ss-related-card {
        position: relative;
        width: 410px;
        height: 390px;
        background: #f3f5fa;
        box-shadow: 0 5px 30px #1313130c;
        border-radius: 0;
        overflow: hidden;
        transition: box-shadow 0.21s, transform 0.23s cubic-bezier(.17,.67,.23,1.11);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        animation: cardFadeIn 1.2s cubic-bezier(.24,.83,.45,1.08);
    }
    .ss-related-card:hover {
        box-shadow: 0 10px 38px #181a2022;
        transform: translateY(-7px) scale(1.017);
    }
    @keyframes cardFadeIn {
        from { opacity: 0; transform: translateY(40px) scale(.97);}
        to   { opacity: 1; transform: translateY(0) scale(1);}
    }
    .ss-related-img {
        width: 100%;
        height: 315px;
        object-fit: cover;
        border-radius: 0;
        background: #f0f1f7;
        display: block;
        box-shadow: none;
    }
    .ss-related-info {
        position: absolute;
        left: 0; bottom: 0;
        width: 72%;
        min-width: 260px;
        max-width: 300px;
        background: #fff;
        box-shadow: 0 8px 32px #002c5015;
        border-radius: 0;
        padding: 28px 22px 26px 24px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 9px;
        text-align: left;
        margin: 0 0 24px 30px;
    }
    .ss-related-card-title {
        font-weight: 700;
        font-size: 1.16rem;
        margin-bottom: 5px;
        margin-top: 0;
        color: #181a20;
        font-family: 'Poppins', Arial, sans-serif;
    }
    .ss-related-card-desc {
        font-size: 1.01rem;
        font-weight: 400;
        color: #444950;
        line-height: 1.58;
        margin-bottom: 0;
        margin-top: 0;
        font-family: 'Poppins', Arial, sans-serif;
    }
    .ss-related-arrow {
        position: absolute;
        bottom: 0;
        right: 0;
        background: #2469ec;
        color: #fff;
        width: 48px;
        height: 48px;
        border-radius: 9px 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.1rem;
        font-weight: 600;
        box-shadow: 0 2px 12px #245ce63a;
        cursor: pointer;
        border: none;
        outline: none;
        z-index: 10;
        transition: background 0.17s;
    }
    :root{
  --nav-h-desktop: 66px;
  --nav-h-mobile: 56px;
}

/* Make room for the fixed navbar (respects Google Translate banner via --gt-offset) */
.ss-layout{
  padding-top: calc(var(--nav-h-desktop) + var(--gt-offset, 0px));
}

/* Sidebar below the navbar, never “merges” visually */
.ss-sidebar{
  position: sticky;
  top: calc(var(--nav-h-desktop) + var(--gt-offset, 0px) + 8px);
  z-index: 1000;                /* navbar is 2000 in your code, so this sits under it */
  background:#fff;
  border-right:1px solid var(--sidebar-border, #e3e7f3);
}

/* Main area also gets a little top spacing for comfort */
.ss-main{
  margin-top: 8px;
}

/* Mobile: use the mobile navbar height */
@media (max-width: 900px){
  .ss-layout{
    padding-top: calc(var(--nav-h-mobile) + var(--gt-offset, 0px));
        padding-top: 80px !important;
  }
  .ss-sidebar{
    top: calc(var(--nav-h-mobile) + var(--gt-offset, 0px) + 8px);
  }
}
/* Any section title we scroll to will stop BELOW the fixed navbar */
.ss-section-title{
  scroll-margin-top: calc(var(--nav-h-desktop) + var(--gt-offset, 0px) + 12px);
}

@media (max-width: 900px){
  .ss-section-title{
    scroll-margin-top: calc(var(--nav-h-mobile) + var(--gt-offset, 0px) + 12px);
  }
}

    .ss-related-arrow:hover, .ss-related-arrow:focus {
        background: #003bb8;
    }
    @media (max-width: 1200px) {
        .ss-related-list { gap: 14px;}
        .ss-related-card { width: 340px; height: 325px; }
        .ss-related-img { height: 245px;}
        .ss-related-title { font-size: 2rem;}
    }
    @media (max-width: 900px) {
        .ss-related-list { flex-wrap: wrap; gap: 13px;}
        .ss-related-card { width: 88vw; min-width: 0; max-width: 98vw; height: 320px;}
        .ss-related-info { margin: 0 0 15px 13px; max-width: 89vw; }
        .ss-related-img { height: 170px;}
    }
    @media (max-width: 650px) {
        .ss-related { margin-top: 18px;}
        .ss-related-title { font-size: 1.23rem;}
        .ss-related-list { flex-direction: column; gap: 11px;}
        .ss-related-card {  height: 268px;}
        .ss-related-info { left: 0; right: 0; margin-left: 5vw; max-width: 95vw; padding: 14px 11px;}
        .ss-related-img { height: 108px;}
        .ss-related-arrow { width: 38px; height: 38px; font-size: 1.18rem;}
    }

    .ss-main section { scroll-margin-top: 24px; }
    @media (max-width: 900px) {
        .ss-main section { scroll-margin-top: 12px; }
    }

    /* Animation utility (replaces .section-anim) */
    /* MOBILE: let Categories scroll with the page (not sticky) */
@media (max-width: 900px){
  .ss-sidebar{
    position: static !important;   /* was sticky on desktop */
    top: auto !important;
    z-index: 1;                    /* sit under the navbar and videos */
    background: transparent;       /* no white slab overlay */
    width: 100%;
  }

  /* Ensure single-column flow so the sidebar doesn't overlap content */
  .ss-layout{
    /* keep your navbar padding if you added it earlier */
    padding-top: calc(var(--nav-h-mobile, 56px) + var(--gt-offset, 0px));
    display: block;                /* or grid with 1 col—either is fine */
  }

  /* Make the list behave like normal content (not constrained) */
  .ss-nav-list{
    max-height: none;
    overflow: visible;
  }
}
/* ====== Center main content on large screens only ====== */
@media (min-width: 1600px) {
  .ss-main {
    max-width: 1100px;             /* keep your current width */
    margin-left: auto !important;  /* center horizontally */
    margin-right: auto !important; 
  }

  /* Optional: center section titles too */
  .ss-section-title {
    justify-content: center;
    text-align: center;
  }
}
