:root {
    --eis-color-orange: #F26419;
    --eis-color-orange-hover: #FF7A1A;
    --eis-color-blue: #2458D8;
    --eis-color-ink: #16191D;
    --eis-color-deep: #0D0F12;
    --eis-color-surface: #1E2228;
    --eis-color-light: #F4F5F7;
    --eis-color-steel: #8A9099;
    --eis-color-border: #2A2F36;
    --eis-color-cool-steel: #B8C0CC;
    --eis-color-white: #ffffff;
    --eis-color-muted: rgba(255, 255, 255, 0.72);
    --eis-theme-bg: #0D0F12;
    --eis-theme-bg-soft: #111820;
    --eis-theme-text: #DCE2EA;
    --eis-theme-text-strong: #FFFFFF;
    --eis-theme-muted: #B8C0CC;
    --eis-theme-panel: #1E2228;
    --eis-theme-panel-strong: #16191D;
    --eis-theme-border: rgba(184, 192, 204, 0.16);
    --eis-theme-field: #0D0F12;
    --eis-container: 1680px;
    --eis-container-gutter: 56px;
    --eis-container-gutter-mobile: 28px;
    --eis-radius: 8px;
    --eis-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --eis-hero-overlay: 0.68;
    --eis-page-bg: #F4F5F7;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    background: var(--eis-theme-bg);
    color: var(--eis-theme-text);
    font-family: Bahnschrift, "DIN Alternate", "Aptos", "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

[lang^="ar"],
[dir="rtl"] body {
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

html.eis-modal-open {
    overflow: hidden;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--eis-color-blue);
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 10000;
    width: auto;
    height: auto;
    clip: auto;
    clip-path: none;
    border-radius: var(--eis-radius);
    padding: 10px 14px;
    background: var(--eis-color-orange);
    color: #111;
}

.eis-container {
    width: min(calc(100% - var(--eis-container-gutter)), var(--eis-container));
    margin-inline: auto;
}

.eis-button,
.button,
.wp-block-button__link,
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--eis-body-button-height, 44px);
    border: 1px solid var(--eis-body-button-border, var(--eis-color-orange));
    border-radius: var(--eis-body-button-radius, 999px);
    padding: 11px var(--eis-body-button-padding-x, 20px);
    background: var(--eis-body-button-bg, var(--eis-color-orange));
    color: var(--eis-body-button-text, #151515);
    font: inherit;
    font-size: var(--eis-body-button-font-size, 14px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.eis-button:hover,
.eis-button:focus-visible,
.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.elementor-button:hover,
.elementor-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    border-color: var(--eis-body-button-hover-bg, var(--eis-color-orange-hover));
    background: var(--eis-body-button-hover-bg, var(--eis-color-orange-hover));
    color: var(--eis-body-button-hover-text, #111);
    transform: translateY(-1px);
}

.eis-button--small {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 13px;
}

.eis-button--ghost {
    background: transparent;
    color: var(--eis-color-white);
}

.eis-button--ghost:hover,
.eis-button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: var(--eis-color-white);
}

.eis-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(13, 15, 18, 0.9);
    color: var(--eis-color-white);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-bar .eis-site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .eis-site-header {
        top: 46px;
    }

    .admin-bar.eis-header-fixed .eis-primary-menu-bar {
        top: 120px;
    }

    .admin-bar.eis-header-overlay .eis-primary-menu-bar {
        top: 46px;
    }
}

.eis-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 22px;
}

.eis-brand {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    color: var(--eis-color-white);
    text-decoration: none;
}

.eis-brand img,
.eis-brand__fallback-logo {
    display: block;
    max-height: 42px;
    width: auto;
}

.eis-brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--eis-color-orange), var(--eis-color-blue));
    color: #fff;
    font-weight: 900;
}

.eis-brand__text {
    color: var(--eis-color-white);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.eis-brand__tagline {
    display: block;
    color: var(--eis-color-cool-steel);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.eis-nav {
    position: relative;
    margin-inline-start: 34px;
    padding-inline-start: 30px;
}

.eis-nav::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, var(--eis-color-orange), transparent);
    box-shadow: 0 0 14px rgba(242, 100, 25, 0.84);
    content: "";
    transform: translateY(-50%);
}

.eis-nav__list,
.eis-footer-menu,
.eis-contact-list,
.eis-language-switcher {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eis-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.eis-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
}

.eis-nav__list a:hover,
.eis-nav__list a:focus-visible,
.eis-nav__list .current-menu-item > a,
.eis-nav__list .current_page_item > a {
    background: rgba(255, 129, 18, 0.16);
    color: #fff;
}

.eis-site-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: auto;
}

.eis-site-header .eis-search-form,
.eis-site-header .search-form,
.eis-site-header input[type="search"] {
    display: none !important;
}

.eis-icon-button {
    display: inline-grid;
    place-items: center;
    width: var(--eis-header-icon-button-size, 38px);
    height: var(--eis-header-icon-button-size, 38px);
    border: 1px solid var(--eis-header-button-border, rgba(184, 192, 204, 0.2));
    border-radius: var(--eis-header-button-radius, 999px);
    padding: 0;
    background: var(--eis-header-button-bg, rgba(255, 255, 255, 0.06));
    color: var(--eis-header-button-text, var(--eis-color-cool-steel));
    cursor: pointer;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.eis-icon-button svg,
.eis-quick-actions__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eis-quick-actions__icon img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.eis-icon-button:hover,
.eis-icon-button:focus-visible {
    border-color: var(--eis-header-button-hover-bg, var(--eis-color-orange));
    background: var(--eis-header-button-hover-bg, rgba(242, 100, 25, 0.14));
    color: var(--eis-header-button-hover-text, #fff);
    transform: translateY(-1px);
}

.eis-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--eis-header-button-text, var(--eis-color-cool-steel));
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0;
}

.eis-language-switcher__globe {
    display: inline-grid;
    place-items: center;
    width: 19px;
    height: 19px;
    color: var(--eis-color-orange);
}

.eis-language-switcher__globe svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eis-language-switcher ul {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eis-language-switcher li {
    display: inline-flex;
    align-items: center;
}

.eis-language-switcher li + li::before {
    margin-inline: 12px;
    color: var(--eis-color-orange);
    content: "|";
}

.eis-language-switcher a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: currentColor;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    transition: color 160ms ease, transform 160ms ease;
}

.eis-language-switcher a:hover,
.eis-language-switcher a:focus-visible,
.eis-language-switcher a.is-active,
.eis-language-switcher .current-lang a {
    color: var(--eis-color-orange);
    transform: translateY(-1px);
}

.eis-menu-toggle {
    display: none;
    position: relative;
    width: var(--eis-header-icon-button-size, 42px);
    height: var(--eis-header-icon-button-size, 42px);
    border: 1px solid var(--eis-header-button-border, rgba(255, 255, 255, 0.2));
    border-radius: var(--eis-header-button-radius, 999px);
    padding: 0;
    background: var(--eis-header-button-bg, rgba(255, 255, 255, 0.08));
    color: var(--eis-header-button-text, #fff);
    cursor: pointer;
}

.eis-menu-toggle span:not(.screen-reader-text) {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.eis-menu-toggle span:nth-child(1) {
    top: 14px;
}

.eis-menu-toggle span:nth-child(2) {
    top: 20px;
}

.eis-menu-toggle span:nth-child(3) {
    top: 26px;
}

.eis-site-header.is-menu-open .eis-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.eis-site-header.is-menu-open .eis-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.eis-site-header.is-menu-open .eis-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.eis-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: 360px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(242, 100, 25, 0.2), rgba(36, 88, 216, 0.22)),
        var(--eis-color-ink);
    color: var(--eis-color-white);
}

.eis-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--eis-hero-image);
    background-position: center;
    background-size: cover;
    content: "";
    transform: scale(1.03);
    animation: eis-hero-zoom 14s ease-in-out infinite alternate;
}

.eis-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 70% 30%, rgba(36, 88, 216, 0.3), transparent 32%),
        linear-gradient(90deg, rgba(13, 15, 18, var(--eis-hero-overlay)), rgba(13, 15, 18, 0.36)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
    content: "";
}

.eis-hero--home {
    min-height: clamp(640px, 86vh, 820px);
    padding-top: 40px;
}

.eis-hero--page {
    min-height: clamp(240px, 34vh, 360px);
    text-align: center;
}

.eis-hero__inner {
    padding-block: 72px;
}

.eis-hero--page .eis-hero__inner {
    max-width: 860px;
}

.eis-eyebrow {
    margin: 0 0 12px;
    color: var(--eis-color-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eis-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: 4.75rem;
    font-weight: 950;
    line-height: 1.02;
}

.eis-hero--page h1 {
    max-width: none;
    font-size: 3.35rem;
}

.eis-hero__description {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--eis-color-muted);
    font-size: 1.15rem;
    font-weight: 550;
}

.eis-hero--page .eis-hero__description {
    margin-inline: auto;
}

.eis-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.eis-site-main {
    min-height: 44vh;
    background: var(--eis-theme-bg);
}

.eis-quick-actions {
    position: relative;
    z-index: 5;
    margin-top: -54px;
    margin-bottom: 42px;
}

.eis-quick-actions__bar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--eis-theme-border);
    border-radius: var(--eis-radius);
    background: color-mix(in srgb, var(--eis-theme-panel) 94%, transparent);
    color: var(--eis-theme-text-strong);
    box-shadow: var(--eis-shadow);
    backdrop-filter: blur(16px);
}

.eis-quick-actions__item {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 132px;
    border-inline-end: 1px solid var(--eis-theme-border);
    padding: 20px 14px;
    color: var(--eis-theme-text-strong);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.eis-quick-actions__item:last-child {
    border-inline-end: 0;
}

.eis-quick-actions__item:hover,
.eis-quick-actions__item:focus-visible {
    background: color-mix(in srgb, var(--eis-theme-panel-strong) 84%, var(--eis-color-orange) 16%);
    color: var(--eis-theme-text-strong);
}

.eis-quick-actions__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid var(--eis-theme-border);
    border-radius: 999px;
    color: var(--eis-theme-muted);
    background: color-mix(in srgb, var(--eis-theme-bg) 72%, transparent);
}

.eis-quick-actions__item:hover .eis-quick-actions__icon,
.eis-quick-actions__item:focus-visible .eis-quick-actions__icon {
    border-color: rgba(242, 100, 25, 0.46);
    color: var(--eis-color-orange-hover);
}

.eis-page-content,
.eis-content-layout {
    padding-block: 64px;
    background: var(--eis-theme-bg);
    color: var(--eis-theme-text);
}

.eis-page-content--full {
    padding-block: 0;
}

.eis-entry {
    max-width: 900px;
    margin-inline: auto;
    color: var(--eis-theme-text);
}

.eis-page-content--full .eis-entry {
    max-width: none;
}

body.elementor-page .eis-page-content {
    width: min(calc(100% - var(--eis-container-gutter)), var(--eis-container));
}

body.elementor-page .eis-entry,
body.elementor-page .eis-entry__content,
body.elementor-page .eis-entry__content > .elementor {
    width: 100%;
    max-width: none;
}

.eis-entry__title {
    margin: 0 0 14px;
    color: var(--eis-theme-text-strong);
    font-size: 2.7rem;
    line-height: 1.15;
}

.eis-entry__title a {
    color: inherit;
    text-decoration: none;
}

.eis-entry__content > :first-child {
    margin-top: 0;
}

.eis-entry__content > :last-child {
    margin-bottom: 0;
}

.eis-entry__content img {
    border-radius: var(--eis-radius);
}

.eis-home-band {
    padding-block: 52px;
    background: var(--eis-theme-panel-strong);
    color: var(--eis-theme-text-strong);
}

.eis-capabilities {
    padding-block: 62px;
    background: var(--eis-theme-bg-soft);
    color: var(--eis-theme-text-strong);
}

.eis-capabilities__head {
    max-width: 760px;
    margin-bottom: 24px;
}

.eis-capabilities__head h2 {
    margin: 0;
    color: var(--eis-theme-text-strong);
    font-size: 2.35rem;
    line-height: 1.16;
}

.eis-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.eis-capability-card {
    min-height: 188px;
    border: 1px solid var(--eis-theme-border);
    border-radius: var(--eis-radius);
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(242, 100, 25, 0.11), transparent 38%),
        var(--eis-theme-panel);
    box-shadow: inset 4px 0 0 var(--eis-color-orange);
}

.eis-capability-card strong {
    display: block;
    margin-bottom: 13px;
    color: var(--eis-color-orange-hover);
    font-size: 2.3rem;
    line-height: 1;
}

.eis-capability-card h3 {
    margin: 0 0 10px;
    color: var(--eis-theme-text-strong);
    font-size: 1.12rem;
}

.eis-capability-card p {
    margin: 0;
    color: var(--eis-theme-muted);
}

.eis-home-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.eis-home-band article {
    min-height: 132px;
    border: 1px solid var(--eis-theme-border);
    border-radius: var(--eis-radius);
    padding: 24px;
    background: var(--eis-theme-panel);
    box-shadow: inset 4px 0 0 var(--eis-color-orange);
}

.eis-home-band span {
    display: block;
    margin-bottom: 8px;
    color: var(--eis-theme-text-strong);
    font-size: 38px;
    font-weight: 950;
    line-height: 1;
}

.eis-home-band p {
    margin: 0;
    color: var(--eis-theme-muted);
    font-size: 14px;
    font-weight: 750;
}

.eis-site-footer {
    background: var(--eis-theme-panel-strong);
    color: var(--eis-theme-muted);
}

.eis-site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 34px;
    padding-block: 54px 36px;
}

.eis-footer-widget-column {
    min-width: 0;
}

.eis-footer-widget-column__extra {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    border-top: 1px solid var(--eis-theme-border);
    padding-top: 22px;
}

.eis-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    place-items: center;
    padding: 20px;
}

.eis-modal[hidden] {
    display: none !important;
}

.eis-modal.is-open {
    display: grid;
}

.eis-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 18, 0.76);
    backdrop-filter: blur(10px);
}

.eis-modal__panel {
    position: relative;
    width: min(100%, 460px);
    border: 1px solid var(--eis-theme-border);
    border-radius: var(--eis-radius);
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(242, 100, 25, 0.12), transparent 32%),
        var(--eis-theme-panel);
    color: var(--eis-theme-text-strong);
    box-shadow: var(--eis-shadow);
}

.eis-modal__panel--search {
    width: min(100%, 720px);
}

.eis-modal__panel h2 {
    margin: 0 0 18px;
    color: var(--eis-theme-text-strong);
    font-size: 1.85rem;
    line-height: 1.15;
}

.eis-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184, 192, 204, 0.18);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.eis-modal__close::before,
.eis-modal__close::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%) rotate(45deg);
}

.eis-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.eis-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.eis-search-form input,
#eis-login-form input[type="text"],
#eis-login-form input[type="password"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--eis-theme-border);
    border-radius: var(--eis-radius);
    padding: 12px 14px;
    background: var(--eis-theme-field);
    color: var(--eis-theme-text-strong);
    font: inherit;
    outline: none;
}

.eis-search-form input:focus,
#eis-login-form input[type="text"]:focus,
#eis-login-form input[type="password"]:focus {
    border-color: var(--eis-color-orange);
    box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.18);
}

#eis-login-form {
    display: grid;
    gap: 12px;
}

#eis-login-form p {
    margin: 0;
}

#eis-login-form label {
    display: grid;
    gap: 6px;
    color: var(--eis-theme-muted);
    font-size: 13px;
    font-weight: 800;
}

#eis-login-form .login-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#eis-login-form .button {
    width: 100%;
}

.eis-account-links {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 800;
}

.eis-account-links a {
    color: var(--eis-color-cool-steel);
    text-decoration: none;
}

.eis-account-links a:hover,
.eis-account-links a:focus-visible {
    color: var(--eis-color-orange-hover);
}

@keyframes eis-hero-zoom {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1.1);
    }
}

.eis-site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
}

.eis-site-footer p {
    max-width: 390px;
    margin: 0;
}

.eis-site-footer .eis-widget,
.eis-site-footer .widget {
    margin: 0;
}

.eis-site-footer .eis-widget + .eis-widget,
.eis-site-footer .widget + .widget {
    margin-top: 22px;
}

.eis-site-footer .widget-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
}

.eis-site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eis-site-footer .menu,
.eis-site-footer .wp-block-list {
    display: grid;
    gap: 8px;
}

.eis-site-footer .wp-block-button__link,
.eis-site-footer .button,
.eis-site-footer button {
    min-height: var(--eis-footer-button-height, 42px);
    border: 1px solid var(--eis-footer-button-border, var(--eis-color-orange));
    border-radius: var(--eis-footer-button-radius, 999px);
    padding: 11px var(--eis-footer-button-padding-x, 18px);
    background: var(--eis-footer-button-bg, var(--eis-color-orange));
    color: var(--eis-footer-button-text, #0d0f12);
    font-size: var(--eis-footer-button-font-size, 14px);
    font-weight: 850;
    text-decoration: none;
}

.eis-site-footer .wp-block-button__link:hover,
.eis-site-footer .wp-block-button__link:focus-visible,
.eis-site-footer .button:hover,
.eis-site-footer .button:focus-visible {
    border-color: var(--eis-footer-button-hover-bg, var(--eis-color-orange-hover));
    background: var(--eis-footer-button-hover-bg, var(--eis-color-orange-hover));
    color: var(--eis-footer-button-hover-text, #0d0f12);
}

.eis-footer-menu,
.eis-contact-list {
    display: grid;
    gap: 8px;
}

.eis-site-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.eis-site-footer a:hover,
.eis-site-footer a:focus-visible {
    color: var(--eis-color-orange);
}

.eis-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 16px;
    font-size: 13px;
}

.woocommerce div.product,
.woocommerce ul.products li.product,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout {
    border-radius: var(--eis-radius);
}

@media (max-width: 960px) {
    .eis-site-header__inner {
        min-height: 68px;
    }

    .eis-menu-toggle {
        display: inline-flex;
    }

    .eis-nav {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        margin: 0;
        padding-inline-start: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--eis-radius);
        padding: 10px;
        background: rgba(18, 19, 22, 0.98);
        box-shadow: var(--eis-shadow);
    }

    .eis-nav::before {
        display: none;
    }

    .eis-site-header.is-menu-open .eis-nav,
    .eis-primary-menu-bar.is-menu-open .eis-nav {
        display: block;
    }

    .eis-nav__list {
        display: grid;
        gap: 4px;
    }

    .eis-nav__list a {
        width: 100%;
        justify-content: flex-start;
        min-height: 44px;
    }

    .eis-site-header__actions .eis-button {
        display: none;
    }

    .eis-home-band__grid,
    .eis-capabilities__grid,
    .eis-quick-actions__bar,
    .eis-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eis-quick-actions {
        margin-top: -34px;
    }

    .eis-quick-actions__item {
        min-height: 116px;
    }
}

@media (max-width: 640px) {
    .eis-container {
        width: min(calc(100% - var(--eis-container-gutter-mobile)), var(--eis-container));
    }

    .eis-site-header__inner {
        gap: 12px;
    }

    .eis-brand__text {
        display: none;
    }

    .eis-brand__tagline {
        display: none;
    }

    .eis-language-switcher {
        gap: 6px;
        padding-inline: 0;
        font-size: 11px;
    }

    .eis-language-switcher a {
        min-height: 31px;
        font-size: 10.5px;
    }

    .eis-language-switcher li + li::before {
        margin-inline: 6px;
    }

    .eis-language-switcher__globe,
    .eis-language-switcher__globe svg {
        width: 16px;
        height: 16px;
    }

    .eis-hero--home {
        min-height: 620px;
    }

    .eis-hero h1 {
        font-size: 3rem;
    }

    .eis-hero--page h1 {
        font-size: 2.35rem;
    }

    .eis-hero__inner {
        padding-block: 54px;
    }

    .eis-hero__actions {
        display: grid;
    }

    .eis-hero__actions .eis-button {
        width: 100%;
    }

    .eis-page-content,
    .eis-content-layout {
        padding-block: 42px;
    }

    .eis-quick-actions__bar,
    .eis-capabilities__grid,
    .eis-home-band__grid,
    .eis-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .eis-quick-actions__item {
        min-height: 92px;
        grid-template-columns: 48px minmax(0, 1fr);
        justify-items: start;
        text-align: start;
    }

    .eis-quick-actions__icon {
        width: 48px;
        height: 48px;
    }

    .eis-search-form {
        grid-template-columns: 1fr;
    }
}

/* EIS 0.1.2 structural overrides */
html[dir="rtl"] body,
body.eis-lang-ar {
    direction: rtl;
}

.eis-hero--home::before {
    display: none;
}

.eis-hero__inner {
    position: relative;
    z-index: 2;
}

.eis-hero__slides,
.eis-hero__slide {
    position: absolute;
    inset: 0;
}

.eis-hero__slides {
    z-index: 0;
}

.eis-hero__slide {
    display: grid;
    align-items: center;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 760ms ease;
}

.eis-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.eis-hero__slide::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(36, 88, 216, 0.3), transparent 32%),
        linear-gradient(90deg, rgba(13, 15, 18, var(--eis-hero-overlay)), rgba(13, 15, 18, 0.36)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px),
        var(--eis-hero-image);
    background-position: center;
    background-size: cover;
    content: "";
    transform: scale(1.04);
    animation: eis-hero-zoom 14s ease-in-out infinite alternate;
}

.eis-hero__slide::after {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -38%;
    z-index: -1;
    width: 26%;
    background: linear-gradient(90deg, transparent, rgba(242, 100, 25, 0.26), transparent);
    content: "";
    opacity: 0;
    transform: skewX(-18deg);
}

.eis-hero__slide.is-active::after {
    animation: eis-hero-sweep 2.9s ease-out 400ms both;
}

.eis-hero__rail {
    position: absolute;
    right: max(20px, calc((100% - var(--eis-container)) / 2));
    bottom: 104px;
    z-index: 4;
    display: inline-flex;
    gap: 8px;
}

.eis-hero__rail button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.eis-hero__rail button.is-active {
    background: var(--eis-color-orange);
}

.eis-quick-actions {
    margin-top: -42px;
    margin-bottom: 34px;
}

.eis-quick-actions__item {
    min-height: 94px;
    padding: 14px 12px;
}

.eis-quick-actions__icon {
    width: 46px;
    height: 46px;
}

.eis-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.eis-footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eis-footer-socials a,
.eis-floating-contact a {
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 192, 204, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--eis-color-cool-steel);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.eis-footer-socials a {
    width: 34px;
    height: 34px;
}

.eis-footer-socials svg,
.eis-floating-contact svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eis-footer-socials a:hover,
.eis-footer-socials a:focus-visible,
.eis-floating-contact a:hover,
.eis-floating-contact a:focus-visible {
    border-color: var(--eis-color-orange);
    background: rgba(242, 100, 25, 0.16);
    color: #fff;
    transform: translateY(-1px);
}

.eis-floating-contact {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 998;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.eis-floating-contact a {
    width: 42px;
    height: 42px;
    background: rgba(13, 15, 18, 0.82);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

@keyframes eis-hero-sweep {
    0% {
        left: -38%;
        opacity: 0;
    }
    22% {
        opacity: 1;
    }
    100% {
        left: 118%;
        opacity: 0;
    }
}

@media (max-width: 960px) {
    .eis-quick-actions__item {
        min-height: 88px;
    }
}

@media (max-width: 640px) {
    .eis-quick-actions__item {
        min-height: 78px;
    }

    .eis-site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .eis-floating-contact {
        right: 12px;
        gap: 6px;
    }

    .eis-floating-contact a {
        width: 38px;
        height: 38px;
    }
}

/* Dionex 0.1.9 focused header layout and controls */
.eis-site-header {
    position: fixed;
    right: 0;
    left: 0;
    border-bottom: 0;
    background: var(--eis-header-bg, rgba(13, 15, 18, 0.92));
}

.eis-primary-menu-bar {
    position: fixed;
    top: 92px;
    right: 0;
    left: 0;
    z-index: 998;
    background: var(--eis-header-bg, rgba(13, 15, 18, 0.92));
    backdrop-filter: blur(16px);
}

.admin-bar.eis-header-fixed .eis-primary-menu-bar {
    top: 124px;
}

.eis-site-header__inner {
    position: relative;
    min-height: 92px;
    gap: 26px;
}

.eis-site-header__inner::after {
    position: absolute;
    inset-inline: calc(var(--eis-container-gutter) / -2);
    bottom: 0;
    width: auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    content: "";
    transform: none;
}

.eis-brand img,
.eis-brand__fallback-logo {
    max-height: 84px;
}

.eis-brand__tagline {
    display: none;
}

.eis-header-company {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 auto;
    margin-inline-start: 34px;
    padding-inline-start: 34px;
    color: #fff;
    font-size: clamp(1.05rem, 1.85vw, 1.42rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 22px rgba(242, 100, 25, 0.22), 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eis-header-company__widgets {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78em;
    font-weight: 800;
    text-transform: none;
    white-space: normal;
}

.eis-header-company::before {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, var(--eis-color-orange), transparent);
    box-shadow: 0 0 14px rgba(242, 100, 25, 0.84);
    content: "";
    transform: translateY(-50%);
}

.eis-header-company .eis-widget,
.eis-header-company .widget {
    margin: 0;
}

.eis-header-company .widget-title {
    display: none;
}

.eis-header-company p,
.eis-header-company h1,
.eis-header-company h2,
.eis-header-company h3 {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.eis-header-company a {
    color: inherit;
    text-decoration: none;
}

.eis-header-overlay .eis-site-header {
    position: relative;
    top: auto;
}

.eis-header-overlay .eis-primary-menu-bar {
    position: sticky;
    top: 0;
}

.admin-bar.eis-header-overlay .eis-primary-menu-bar {
    top: 32px;
}

.eis-header-overlay .eis-hero--home .eis-hero__inner {
    padding-top: clamp(82px, 10vh, 130px);
}

.eis-header-overlay .eis-hero--page .eis-hero__inner {
    padding-top: clamp(76px, 9vh, 118px);
}

.eis-theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    isolation: isolate;
    min-width: 58px;
    width: 58px;
    height: 24px;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 26px 0 7px;
    border-color: rgba(255, 255, 255, 0.08);
    background: #1f1f1f;
    color: #f4f5f7;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.28);
}

.eis-theme-toggle::before {
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 1;
    width: 18px;
    height: 18px;
    border-radius: inherit;
    background: #e8ebef;
    content: "";
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.92);
    transform: translateX(34px);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

html[dir="rtl"] .eis-theme-toggle::before {
    right: 3px;
    left: auto;
    transform: translateX(-34px);
}

.eis-theme-toggle__label {
    z-index: 2;
    color: currentColor;
    font-size: 10px;
    font-weight: 820;
    line-height: 1;
    transition: transform 180ms ease;
}

html[data-eis-theme="light"] .eis-theme-toggle::before {
    transform: translateX(0);
}

html[dir="rtl"][data-eis-theme="light"] .eis-theme-toggle::before {
    transform: translateX(0);
}

html[data-eis-theme="light"] .eis-theme-toggle {
    justify-content: flex-end;
    padding: 0 7px 0 26px;
    background: #202226;
}

.eis-theme-toggle:hover,
.eis-theme-toggle:focus-visible {
    border-color: var(--eis-color-orange);
    transform: translateY(-1px);
}

.eis-theme-toggle:hover::before,
.eis-theme-toggle:focus-visible::before {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(242, 100, 25, 0.14), inset 0 1px 1px rgba(255, 255, 255, 0.92);
}

html[data-eis-theme="light"] {
    color-scheme: light;
    --eis-theme-bg: #F4F5F7;
    --eis-theme-bg-soft: #E9EEF4;
    --eis-theme-text: #29313B;
    --eis-theme-text-strong: #0D0F12;
    --eis-theme-muted: #5F6B7A;
    --eis-theme-panel: #FFFFFF;
    --eis-theme-panel-strong: #F9FAFC;
    --eis-theme-border: rgba(42, 47, 54, 0.16);
    --eis-theme-field: #FFFFFF;
    --eis-color-muted: rgba(22, 25, 29, 0.68);
    --eis-shadow: 0 22px 62px rgba(22, 25, 29, 0.13);
}

html[data-eis-theme="light"] body,
html[data-eis-theme="light"] .eis-site-main,
html[data-eis-theme="light"] .eis-page-content,
html[data-eis-theme="light"] .eis-content-layout {
    background: var(--eis-theme-bg);
    color: var(--eis-theme-text);
}

html[data-eis-theme="light"] .eis-site-header,
html[data-eis-theme="light"] .eis-primary-menu-bar {
    background:
        linear-gradient(90deg, rgba(242, 100, 25, 0.08), transparent 28%),
        rgba(244, 245, 247, var(--eis-header-opacity, 0.94));
    color: var(--eis-theme-text-strong);
    box-shadow: 0 12px 34px rgba(22, 25, 29, 0.08);
}

html[data-eis-theme="light"] .eis-site-header__inner::after {
    background: rgba(42, 47, 54, 0.14);
}

html[data-eis-theme="light"] .eis-header-company {
    color: var(--eis-theme-text-strong);
    text-shadow: 0 0 18px rgba(242, 100, 25, 0.18), 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-eis-theme="light"] .eis-nav__list a,
html[data-eis-theme="light"] .eis-icon-button,
html[data-eis-theme="light"] .eis-icon-button--login {
    color: var(--eis-header-button-text, var(--eis-theme-text-strong));
}

html[data-eis-theme="light"] .eis-nav__list a {
    color: rgba(22, 25, 29, 0.78);
}

html[data-eis-theme="light"] .eis-nav__list a:hover,
html[data-eis-theme="light"] .eis-nav__list a:focus-visible,
html[data-eis-theme="light"] .eis-nav__list .current-menu-item > a,
html[data-eis-theme="light"] .eis-nav__list .current_page_item > a {
    background: rgba(242, 100, 25, 0.16);
    color: var(--eis-theme-text-strong);
}

html[data-eis-theme="light"] .eis-icon-button,
html[data-eis-theme="light"] .eis-language-switcher a {
    border-color: var(--eis-header-button-border, rgba(42, 47, 54, 0.16));
    background: var(--eis-header-button-bg, rgba(255, 255, 255, 0.76));
}

html[data-eis-theme="light"] .eis-quick-actions__bar,
html[data-eis-theme="light"] .eis-capability-card,
html[data-eis-theme="light"] .eis-home-band article,
html[data-eis-theme="light"] .eis-modal__panel {
    background:
        linear-gradient(145deg, rgba(242, 100, 25, 0.08), transparent 42%),
        var(--eis-theme-panel);
}

html[data-eis-theme="light"] .eis-home-band,
html[data-eis-theme="light"] .eis-capabilities {
    background: var(--eis-theme-bg-soft);
}

html[data-eis-theme="light"] .eis-site-footer {
    background: var(--eis-theme-panel-strong);
    color: var(--eis-theme-muted);
}

html[data-eis-theme="light"] .eis-site-footer h2,
html[data-eis-theme="light"] .eis-site-footer .widget-title,
html[data-eis-theme="light"] .eis-home-band span,
html[data-eis-theme="light"] .eis-capabilities__head h2,
html[data-eis-theme="light"] .eis-capability-card h3 {
    color: var(--eis-theme-text-strong);
}

html[data-eis-theme="light"] .eis-site-footer a {
    color: #415063;
}

html[data-eis-theme="light"] .eis-search-form input,
html[data-eis-theme="light"] #eis-login-form input[type="text"],
html[data-eis-theme="light"] #eis-login-form input[type="password"] {
    background: var(--eis-theme-field);
    color: var(--eis-theme-text-strong);
}

.eis-back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 997;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(242, 100, 25, 0.44);
    border-radius: 999px;
    padding: 0;
    background: rgba(13, 15, 18, 0.86);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
    backdrop-filter: blur(12px);
}

.eis-back-to-top span {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.eis-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.eis-back-to-top:hover,
.eis-back-to-top:focus-visible {
    background: var(--eis-color-orange);
    color: #0d0f12;
}

html[dir="rtl"] .eis-back-to-top {
    right: 24px;
    left: auto;
}

.eis-site-header__nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    gap: 24px;
}

.eis-site-header__nav-row .eis-nav {
    margin-inline-start: 0;
    padding-inline-start: 0;
}

.eis-site-header__nav-row .eis-nav::before {
    display: none;
}

.eis-site-header__nav-row .eis-nav__list a {
    border-radius: 0;
    min-height: 50px;
    padding-inline: 17px;
}

.eis-site-header__utility {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: auto;
}

.eis-site-header .eis-button,
.eis-primary-menu-bar .eis-button {
    min-height: var(--eis-header-button-height, 42px);
    border-color: var(--eis-header-cta-border, var(--eis-color-orange));
    border-radius: var(--eis-header-button-radius, 999px);
    padding-inline: var(--eis-header-button-padding-x, 14px);
    background: var(--eis-header-cta-bg, var(--eis-color-orange));
    color: var(--eis-header-cta-text, #151515);
    font-size: var(--eis-header-button-font-size, 13px);
}

.eis-site-header .eis-button:hover,
.eis-site-header .eis-button:focus-visible,
.eis-primary-menu-bar .eis-button:hover,
.eis-primary-menu-bar .eis-button:focus-visible {
    border-color: var(--eis-header-cta-hover-bg, var(--eis-color-orange-hover));
    background: var(--eis-header-cta-hover-bg, var(--eis-color-orange-hover));
    color: var(--eis-header-cta-hover-text, #111);
}

.eis-site-header__utility--widgets,
.eis-site-header__utility-widgets {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.eis-site-header__utility-widgets {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eis-site-header__utility--widgets .eis-widget,
.eis-site-header__utility--widgets .widget,
.eis-site-header__utility-widgets .eis-widget,
.eis-site-header__utility-widgets .widget {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.eis-site-header__utility--widgets .widget-title,
.eis-site-header__utility-widgets .widget-title {
    display: none;
}

.eis-site-header__utility--widgets ul,
.eis-site-header__utility-widgets ul {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eis-site-header__utility--widgets a,
.eis-site-header__utility--widgets button,
.eis-site-header__utility--widgets .wp-block-button__link,
.eis-site-header__utility-widgets a,
.eis-site-header__utility-widgets button,
.eis-site-header__utility-widgets .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--eis-header-button-height, 42px);
    border: 1px solid var(--eis-header-button-border, rgba(184, 192, 204, 0.18));
    border-radius: var(--eis-header-button-radius, 999px);
    padding: 9px var(--eis-header-button-padding-x, 14px);
    background: var(--eis-header-button-bg, rgba(255, 255, 255, 0.06));
    color: var(--eis-header-button-text, var(--eis-color-white));
    font-size: var(--eis-header-button-font-size, 13px);
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.eis-site-header__utility--widgets a:hover,
.eis-site-header__utility--widgets a:focus-visible,
.eis-site-header__utility--widgets button:hover,
.eis-site-header__utility--widgets button:focus-visible,
.eis-site-header__utility--widgets .wp-block-button__link:hover,
.eis-site-header__utility--widgets .wp-block-button__link:focus-visible,
.eis-site-header__utility-widgets a:hover,
.eis-site-header__utility-widgets a:focus-visible,
.eis-site-header__utility-widgets button:hover,
.eis-site-header__utility-widgets button:focus-visible,
.eis-site-header__utility-widgets .wp-block-button__link:hover,
.eis-site-header__utility-widgets .wp-block-button__link:focus-visible {
    border-color: var(--eis-header-button-hover-bg, var(--eis-color-orange));
    background: var(--eis-header-button-hover-bg, rgba(242, 100, 25, 0.16));
    color: var(--eis-header-button-hover-text, #fff);
}

.eis-icon-button--login {
    display: inline-flex;
    width: auto;
    min-width: 72px;
    gap: 7px;
    min-height: var(--eis-header-button-height, 42px);
    padding-inline: var(--eis-header-button-padding-x, 12px);
    color: var(--eis-header-button-text, var(--eis-color-white));
    font-size: var(--eis-header-button-font-size, 13px);
    font-weight: 800;
}

.eis-icon-button--login svg {
    flex: 0 0 auto;
}

.eis-hero--home .eis-hero__inner {
    padding-top: clamp(190px, 19vh, 240px);
}

.eis-hero--page .eis-hero__inner {
    padding-top: clamp(160px, 16vh, 210px);
}

@media (max-width: 960px) {
    .eis-site-header__inner {
        min-height: 74px;
    }

    .eis-header-fixed .eis-primary-menu-bar {
        top: 74px;
    }

    .admin-bar.eis-header-fixed .eis-primary-menu-bar {
        top: 106px;
    }

    .eis-brand img,
    .eis-brand__fallback-logo {
        max-height: 54px;
    }

    .eis-header-company {
        display: none;
    }

    .eis-site-header__nav-row {
        position: relative;
        min-height: 0;
    }

    .eis-site-header__utility {
        display: none;
    }

    .eis-site-header__nav-row .eis-nav {
        top: 8px;
        right: 0;
        left: 0;
        margin: 0;
        padding: 12px;
    }

    .eis-site-header__nav-row .eis-nav::before,
    .eis-nav .eis-menu-toggle,
    .eis-nav button[aria-controls] {
        display: none !important;
    }

    .eis-site-header.is-menu-open .eis-nav,
    .eis-site-header.is-menu-open .eis-nav ul,
    .eis-primary-menu-bar.is-menu-open .eis-nav,
    .eis-primary-menu-bar.is-menu-open .eis-nav ul {
        display: grid !important;
    }

    .eis-hero--home .eis-hero__inner,
    .eis-hero--page .eis-hero__inner {
        padding-top: 120px;
    }
}

@media (max-width: 640px) {
    .eis-site-header__inner {
        min-height: 66px;
    }

    .eis-site-header__inner::after {
        inset-inline: calc(var(--eis-container-gutter-mobile) / -2);
    }

    .eis-header-fixed .eis-primary-menu-bar {
        top: 66px;
    }

    .admin-bar.eis-header-fixed .eis-primary-menu-bar {
        top: 112px;
    }

    .eis-brand img,
    .eis-brand__fallback-logo {
        max-height: 44px;
    }

    .eis-icon-button--login {
        width: 38px;
        min-width: 38px;
        padding-inline: 0;
    }

    .eis-icon-button--login span {
        display: none;
    }

    .eis-hero--home .eis-hero__inner,
    .eis-hero--page .eis-hero__inner {
        padding-top: 106px;
    }

    .eis-hero__rail {
        right: 24px;
        bottom: 34px;
    }

    .eis-quick-actions {
        padding-inline: 18px;
    }

    .eis-quick-actions__bar {
        max-width: 390px;
        margin-inline: auto;
    }

    .eis-quick-actions__item {
        min-height: 74px;
        padding: 10px 14px;
    }

    .eis-back-to-top {
        bottom: 18px;
        left: 16px;
        width: 42px;
        height: 42px;
    }

    html[dir="rtl"] .eis-back-to-top {
        right: 16px;
        left: auto;
    }
}

/* Dionex industrial footer and compact header controls */
.eis-site-footer--industrial {
    position: relative;
    overflow: hidden;
    background: var(--eis-footer-bg-color, #0d0f12);
    color: rgba(244, 245, 247, 0.78);
}

.eis-site-footer--industrial.eis-footer-bg-image {
    background-image:
        linear-gradient(90deg, rgba(8, 12, 17, 0.66), rgba(13, 17, 22, 0.36) 42%, rgba(8, 11, 15, 0.58)),
        var(--eis-footer-bg-image);
    background-position: var(--eis-footer-bg-position, center center);
    background-size: var(--eis-footer-bg-size, cover);
    background-repeat: var(--eis-footer-bg-repeat, no-repeat);
}

.eis-site-footer__video,
.eis-site-footer__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.eis-site-footer__video {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.eis-site-footer__shade {
    z-index: 1;
    background: var(--eis-footer-overlay-color, #0d0f12);
    opacity: var(--eis-footer-overlay-opacity, 0.72);
}

.eis-site-footer--industrial .eis-container {
    position: relative;
    z-index: 2;
}

.eis-site-footer__main {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    justify-items: stretch;
    column-gap: clamp(28px, 3vw, 48px);
    row-gap: 34px;
    padding-block: clamp(66px, 7vw, 110px) 46px;
}

.eis-footer-widget-column {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.eis-footer-widget-column--1 {
    text-align: start;
}

.eis-footer-widget-column:not(.eis-footer-widget-column--5)::after {
    position: absolute;
    inset-block: 2px;
    inset-inline-end: calc(clamp(28px, 3vw, 48px) / -2);
    width: 1px;
    border-radius: 999px;
    background: linear-gradient(to bottom, transparent, rgba(242, 100, 25, 0.26) 12%, rgba(255, 122, 26, 0.72) 50%, rgba(242, 100, 25, 0.26) 88%, transparent);
    box-shadow: 0 0 14px rgba(242, 100, 25, 0.34);
    content: "";
    pointer-events: none;
}

.eis-footer-widget-column--5 {
    align-items: flex-end;
    text-align: end;
}

.eis-site-footer--industrial .eis-footer-widget-column > *,
.eis-site-footer--industrial .eis-footer-widget-column .widget,
.eis-site-footer--industrial .eis-footer-widget-column .eis-widget,
.eis-site-footer--industrial .eis-footer-widget-column .wp-block-group,
.eis-site-footer--industrial .eis-footer-widget-column .wp-block-image,
.eis-site-footer--industrial .eis-footer-widget-column figure {
    width: 100%;
    margin-block: 0;
}

.eis-site-footer--industrial .eis-footer-widget-column > * + * {
    margin-top: 0;
}

.eis-site-footer--industrial .eis-footer-widget-column .widget + .widget,
.eis-site-footer--industrial .eis-footer-widget-column .eis-widget + .eis-widget {
    margin-top: 4px;
}

.eis-site-footer--industrial h2,
.eis-site-footer--industrial .widget-title,
.eis-site-footer--industrial .wp-block-heading {
    margin: 0;
    color: #fff;
    font-size: clamp(17px, 1.15vw, 24px);
    font-weight: 920;
    line-height: 1.24;
    text-transform: uppercase;
}

.eis-footer-accent-line {
    display: block;
    width: 42px;
    height: 2px;
    margin-block: 22px 28px;
    border-radius: 999px;
    background: var(--eis-color-orange);
    box-shadow: 0 0 16px rgba(242, 100, 25, 0.52);
}

.eis-site-footer--industrial p {
    max-width: 320px;
    margin: 0;
    color: rgba(244, 245, 247, 0.74);
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.55;
}

.eis-site-footer--industrial p + p {
    margin-top: 8px;
}

.eis-site-footer--industrial img {
    display: block;
    max-width: 100%;
    height: auto;
}

.eis-site-footer--industrial .eis-footer-widget-column .wp-block-image,
.eis-site-footer--industrial .eis-footer-widget-column .widget_media_image,
.eis-site-footer--industrial .eis-footer-widget-column figure.wp-block-image,
.eis-site-footer--industrial .eis-footer-widget-column figure.image {
    display: flex;
    float: none !important;
    clear: both;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eis-site-footer--industrial .eis-footer-widget-column .alignleft,
.eis-site-footer--industrial .eis-footer-widget-column .alignright,
.eis-site-footer--industrial .eis-footer-widget-column .aligncenter {
    float: none !important;
    margin-inline: auto !important;
}

.eis-site-footer--industrial .eis-footer-widget-column .wp-block-image img,
.eis-site-footer--industrial .eis-footer-widget-column .widget_media_image img,
.eis-site-footer--industrial .eis-footer-widget-column .image img,
.eis-site-footer--industrial .eis-footer-widget-column figure img,
.eis-site-footer--industrial .eis-footer-widget-column img {
    float: none !important;
    margin-inline: auto !important;
}

.eis-site-footer--industrial .custom-logo,
.eis-site-footer--industrial .wp-block-site-logo img {
    display: block;
    max-width: 150px;
    max-height: 96px;
    margin-inline: auto;
    object-fit: contain;
}

.eis-site-footer--industrial ul,
.eis-site-footer--industrial ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eis-site-footer--industrial .eis-footer-widget-column table {
    width: 100%;
    border-collapse: collapse;
}

.eis-site-footer--industrial .eis-footer-widget-column caption {
    text-align: inherit;
}

.eis-site-footer--industrial .eis-footer-widget-column th,
.eis-site-footer--industrial .eis-footer-widget-column td {
    text-align: center;
}

.eis-site-footer--industrial .eis-footer-menu,
.eis-site-footer--industrial .menu,
.eis-site-footer--industrial .wp-block-navigation__container,
.eis-site-footer--industrial .wp-block-list {
    display: grid;
    gap: 15px;
}

.eis-site-footer--industrial .eis-footer-menu a,
.eis-site-footer--industrial .menu a,
.eis-site-footer--industrial .wp-block-navigation a,
.eis-site-footer--industrial .wp-block-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(244, 245, 247, 0.86);
    font-size: clamp(14px, 0.95vw, 18px);
    line-height: 1.25;
}

.eis-site-footer--industrial .eis-footer-menu a::before,
.eis-site-footer--industrial .menu a::before,
.eis-site-footer--industrial .wp-block-navigation a::before,
.eis-site-footer--industrial .wp-block-list a::before {
    color: var(--eis-color-orange);
    font-size: 1.2em;
    font-weight: 900;
    content: ">";
}

.eis-site-footer--industrial .eis-footer-menu a:hover,
.eis-site-footer--industrial .eis-footer-menu a:focus-visible,
.eis-site-footer--industrial .menu a:hover,
.eis-site-footer--industrial .menu a:focus-visible,
.eis-site-footer--industrial .wp-block-navigation a:hover,
.eis-site-footer--industrial .wp-block-navigation a:focus-visible {
    color: #fff;
}

.eis-site-footer--industrial .wp-block-social-links,
.eis-site-footer--industrial .eis-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.eis-site-footer--industrial .wp-block-social-links .wp-social-link,
.eis-site-footer--industrial .eis-footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(242, 100, 25, 0.58);
    border-radius: 7px;
    background: rgba(5, 8, 12, 0.46);
    color: var(--eis-color-orange);
    backdrop-filter: blur(12px);
}

.eis-site-footer--industrial .wp-block-social-links .wp-social-link a {
    color: inherit;
}

.eis-site-footer--industrial .wp-block-social-links svg,
.eis-site-footer--industrial .eis-footer-socials svg {
    width: 20px;
    height: 20px;
}

.eis-site-footer--industrial .wp-block-social-links .wp-social-link:hover,
.eis-site-footer--industrial .wp-block-social-links .wp-social-link:focus-within,
.eis-site-footer--industrial .eis-footer-socials a:hover,
.eis-site-footer--industrial .eis-footer-socials a:focus-visible {
    border-color: var(--eis-color-orange-hover);
    background: rgba(242, 100, 25, 0.16);
    color: #fff;
}

.eis-site-footer--industrial .eis-site-footer__bottom {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(260px, auto);
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(242, 100, 25, 0.54);
    padding-block: 28px 34px;
    box-shadow: inset 0 1px 0 rgba(255, 122, 26, 0.22), 0 -12px 28px rgba(242, 100, 25, 0.1);
}

.eis-site-footer--industrial .eis-site-footer__bottom p {
    max-width: none;
    justify-self: center;
    color: rgba(244, 245, 247, 0.72);
    font-size: 12.5px;
    line-height: 1.5;
    text-align: center;
}

.eis-site-footer--industrial .eis-language-switcher {
    color: rgba(244, 245, 247, 0.86);
    font-size: 12px;
}

.eis-site-footer--industrial .eis-language-switcher a {
    font-size: 12px;
}

html[data-eis-theme="light"] .eis-language-switcher a {
    border: 0;
    background: transparent;
}

html[data-eis-theme="light"] .eis-site-footer--industrial {
    background: var(--eis-footer-bg-color, #141b22);
    color: rgba(244, 245, 247, 0.78);
}

html[data-eis-theme="light"] .eis-site-footer--industrial.eis-footer-bg-image {
    background-image:
        linear-gradient(90deg, rgba(17, 22, 28, 0.62), rgba(26, 34, 42, 0.32) 38%, rgba(10, 14, 18, 0.56)),
        var(--eis-footer-bg-image);
    background-position: var(--eis-footer-bg-position, center center);
    background-size: var(--eis-footer-bg-size, cover);
    background-repeat: var(--eis-footer-bg-repeat, no-repeat);
}

html[data-eis-theme="light"] .eis-site-footer--industrial h2,
html[data-eis-theme="light"] .eis-site-footer--industrial .widget-title {
    color: #fff;
}

html[data-eis-theme="light"] .eis-site-footer--industrial a {
    color: rgba(244, 245, 247, 0.86);
}

@media (max-width: 1180px) {
    .eis-site-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eis-footer-widget-column:not(.eis-footer-widget-column--5)::after {
        display: none;
    }

    .eis-site-footer--industrial .eis-site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

}

@media (max-width: 640px) {
    .eis-site-footer__main {
        grid-template-columns: 1fr;
        padding-block: 54px 34px;
    }

    .eis-footer-widget-column:not(.eis-footer-widget-column--5)::after {
        display: block;
        inset-block: auto;
        inset-inline: 0;
        inset-block-end: -14px;
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 122, 26, 0.62), transparent);
        box-shadow: 0 0 14px rgba(242, 100, 25, 0.24);
    }

    .eis-site-footer--industrial .eis-footer-menu,
    .eis-site-footer--industrial .menu {
        gap: 16px;
    }

    .eis-site-footer--industrial .eis-site-footer__bottom {
        padding-block: 24px 30px;
    }

}
