@import url("../home/vendor/jquery.mmenu.all.css");

:root {
    --ssc-green-950: #063d2b;
    --ssc-green-900: #07563b;
    --ssc-green-700: #118657;
    --ssc-green-500: #20aa68;
    --ssc-lime: #a9d541;
    --ssc-ink: #17312a;
    --ssc-muted: #62736d;
    --ssc-surface: #f4f8f5;
    --ssc-line: #dce8e1;
    --ssc-white: #fff;
    --ssc-shadow: 0 5px 16px rgba(7, 72, 48, .055);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--ssc-ink);
    background: var(--ssc-white);
    font-family: "Jura", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body *, body *::before, body *::after {
    box-sizing: border-box;
}

body img {
    max-width: 100%;
}

body a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    min-height: 100vh;
}

/* Header */
.wp-menu-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: 88px;
    padding: 10px 0 !important;
    background: rgba(255, 255, 255, .97) !important;
    border-bottom: 1px solid rgba(12, 99, 67, .1);
    box-shadow: 0 8px 30px rgba(6, 61, 43, .08);
    backdrop-filter: blur(12px);
}

.wp-menu-header .container {
    max-width: 1440px !important;
}

.wp-scrol-menu {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.menu-header__logo {
    flex: 0 0 auto;
    width: 150px !important;
}

.menu-header__logo a,
.logo-footer a {
    display: block;
}

.menu-header__logo img {
    display: block;
    width: 150px;
    height: 56px;
    object-fit: contain;
}

.block-menu-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.input-search-menu,
.wp-icon-control-search,
.search-control-icon {
    display: flex;
    align-items: center;
}

.search-control-icon a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ssc-green-900);
    background: var(--ssc-surface);
}

.search-control-icon svg {
    display: block;
    width: 16px !important;
    height: 16px !important;
    fill: currentColor;
}

.search-control-menu {
    position: fixed;
    top: 88px;
    left: 50%;
    z-index: 1002;
    width: min(680px, calc(100% - 32px));
    padding: 14px;
    display: none;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 14px;
    box-shadow: var(--ssc-shadow);
}

.search-control-menu.active,
.input-search-menu.active .search-control-menu {
    display: flex;
}

.search-control-menu input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 16px;
    border: 1px solid var(--ssc-line);
    border-radius: 10px;
    outline: none;
}

.close-search,
.close-search-menu {
    display: none;
}

.block-img-ensign {
    display: flex;
    align-items: center;
    gap: 8px;
}

.block-img-ensign .ensign {
    width: 28px;
    height: 20px;
    padding: 2px;
    display: block;
    border: 1px solid transparent;
    border-radius: 4px;
    opacity: .62;
}

.block-img-ensign .ensign.active-ensign {
    border-color: var(--ssc-green-500);
    opacity: 1;
}

.block-img-ensign img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.menu-header > ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    list-style: none;
}

.menu-header > ul > li {
    position: relative;
}

.menu-header > ul > li > a {
    position: relative;
    display: block;
    padding: 7px 0;
    color: var(--ssc-ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

.menu-header > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    background: var(--ssc-green-500);
    transition: right .22s ease;
}

.menu-header > ul > li:hover > a,
.menu-header > ul > li > a:focus {
    color: var(--ssc-green-700) !important;
}

.menu-header > ul > li:hover > a::after,
.menu-header > ul > li > a:focus::after {
    right: 0;
}

.menu-header ul ul {
    position: absolute;
    top: calc(100% + 10px);
    left: -18px;
    z-index: 1010;
    min-width: 250px;
    margin: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 12px;
    box-shadow: var(--ssc-shadow);
    transform: translateY(8px);
    transition: .2s ease;
}

.menu-header li:hover > ul,
.menu-header li:focus-within > ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu-header ul ul li {
    position: relative;
}

.menu-header ul ul a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
    color: #355148;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.menu-header ul ul a:hover {
    color: var(--ssc-green-900);
    background: var(--ssc-surface);
}

.menu-header ul ul ul {
    top: -10px;
    left: calc(100% + 8px);
}

.menu-mobile {
    display: none;
}

/* Section banner */
.banner-pchild-vns {
    position: relative;
    min-height: 330px;
    margin-top: 88px;
    display: flex;
    align-items: flex-end;
    padding: 70px 0 54px;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(3, 48, 32, .88), rgba(3, 48, 32, .35)), url("../img-change/bg-pchild.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
}

body.section-business .banner-pchild-vns,
body.section-product .banner-pchild-vns {
    background-image: linear-gradient(90deg, rgba(3, 48, 32, .88), rgba(3, 48, 32, .32)), url("../img-change/banner2-637695618918316999-638655303689652297.jpg") !important;
}

body.section-introduction .banner-pchild-vns {
    background-image: linear-gradient(90deg, rgba(3, 48, 32, .84), rgba(3, 48, 32, .18)), url("../img-change/banner1v2-637686972191755857.jpg") !important;
}

.banner-pchild-vns::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(1, 33, 22, .38));
    pointer-events: none;
}

.banner-pchild-vns .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.brd-pchild-vns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.item-brd-pchild-banner,
.line-brd-pchild {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 600;
}

.item-brd-pchild-banner:hover {
    color: #fff;
}

.name-pchild-vns-banner {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.035em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, .2);
}

/* Main content */
.big-content-pchild-vns {
    padding: 64px 0 76px;
    background: linear-gradient(180deg, #fff 0, var(--ssc-surface) 100%);
}

.wp-navhoz-text-feature {
    margin-bottom: 42px !important;
}

.wp-nav-hoz-vns {
    position: sticky;
    top: 118px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    box-shadow: 0 4px 14px rgba(7, 72, 48, .045);
}

.wp-nav-hoz-vns .title-nav {
    padding: 22px 22px 14px;
    background: linear-gradient(135deg, var(--ssc-green-950), var(--ssc-green-700));
}

.wp-nav-hoz-vns .title-nav .text {
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.wp-nav-hoz-vns .title-nav .line {
    width: 48px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--ssc-lime);
}

.list-nav-hoz {
    padding: 10px;
}

.big-item-nav-hoz + .big-item-nav-hoz {
    border-top: 1px solid #edf3ef;
}

.item-nav-hoz-vns,
.item-child-nav-hoz {
    display: block;
    padding: 13px 12px;
    color: #456159;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    transition: .2s ease;
}

.item-child-nav-hoz {
    padding-left: 26px;
    font-size: 13px;
}

.item-nav-hoz-vns:hover,
.item-child-nav-hoz:hover,
.item-nav-hoz-vns.active,
.item-child-nav-hoz.active {
    color: var(--ssc-green-900);
    background: #eaf7ef;
    transform: translateX(3px);
}

.text-feature-pchild,
.wp-main-ct-block,
.main-popup-partner,
.content-style-vns {
    color: var(--ssc-ink);
}

.text-feature-pchild {
    min-height: 210px;
    padding: clamp(24px, 4vw, 44px);
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    box-shadow: var(--ssc-shadow);
}

.main-title,
.title-line-bot-vns,
.wp-title-page h3 {
    position: relative;
    margin: 0 0 24px;
    color: var(--ssc-green-950);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.main-title::after,
.wp-title-page h3::after {
    content: "";
    display: block;
    width: 62px;
    height: 4px;
    margin-top: 13px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ssc-green-500), var(--ssc-lime));
}

.content-style-vns p,
.prg-feature p,
.text-feature-pchild li {
    color: #49635b;
    font-size: 16px;
    line-height: 1.8;
}

.content-style-vns ul,
.prg-feature ul {
    padding-left: 1.2rem;
}

.content-style-vns li::marker,
.prg-feature li::marker {
    color: var(--ssc-green-500);
}

.content-style-vns img,
.prg-feature img,
.wp-main-ct-block img {
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(7, 72, 48, .12);
}

.wp-main-ct-block {
    margin-top: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
}

.main-ct-pchild {
    padding-top: 24px !important;
}

.wp-title-page {
    margin-bottom: 26px !important;
}

.body-lvkd-content {
    color: var(--ssc-muted);
}

.wp-slide-lvdk-body {
    position: relative;
    margin: 26px 0 48px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    box-shadow: 0 4px 14px rgba(7, 72, 48, .045);
}

.wp-slide-lvdk-body > .title-line-bot-vns {
    padding-right: 120px;
    font-size: 24px;
}

.see-all-product {
    position: absolute;
    top: 27px;
    right: 28px;
}

.see-all-product a,
.btn-connect-footer a,
.catalog-placeholder a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 17px;
    color: #fff;
    background: var(--ssc-green-700);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.see-all-product a:hover,
.btn-connect-footer a:hover,
.catalog-placeholder a:hover {
    color: #fff;
    background: var(--ssc-green-950);
    transform: translateY(-1px);
}

.slide-lvkd-content {
    overflow: hidden;
}

.slide-lvkd-content .swiper-wrapper {
    align-items: stretch;
}

.slide-lvkd-content .swiper-slide {
    height: auto;
}

.wp-img-slide-lvkd {
    height: 100%;
    overflow: hidden;
    background: var(--ssc-surface);
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    transition: transform .22s ease, box-shadow .22s ease;
}

.wp-img-slide-lvkd:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(7, 72, 48, .075);
}

.img-slide-lvkd {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #edf5ef;
}

.img-slide-lvkd > img,
.wp-img-product img,
.product-zone-filter-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.img-slide-lvkd .ssc-fallback-product {
    object-position: var(--fallback-position, 72% center);
}

.wp-content-img-hidden {
    position: absolute;
    inset: auto 0 0;
    padding: 46px 16px 15px;
    color: #fff;
    background: linear-gradient(transparent, rgba(3, 48, 32, .9));
}

.wp-content-img-hidden .title-content-hidden,
.wp-content-img-hidden .content-hidden-img {
    color: #fff;
}

.btn-slide-lvkd-left,
.btn-slide-lvkd-right,
[id^="btn-slide-lvkd-"] {
    width: 38px !important;
    height: 38px !important;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(7, 72, 48, .16);
}

.catalog-placeholder {
    margin-top: 18px;
    padding: clamp(34px, 6vw, 72px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    box-shadow: var(--ssc-shadow);
}

.catalog-placeholder h3 {
    margin: 0 0 12px;
    color: var(--ssc-green-950);
    font-size: clamp(28px, 4vw, 42px);
}

.catalog-placeholder p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: var(--ssc-muted);
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.product-detail-visual {
    min-height: 410px;
    overflow: hidden;
    background: var(--ssc-surface);
    border-radius: 0;
    box-shadow: var(--ssc-shadow);
}

.product-detail-visual img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    display: block;
    object-fit: cover;
    object-position: 70% center;
}

.product-detail-copy .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ssc-green-700);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.product-detail-copy h1 {
    margin: 0 0 20px;
    color: var(--ssc-green-950);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.product-detail-copy p {
    color: var(--ssc-muted);
    font-size: 17px;
}

.product-detail-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-detail-actions a {
    min-height: 46px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ssc-green-700);
    border: 1px solid var(--ssc-green-700);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.product-detail-actions a.secondary {
    color: var(--ssc-green-900);
    background: #fff;
}

/* Compact section navigator shown after the sidebar scrolls away */
.icon-open-nav-scroll {
    position: fixed !important;
    top: auto !important;
    right: 92px !important;
    bottom: 84px !important;
    left: auto !important;
    z-index: 1040;
    width: 48px;
    height: 48px;
    display: none !important;
    place-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: var(--ssc-green-700) !important;
    box-shadow: 0 12px 28px rgba(6, 61, 43, .25);
}

.icon-open-nav-scroll.appear {
    display: grid !important;
}

.icon-open-nav-scroll .icon,
.icon-open-nav-scroll img {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    object-fit: contain;
}

.wp-nav-hoz-scroll {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1100;
    height: 100vh !important;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.wp-nav-hoz-scroll.appear {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.wp-nav-hoz-scroll .bg-nav-hoz-scroll {
    position: absolute;
    inset: 0;
    background: rgba(2, 28, 19, .58);
    backdrop-filter: blur(3px);
}

.wp-nav-hoz-scroll .nav-open-scroll {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(380px, 88vw);
    margin: 0;
    padding-top: 62px;
    overflow-y: auto;
    border: 0;
    border-radius: 0 20px 20px 0;
    transform: translateX(-102%);
    transition: transform .25s ease;
}

.wp-nav-hoz-scroll.appear .nav-open-scroll {
    transform: translateX(0);
}

.close-nav-scroll {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 1;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: #eef7f1;
}

.close-nav-scroll img {
    width: 13px;
    height: 13px;
}

/* Forms, tables, maps */
.content-style-vns table,
.prg-feature table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
}

.content-style-vns th,
.content-style-vns td,
.prg-feature th,
.prg-feature td {
    padding: 12px 14px;
    border: 1px solid var(--ssc-line);
    text-align: left;
}

input, textarea, select {
    max-width: 100%;
    border: 1px solid #cfe0d7;
    border-radius: 10px;
}

.block-map {
    height: 380px;
}

.block-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.wp-footer {
    padding: 52px 0 30px !important;
    color: rgba(255, 255, 255, .82);
    background: linear-gradient(135deg, #043c2a, #07563b) !important;
}

.wp-footer-bottom {
    padding: 0 !important;
}

.logo-footer img {
    width: 190px;
    height: 74px;
    object-fit: contain;
    filter: none;
    border-radius: 10px;
}

.content-wp-footer {
    padding: 22px !important;
    background: rgba(0, 0, 0, .1) !important;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
}

.title-ct-footer {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.item-contact-footer {
    margin-top: 10px;
}

.item-contact-footer .icon-ct-footer img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.item-contact-footer a:hover {
    color: var(--ssc-lime) !important;
}

.social-footer img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-menu {
    margin-top: 22px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

@media (max-width: 1199.98px) {
    .menu-header > ul {
        gap: 13px;
    }

    .menu-header > ul > li > a {
        font-size: 12px;
    }

    .menu-header__logo,
    .menu-header__logo img {
        width: 125px !important;
    }
}

@media (max-width: 991.98px) {
    .wp-menu-header {
        min-height: 72px;
        padding: 7px 0 !important;
    }

    .wp-scrol-menu {
        min-height: 58px;
    }

    .menu-header__logo,
    .menu-header__logo img {
        width: 124px !important;
        height: 48px;
    }

    .block-menu-right .menu-header {
        display: none;
    }

    .menu-mobile {
        display: block;
        margin-left: auto;
    }

    .nav-btn-show,
    .icon-menu {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
    }

    .menu-line {
        width: 25px;
    }

    .menu-line .line {
        height: 2px;
        margin: 5px 0;
        background: var(--ssc-green-900);
    }

    .banner-pchild-vns {
        min-height: 270px;
        margin-top: 72px;
        padding-bottom: 42px;
    }

    .big-content-pchild-vns {
        padding: 42px 0 54px;
    }

    .wp-menu-hoz-mobile {
        margin-bottom: 22px;
    }

    .text-feature-pchild {
        padding: 28px;
    }


}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .block-menu-right {
        flex-direction: row;
        align-items: center;
        margin-left: auto;
    }

    .menu-top-bar {
        gap: 8px;
    }

    .banner-pchild-vns {
        min-height: 235px;
        padding: 48px 0 34px;
    }

    .name-pchild-vns-banner {
        font-size: 34px;
    }

    .big-content-pchild-vns {
        padding: 32px 0 44px;
    }

    .text-feature-pchild,
    .wp-slide-lvdk-body,
    .wp-main-ct-block {
        padding: 22px;
        border-radius: 0;
    }

    .wp-slide-lvdk-body > .title-line-bot-vns {
        padding-right: 0;
    }

    .see-all-product {
        position: static;
        margin: -10px 0 20px;
    }

    .content-wp-footer {
        margin-top: 24px;
    }



    .product-detail-shell {
        grid-template-columns: 1fr;
    }

    .product-detail-visual,
    .product-detail-visual img {
        min-height: 280px;
    }
}

@media (max-width: 479.98px) {
    .block-img-ensign {
        display: none;
    }

    .menu-header__logo,
    .menu-header__logo img {
        width: 112px !important;
    }

    .main-title,
    .title-line-bot-vns,
    .wp-title-page h3 {
        font-size: 26px;
    }

    .arcontactus-widget {
        transform: scale(.82);
        transform-origin: bottom right;
    }
}

/* Brand wordmark (same markup and styling as the homepage) */
:root {
    --ssc-green-600: #1fa866;
    --ssc-red: #ed1c24;
}

.menu-header__logo:has(.ssc-brand) {
    width: auto !important;
    flex: 0 0 auto;
}

.menu-header__logo a {
    width: auto !important;
}

.ssc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 145px;
}

.ssc-brand__symbol {
    position: relative;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 22px 22px 22px 6px;
    background: linear-gradient(145deg, var(--ssc-lime), var(--ssc-green-600) 68%);
    transform: rotate(-45deg);
    box-shadow: 0 8px 20px rgba(31, 168, 102, .24);
}

.ssc-brand__symbol::before,
.ssc-brand__symbol::after {
    content: "";
    position: absolute;
    background: #fff;
}

.ssc-brand__symbol::before {
    top: 10px;
    left: 16px;
    width: 7px;
    height: 20px;
    border-radius: 999px;
}

.ssc-brand__symbol::after {
    top: 8px;
    left: 18px;
    width: 13px;
    height: 8px;
    border-radius: 100% 0 100% 0;
    transform: rotate(45deg);
}

.ssc-brand__type {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.ssc-brand__type strong {
    color: var(--ssc-red);
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.ssc-brand__type small {
    margin-top: 4px;
    color: var(--ssc-green-950);
    font: 700 8px/1 Arial, sans-serif;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.logo-footer a {
    width: auto;
}

.ssc-brand--footer .ssc-brand__type strong {
    color: #ff5358;
}

.ssc-brand--footer .ssc-brand__type small {
    color: rgba(255, 255, 255, .78);
}

/* Mobile menu button: neutral colour, lines centred in the tap target */
.menu-mobile .icon-menu {
    border-radius: 12px;
}

.menu-mobile .menu-line {
    width: 24px;
    height: 18px;
    margin: 0;
}

.menu-mobile .menu-line .lines {
    position: static;
    height: auto;
}

.menu-mobile .menu-line .line,
.menu-mobile .menu-line.rotate .line {
    position: relative !important;
    top: auto !important;
    float: none !important;
    display: block;
    width: 100% !important;
    height: 2px;
    margin: 0 !important;
    background: var(--ssc-green-900) !important;
    border-radius: 2px;
    opacity: 1 !important;
    transform: none !important;
}

.menu-mobile .menu-line .line + .line {
    margin-top: 6px !important;
}

/* Header search panel: legacy scripts toggle these classes */
.input-search-menu.is-search-open .search-control-menu,
.input-search-menu.open-search-rps .search-control-menu,
.search-control-menu.open-search-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-control-menu input {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 16px;
}

.search-control-menu #main-btn-search {
    order: 2;
}

.input-search-menu.is-search-open .close-search-menu,
.input-search-menu.open-search-rps .close-search-menu,
.search-control-menu.open-search-menu .close-search-menu {
    order: 3;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 50%;
    background: var(--ssc-surface);
}

.close-search-menu img {
    width: 12px;
    height: 12px;
    display: block;
}

/* Back-to-top button (shown by the theme script after scrolling) */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1030;
    width: 44px;
    height: 44px;
    display: none;
    cursor: pointer;
    border-radius: 50%;
    background: var(--ssc-green-700) !important;
    box-shadow: 0 10px 24px rgba(6, 61, 43, .25);
}

.back-to-top img {
    width: 16px;
    height: 16px;
    margin: 14px auto 0;
    display: block;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .search-control-menu {
        top: 80px;
    }
}

@media (max-width: 575.98px) {
    .arcontactus-widget .arcontactus-prompt {
        display: none !important;
    }
}

@media (max-width: 479.98px) {
    .ssc-brand {
        min-width: 0;
        gap: 8px;
    }

    .ssc-brand__symbol {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .ssc-brand__symbol::before {
        top: 8px;
        left: 14px;
    }

    .ssc-brand__symbol::after {
        top: 7px;
        left: 16px;
    }

    .ssc-brand__type strong {
        font-size: 25px;
    }
}

/* Mobile sub-navigation between sibling pages (filled per section) */
.site-subnav {
    display: flex;
    gap: 8px;
    padding: 2px 0 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-subnav::-webkit-scrollbar {
    display: none;
}

.site-subnav__link {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    color: var(--ssc-green-900);
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.site-subnav__link[aria-current="page"] {
    color: #fff;
    background: var(--ssc-green-700);
    border-color: var(--ssc-green-700);
}

/* Header product search results (js/site-common.js) */
.site-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(420px, 60vh);
    padding: 6px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 14px;
    box-shadow: var(--ssc-shadow);
}

.site-search-results[hidden] {
    display: none;
}

.site-search-result {
    padding: 8px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--ssc-ink);
    border-radius: 10px;
}

.site-search-result:hover,
.site-search-result:focus-visible {
    background: var(--ssc-surface);
    outline: none;
}

.site-search-result img,
.site-search-result__ph {
    width: 44px;
    height: 45px;
    display: block;
    object-fit: cover;
    background: #eef6f0;
    border-radius: 8px;
}

.site-search-result strong {
    display: block;
    color: var(--ssc-green-950);
    font-size: 14px;
    line-height: 1.3;
}

.site-search-result small {
    color: var(--ssc-muted);
    font-size: 12px;
}

.site-search-empty {
    margin: 0;
    padding: 12px;
    color: var(--ssc-muted);
    font-size: 14px;
    text-align: left;
}

/* Mobile "In this section" menu for sections with many pages (details/summary, no script) */
.site-sectionnav {
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--ssc-line);
    border-radius: 0;
    box-shadow: 0 3px 12px rgba(7, 72, 48, .04);
}

.site-sectionnav summary {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    list-style: none;
}

.site-sectionnav summary::-webkit-details-marker {
    display: none;
}

.site-sectionnav summary::after {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid var(--ssc-green-900);
    border-bottom: 2px solid var(--ssc-green-900);
    transform: rotate(45deg) translateY(-3px);
    transition: transform .2s ease;
}

.site-sectionnav[open] summary::after {
    transform: rotate(-135deg) translate(-3px, 0);
}

.site-sectionnav__label {
    color: var(--ssc-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-sectionnav__current {
    margin-left: auto;
    color: var(--ssc-green-950);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.site-sectionnav__list {
    margin: 0;
    padding: 6px 10px 12px;
    list-style: none;
    border-top: 1px solid var(--ssc-line);
}

.site-sectionnav__list li {
    list-style: none;
}

.site-sectionnav__list a {
    padding: 10px;
    display: block;
    color: var(--ssc-ink);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.site-sectionnav__child a {
    padding-left: 26px;
    color: #456159;
    font-weight: 500;
}

.site-sectionnav__list a[aria-current="page"] {
    color: var(--ssc-green-900);
    background: #eaf7ef;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ===== Slide-in mobile menu (jQuery mmenu) in the site's colours; long items wrap instead of being cut off ===== */
.mm-menu {
    color: var(--ssc-ink);
    background: #fff;
    font-family: Arial, sans-serif;
}

.mm-menu .mm-navbar {
    border-color: var(--ssc-line);
}

.mm-menu .mm-navbar .mm-title {
    color: var(--ssc-green-950);
    font-size: 16px;
    font-weight: 700;
}

.mm-menu .mm-navbar .mm-btn::before,
.mm-menu .mm-navbar .mm-btn::after {
    border-color: var(--ssc-green-900);
}

.mm-menu .mm-listview > li > a:not(.mm-next),
.mm-menu .mm-listview > li > span {
    padding-top: 13px;
    padding-bottom: 13px;
    color: var(--ssc-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    text-overflow: clip;
}

.mm-menu .mm-listview > li:not(.mm-divider)::after,
.mm-menu .mm-listview .mm-next::before {
    border-color: var(--ssc-line);
}

.mm-menu .mm-listview .mm-next::after {
    border-color: var(--ssc-green-700);
}

.mm-menu .mm-counter {
    color: var(--ssc-green-700);
    font-weight: 700;
}
