:root {
    --si-font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --si-color-background: #f4f7fb;
    --si-color-surface: #ffffff;
    --si-color-navy: #121825;
    --si-color-navy-900: #0c1621;
    --si-color-blue-700: #0d5c9f;
    --si-color-blue-600: #015a9c;
    --si-color-cyan: #24b5ea;
    --si-color-gold: #e0be00;
    --si-color-muted: #667089;
    --si-color-soft: #f6f8fc;
    --si-radius-sm: 14px;
    --si-radius-md: 22px;
    --si-radius-lg: 32px;
    --si-shadow-sm: 0 14px 32px rgba(12, 24, 37, 0.12);
    --si-shadow-md: 0 22px 48px rgba(12, 24, 37, 0.16);
    --si-shadow-lg: 0 40px 70px rgba(12, 24, 37, 0.18);
    --si-spacing-section: clamp(3rem, 6vw + 1rem, 6.25rem);
}

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

body {
    margin: 0;
    font-family: var(--si-font-base);
    color: var(--si-color-navy);
    background: var(--si-color-background);
    line-height: 1.6;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: var(--si-color-blue-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--si-color-blue-700);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    color: var(--si-color-navy);
    line-height: 1.08;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.25rem;
    color: var(--si-color-muted);
}

.site-main {
    overflow: hidden;
    padding-bottom: 0;
}

/* Header */
.site-header {
    position: relative;
    z-index: 20;
    background: var(--si-color-navy);
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.22);
}

.navbar {
    padding-inline: 0;
}

.header-inner {
    width: 100%;
    padding-inline: clamp(1.5rem, 5vw, 3.5rem);
}

.navbar-brand img {
    width: auto;
}


.navbar-nav {
    gap: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    margin: 0;
    border: none;
    vertical-align: baseline;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: linear-gradient(90deg, #24b5ea 0%, #e0be00 100%);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link[aria-current="page"] {
    color: #ffffff;
}

.site-header .navbar-nav .dropdown-toggle {
    padding-right: 1.15rem;
}

.site-header .navbar-nav .dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.72;
    transform: translateY(-65%) rotate(45deg);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .navbar-nav .dropdown-toggle[aria-expanded="true"],
.site-header .navbar-nav .dropdown.show > .dropdown-toggle {
    color: #ffffff;
}

.site-header .navbar-nav .dropdown-toggle[aria-expanded="true"]::before,
.site-header .navbar-nav .dropdown.show > .dropdown-toggle::before {
    opacity: 1;
    transform: translateY(-35%) rotate(225deg);
}

.site-header .navbar-nav .dropdown-toggle[aria-expanded="true"]::after,
.site-header .navbar-nav .dropdown.show > .dropdown-toggle::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header .navbar-nav .dropdown-menu {
    min-width: 17rem;
    max-width: min(22rem, calc(100vw - 2rem));
    margin-top: 0.85rem;
    padding: 0.7rem;
    border: 1px solid rgba(36, 181, 234, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(90deg, var(--si-color-cyan), var(--si-color-gold)) top left / 100% 3px no-repeat,
        linear-gradient(180deg, #121d2d 0%, var(--si-color-navy-900) 100%);
    box-shadow: 0 22px 44px rgba(4, 11, 20, 0.28);
}

.site-header .navbar-nav .dropdown-submenu {
    position: relative;
}

.site-header .navbar-nav .dropdown-submenu-toggle {
    position: relative;
    padding-right: 2rem;
}

.site-header .navbar-nav .dropdown-submenu-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 0.42rem;
    height: 0.42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.68;
    transform: translateY(-50%) rotate(45deg);
}

.site-header .navbar-nav .dropdown-submenu-menu {
    min-width: 18rem;
}

.site-header .navbar-nav .dropdown-item {
    display: block;
    padding: 0.62rem 0.72rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
    white-space: normal;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header .navbar-nav .dropdown-item:hover,
.site-header .navbar-nav .dropdown-item:focus {
    color: #ffffff;
    background: rgba(36, 181, 234, 0.14);
    transform: translateX(2px);
}

.site-header .navbar-nav .dropdown-item:active,
.site-header .navbar-nav .current-menu-item > .dropdown-item {
    color: var(--si-color-navy);
    background: var(--si-color-gold);
}

@media (min-width: 992px) {
    .site-header .navbar-nav > .dropdown > .dropdown-menu::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 1rem;
    }

    .site-header .navbar-nav .dropdown-submenu-menu {
        position: absolute;
        top: -0.7rem;
        left: 100%;
        display: none;
        margin-top: 0;
        margin-left: 0.35rem;
    }

    .site-header .navbar-nav .dropdown-submenu-menu::before {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        bottom: 0;
        width: 0.65rem;
    }

    .site-header .navbar-nav .dropdown-submenu:hover > .dropdown-submenu-menu,
    .site-header .navbar-nav .dropdown-submenu:focus-within > .dropdown-submenu-menu {
        display: block;
    }

    .site-header .navbar-nav .dropdown-submenu:hover > .dropdown-submenu-toggle,
    .site-header .navbar-nav .dropdown-submenu:focus-within > .dropdown-submenu-toggle {
        color: #ffffff;
        background: rgba(36, 181, 234, 0.14);
    }
}

@media (min-width: 1600px) {
    .site-header .navbar-collapse {
        justify-content: flex-start !important;
    }

    .site-header .navbar-nav {
        flex: 1 1 auto;
        max-width: 980px;
        justify-content: space-between;
        gap: clamp(1.75rem, 2.2vw, 3.25rem) !important;
    }

    .site-header .nav-actions {
        flex: 0 0 auto;
        margin-left: clamp(1.75rem, 2.2vw, 3rem) !important;
    }
}


.nav-actions {
    display: flex;
}

.btn {
    border-radius: 999px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.6rem 2.4rem;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 181, 234, 0.25);
}

.btn-si-accent {
    background: var(--si-color-gold);
    color: var(--si-color-navy);
    box-shadow: none;
}

.btn-si-accent:hover,
.btn-si-accent:focus {
    background: #f0cc06;
    color: var(--si-color-navy);
    transform: translateY(-2px);
}

.btn-si-light {
    background: #ffffff;
    color: var(--si-color-navy);
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.12);
}

.btn-si-light:hover,
.btn-si-light:focus {
    background: #ffffff;
    color: var(--si-color-blue-700);
    transform: translateY(-2px);
}

.btn-si-dark {
    background: var(--si-color-navy);
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(12, 24, 37, 0.18);
}

.btn-si-dark:hover,
.btn-si-dark:focus {
    transform: translateY(-2px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    font-size: 1.2rem;
    padding: 0;
}

.btn-icon:hover,
.btn-icon:focus {
    background: rgba(255, 255, 255, 0.28);
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(420px, 70vh, 690px);
    display: flex;
    align-items: flex-end;
    background: var(--hero-image) center/cover no-repeat;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 37, 0.65);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
    background: transparent;
    border-radius: var(--si-radius-md);
    box-shadow: var(--si-shadow-md);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.hero__content .hero__tagline {
    color: var(--si-color-navy);
}

.hero__content .section__lead {
    color: var(--si-color-muted);
}
.hero__tagline {
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw + 1rem, 3.2rem);
    line-height: 1.1;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.hero__cta {
    font-size: 0.85rem;
    min-width: 200px;
}

/* Generic section styles */
.section {
    padding-block: 0;
}

.section__header {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.section__title {
    display: block;
    font-size: clamp(2.4rem, 4vw + 1rem, 3.2rem);
    margin-bottom: 1.25rem;
}

.section__title--compact {
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    margin-bottom: 0.75rem;
}

.section__lead {
    font-size: 1.1rem;
    color: var(--si-color-muted);
}

.employment-application h4 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
}

.employment-application__explain {
    margin-bottom: 2rem;
}

.employment-application__education {
    margin-top: 0;
}

.section__subtitle {
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--si-color-navy);
    max-width: 900px;
    width: 100%;
}

.section__actions {
    margin-top: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.section--news > .container {
    background: transparent;
    border-radius: 0;
    padding-top: 0;
    padding-right: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-left: clamp(2.5rem, 5vw, 4rem);
    box-shadow: none;
}

.section--intro {
    margin-top: var(--si-spacing-section);
}

.section--intro > .container {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.section--story > .container {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    max-width: none;
    width: 100%;
    padding: 0;
}

/* Product gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}


.product-gallery__item {
    text-align: center;
}

.product-gallery__link {
    display: block;
    overflow: hidden;
    border-radius: var(--si-radius-md);
    box-shadow: 0 16px 32px rgba(12, 24, 37, 0.16);
    background: #ffffff;
}

.product-gallery__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-gallery__link:hover img,
.product-gallery__link:focus img {
    transform: scale(1.05);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: clamp(1rem, 3vw, 1.75rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.product-thumbs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: var(--si-radius-sm);
    padding: 1.25rem;
    box-shadow: 0 16px 36px rgba(12, 24, 37, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.product-thumbs__item:hover,
.product-thumbs__item:focus {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(12, 24, 37, 0.16);
}

.product-thumbs__item img {
    width: 100%;
    height: 72px;
    object-fit: contain;
}

.product-thumbs__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--si-color-navy);
}

.trusted {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.trusted__headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--si-color-navy);
    max-width: 900px;
    width: 100%;
}

.trusted__headline::before,
.trusted__headline::after {
    content: none;
}

.trusted__label {
    font-size: 0.9rem;
}

.trusted__line {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #24b5ea 0%, #0d5c9f 33%, #8f509d 66%, #e0be00 100%);
    opacity: 0.85;
}

.trusted__logos {
    width: 100%;
}

.trusted__logos-item {
    background: #ffffff;
    border-radius: var(--si-radius-sm);
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: 0 16px 36px rgba(12, 24, 37, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trusted__logos-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trusted__logos-text {
    color: var(--si-color-navy);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
}

/* Brand divider */
.brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 5rem;
}

.brand-divider__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 900px;
    width: 100%;
}

.brand-divider__line {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #24b5ea 0%, #0d5c9f 33%, #8f509d 66%, #e0be00 100%);
    opacity: 0.85;
}

.brand-divider img {
    max-width: 100%;
    height: auto;
}

/* Careers */
.section--careers {
    padding-top: 0;
    margin-bottom: var(--si-spacing-section);
}

.section--careers__intro {
    max-width: 760px;
    padding: 0;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.careers-panel {
    position: relative;
    background: var(--careers-bg);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    box-shadow: var(--si-shadow-lg);
    overflow: hidden;
}

.careers-panel__inner {
    padding: clamp(3rem, 6vw, 4.5rem);
    display: flex;
    justify-content: center;
}

.careers-panel__content {
    max-width: 720px;
    color: #ffffff;
    text-align: left;
    margin: 0 auto;
}

.careers-panel__heading {
    color: #ffffff;
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem);
    margin-bottom: 1.75rem;
    text-align: center;
}

.careers-panel__copy p {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.careers-panel__copy p:last-child {
    text-align: center;
}

.careers-panel__copy a {
    color: #ffffff;
    text-decoration: underline;
}

.careers-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: clamp(2rem, 5vw, 3rem);
    justify-content: center;
}

/* News */
.section--news {
    margin-top: var(--si-spacing-section);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.news-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--si-radius-md);
    box-shadow: var(--si-shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card__media {
    overflow: hidden;
    position: relative;
}

.news-card__media img,
.news-card__media .wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 1.75rem;
}

.news-card__date {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    color: var(--si-color-blue-600);
    margin-bottom: 0.75rem;
}

.news-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    text-transform: none;
    font-weight: 800;
    color: var(--si-color-navy);
}

.news-card__title a {
    color: inherit;
}

.news-card__excerpt {
    font-size: 0.92rem;
    color: var(--si-color-muted);
    margin-bottom: 1.25rem;
}

.news-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.65rem;
    border-radius: 999px;
    background: var(--si-color-navy);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.news-card--placeholder .news-card__more {
    background: var(--si-color-blue-600);
}

/* Story */
.section--story {
    margin-top: 0;
}

.story-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    min-height: clamp(560px, 44vw, 680px);
}

.story-card {
    background: #1a2438;
    border-radius: 0;
    box-shadow: var(--si-shadow-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.75rem, 3vw, 2.5rem);
}

.story-card__brand img {
    width: clamp(240px, 28vw, 380px);
    max-width: 100%;
}

.story-card__title {
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: none;
}

.story-card__body p {
    color: rgba(255, 255, 255, 0.88);
}

.story-card__body .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

.story-media img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    box-shadow: var(--si-shadow-sm);
}

/* Search */
.site-search {
    background: rgba(255, 255, 255, 0.06);
}

.site-search .container {
    max-width: 800px;
}

/* Footer */
.site-footer {
    background: var(--si-color-navy);
    color: rgba(255, 255, 255, 0.82);
    padding-block: clamp(3rem, 6vw, 4.5rem);
    margin-top: 0;
}

.site-footer__logo img {
    width: clamp(170px, 22vw, 220px);
}

.site-footer__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 1.25rem;
}

.site-footer__quality img {
    width: clamp(160px, 20vw, 210px);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.site-footer__contact h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.site-footer__contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.site-footer__contact li + li {
    margin-top: 0.45rem;
}

.site-footer__contact a {
    color: #ffffff;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .site-header .navbar-collapse {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        gap: 0.75rem;
    }

    .site-header .navbar-nav {
        align-items: stretch !important;
        width: 100%;
    }

    .site-header .navbar-nav .nav-item {
        width: 100%;
    }

    .site-header .navbar-nav .nav-link {
        display: inline-flex;
        align-items: center;
        width: auto;
        max-width: 100%;
    }

    .site-header .navbar-nav .dropdown-toggle {
        padding-right: 1.35rem;
    }

    .site-header .navbar-nav .dropdown-menu {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0.4rem 0 0.6rem;
        padding: 0.55rem;
        box-shadow: none;
    }

    .site-header .navbar-nav .dropdown-submenu-menu {
        position: static;
        display: block;
        width: auto;
        min-width: 0;
        max-width: 100%;
        margin: 0.25rem 0 0.55rem 0.65rem;
        padding: 0.25rem 0 0.25rem 0.65rem;
        border: 0;
        border-left: 1px solid rgba(36, 181, 234, 0.28);
        border-radius: 0;
        background: transparent;
    }

    .site-header .navbar-nav .dropdown-submenu-toggle::after {
        display: none;
    }

    .site-header .navbar-nav .dropdown-submenu-menu .dropdown-item {
        padding-block: 0.48rem;
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.82rem;
        font-weight: 700;
    }

    .nav-actions {
        width: 100%;
        align-items: flex-start;
    }

    .navbar-nav .nav-link::after {
        bottom: -0.2rem;
    }

    .hero {
        min-height: 420px;
    }

    .brand-divider {
        margin-block: 3rem;
    }

    .story-row {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .story-card {
        order: 2;
    }

    .story-card__brand img {
        width: clamp(220px, 42vw, 320px);
    }

    .story-media {
        order: 1;
    }
}

@media (max-width: 767px) {
    .navbar .container {
        padding-inline: 1rem;
    }

    .hero__content {
        padding-block: 3rem;
        padding-inline: 1.25rem;
    }

    .trusted__headline::before,
    .trusted__headline::after {
        width: 48px;
    }

    .product-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section--intro > .container,
    .section--news > .container,
    .section--story > .container {
        padding: clamp(2rem, 8vw, 2.5rem);
    }

    .section--careers__intro {
        margin-inline: 1rem;
    }

    .careers-panel__inner {
        padding: clamp(2.5rem, 8vw, 3rem);
    }

    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .product-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .story-card__brand img {
        width: min(100%, 280px);
    }

    .careers-panel__actions {
        flex-direction: column;
    }
}

body.page-id-1211 .site-main {
    padding-top: 0 !important;
}

body.page-id-1211 article > header {
    margin-bottom: 0 !important;
}

body.page-id-1211 .entry-content.lead {
    color: var(--si-color-navy);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

body.page-id-1211 .entry-content.lead p {
    color: var(--si-color-muted);
    font-size: 1rem;
}

body.page-id-1211 .about-intro,
body.page-id-1211 .about-history,
body.page-id-1211 .about-certifications {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

body.page-id-1211 .about-intro {
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(12, 22, 33, 0.92), rgba(12, 22, 33, 0.62)), var(--about-bg);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

body.page-id-1211 .about-intro__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 4.75rem 0;
}

body.page-id-1211 .about-intro__video {
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: var(--si-color-navy-900);
    box-shadow: 0 22px 46px rgba(4, 11, 20, 0.28);
}

body.page-id-1211 .about-intro__video iframe {
    border: 0;
}

body.page-id-1211 .about-intro__copy {
    max-width: 820px;
}

body.page-id-1211 .about-intro__copy p {
    color: rgba(255, 255, 255, 0.84);
}

body.page-id-1211 .about-eyebrow,
body.page-id-1211 .about-lead,
body.page-id-1211 .about-president__name {
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-1211 .about-eyebrow {
    margin-bottom: 0.6rem;
    color: var(--si-color-blue-700);
    font-size: 0.88rem;
    font-weight: 900;
}

body.page-id-1211 .about-intro .about-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-1211 .about-section-title {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2.35rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-1211 .about-intro .about-section-title {
    color: #ffffff;
}

body.page-id-1211 .about-lead {
    margin-bottom: 1.35rem;
    color: var(--si-color-navy);
    font-size: 1.15rem;
    font-weight: 800;
}

body.page-id-1211 .about-intro .about-lead {
    color: #ffffff;
}

body.page-id-1211 .entry-content.lead .about-intro .about-intro__copy p {
    color: rgba(255, 255, 255, 0.84);
}

body.page-id-1211 .entry-content.lead .about-intro .about-intro__copy .about-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-1211 .entry-content.lead .about-intro .about-intro__copy .about-lead {
    color: rgba(255, 255, 255, 0.94);
}

body.page-id-1211 .about-section {
    padding: 4.75rem 0;
}

body.page-id-1211 .about-president__layout {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

body.page-id-1211 .about-president__media {
    text-align: center;
}

body.page-id-1211 .about-president__portrait {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(12, 24, 37, 0.14);
}

body.page-id-1211 .about-president__name {
    margin-bottom: 0;
    color: var(--si-color-navy);
    font-size: 1rem;
    font-weight: 900;
}

body.page-id-1211 .about-president blockquote {
    margin: 0;
    padding-left: 1.35rem;
    border-left: 4px solid var(--si-color-gold);
}

body.page-id-1211 .about-president blockquote p:last-child,
body.page-id-1211 .about-history-copy p:last-child,
body.page-id-1211 .about-section__header p:last-child {
    margin-bottom: 0;
}

body.page-id-1211 .about-history {
    background: #f7f9fc;
}

body.page-id-1211 .about-history-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(18, 24, 37, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(12, 24, 37, 0.1);
}

body.page-id-1211 .about-history-media {
    display: flex;
}

body.page-id-1211 .about-history-photo {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--si-color-navy-900);
}

body.page-id-1211 .about-history-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

body.page-id-1211 .about-history-photo:hover img,
body.page-id-1211 .about-history-photo:focus img {
    transform: scale(1.06);
}

body.page-id-1211 .about-history-copy {
    height: 100%;
    padding: 3rem;
}

body.page-id-1211 .about-history-copy a {
    font-weight: 800;
}

body.page-id-1211 .about-certifications {
    background: #ffffff;
}

body.page-id-1211 .about-section__header {
    max-width: 860px;
    margin: 0 auto 2rem;
    text-align: center;
}

body.page-id-1211 .about-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

body.page-id-1211 .about-cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8.5rem;
    padding: 1rem;
    border: 1px solid rgba(18, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(12, 24, 37, 0.08);
}

body.page-id-1211 .about-cert-logo img {
    width: auto;
    max-height: 5.7rem;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    body.page-id-1211 .about-section-title {
        font-size: 1.95rem;
    }

    body.page-id-1211 .about-president__layout,
    body.page-id-1211 .about-history-row {
        grid-template-columns: 1fr;
    }

    body.page-id-1211 .about-history-copy {
        padding: 2rem;
    }

    body.page-id-1211 .about-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    body.page-id-1211 .about-intro,
    body.page-id-1211 .about-history,
    body.page-id-1211 .about-certifications {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    body.page-id-1211 .about-intro__inner,
    body.page-id-1211 .about-section {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    body.page-id-1211 .about-section-title {
        font-size: 1.65rem;
    }

    body.page-id-1211 .about-lead {
        font-size: 1.05rem;
    }

    body.page-id-1211 .about-president blockquote {
        padding-left: 1rem;
    }

    body.page-id-1211 .about-history-copy {
        padding: 1.35rem;
    }

    body.page-id-1211 .about-cert-logo {
        min-height: 7.25rem;
    }
}

body.page-id-9889 .site-main {
    padding-top: 0 !important;
}

body.page-id-9889 article > header {
    margin-bottom: 0 !important;
}

body.page-id-9889 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-9889 .resources-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-9889 .resources-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-9889 .resources-hero h1 {
    color: #ffffff;
    font-size: 3.4rem;
    margin-bottom: 1rem;
}

body.page-id-9889 .resources-hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    font-size: 1.15rem;
    margin-bottom: 0;
}

body.page-id-9889 .resources-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-9889 .resources-hero .resources-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-9889 .resources-section {
    max-width: 1180px;
    margin: 0 auto 4rem;
    padding-inline: 1.5rem;
}

body.page-id-9889 .resources-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-9889 .resources-section__header h2 {
    font-size: 2.35rem;
    margin-bottom: 0.75rem;
}

body.page-id-9889 .resources-section__header p:last-child {
    margin-bottom: 0;
}

body.page-id-9889 .resources-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-9889 .resources-card {
    min-height: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9889 .resources-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: rgba(36, 181, 234, 0.12);
    color: var(--si-color-blue-700);
    font-size: 1.35rem;
}

body.page-id-9889 .resources-card h3,
body.page-id-9889 .resources-curve h3 {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
}

body.page-id-9889 .resources-link-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

body.page-id-9889 .resources-link-list a,
body.page-id-9889 .resources-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 8px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-9889 .resources-link-list a::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-9889 .resources-link-list a:hover,
body.page-id-9889 .resources-link-list a:focus,
body.page-id-9889 .resources-actions a:hover,
body.page-id-9889 .resources-actions a:focus,
body.page-id-9889 .resources-table-link:hover,
body.page-id-9889 .resources-table-link:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-9901 article > header {
    margin-bottom: 0 !important;
}

body.page-id-9901 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-9901 .si-930x-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 24, 37, 0.82), rgba(12, 24, 37, 0.46)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-9901 .si-930x-hero__content,
body.page-id-9901 .si-930x-download {
    width: min(100%, 1120px);
    margin-inline: auto;
}

body.page-id-9901 .si-930x-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-9901 .si-930x-hero .si-930x-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-9901 .si-930x-hero h1 {
    max-width: 820px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-9901 .si-930x-hero p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-9901 .si-930x-download {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
}

body.page-id-9901 .si-930x-download__content {
    max-width: 820px;
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9901 .si-930x-download h2 {
    margin-bottom: 1rem;
    font-size: 2.35rem;
}

body.page-id-9901 .si-930x-download p {
    max-width: 720px;
}

body.page-id-9901 .si-930x-download p:last-child {
    margin-bottom: 0;
}

body.page-id-9901 .si-930x-download__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 8px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-9901 .si-930x-download__link::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-9901 .si-930x-download__link:hover,
body.page-id-9901 .si-930x-download__link:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@media (max-width: 767.98px) {
    body.page-id-9901 .si-930x-hero {
        min-height: 320px;
        margin-bottom: 2.75rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-9901 .si-930x-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-9901 .si-930x-download {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-9901 .si-930x-download__content {
        padding: 1.35rem;
    }

    body.page-id-9901 .si-930x-download h2 {
        font-size: 1.9rem;
    }
}

body.page-id-9897 article > header {
    margin-bottom: 0 !important;
}

body.page-id-9897 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-9897 .si-scm10-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 24, 37, 0.82), rgba(12, 24, 37, 0.46)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-9897 .si-scm10-hero__content,
body.page-id-9897 .si-scm10-content {
    width: min(100%, 1120px);
    margin-inline: auto;
}

body.page-id-9897 .si-scm10-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-9897 .si-scm10-hero .si-scm10-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-9897 .si-scm10-hero h1 {
    max-width: 820px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-9897 .si-scm10-hero p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-9897 .si-scm10-content {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
}

body.page-id-9897 .si-scm10-content__main {
    display: grid;
    gap: 1rem;
}

body.page-id-9897 .si-scm10-section,
body.page-id-9897 .si-scm10-card {
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9897 .si-scm10-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
}

body.page-id-9897 .si-scm10-section h2,
body.page-id-9897 .si-scm10-card h2 {
    margin-bottom: 1rem;
    font-size: 2.1rem;
}

body.page-id-9897 .si-scm10-section p,
body.page-id-9897 .si-scm10-card p {
    max-width: 820px;
}

body.page-id-9897 .si-scm10-section p:last-child,
body.page-id-9897 .si-scm10-card p:last-child,
body.page-id-9897 .si-scm10-list:last-child {
    margin-bottom: 0;
}

body.page-id-9897 .si-scm10-list {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.2rem;
    margin: 0 0 1.25rem;
    color: var(--si-color-muted);
}

body.page-id-9897 .si-scm10-list li::marker {
    color: var(--si-color-blue-700);
}

body.page-id-9897 .si-scm10-download__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 8px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-9897 .si-scm10-download__link::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-9897 .si-scm10-download__link:hover,
body.page-id-9897 .si-scm10-download__link:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@media (max-width: 991.98px) {
    body.page-id-9897 .si-scm10-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body.page-id-9897 .si-scm10-hero {
        min-height: 320px;
        margin-bottom: 2.75rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-9897 .si-scm10-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-9897 .si-scm10-content {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-9897 .si-scm10-section,
    body.page-id-9897 .si-scm10-card {
        padding: 1.35rem;
    }

    body.page-id-9897 .si-scm10-section h2,
    body.page-id-9897 .si-scm10-card h2 {
        font-size: 1.75rem;
    }
}

body.page-id-9895 article > header {
    margin-bottom: 0 !important;
}

body.page-id-9895 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-9895 .si-9700-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 24, 37, 0.82), rgba(12, 24, 37, 0.46)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-9895 .si-9700-hero__content,
body.page-id-9895 .si-9700-content {
    width: min(100%, 1120px);
    margin-inline: auto;
}

body.page-id-9895 .si-9700-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-9895 .si-9700-hero .si-9700-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-9895 .si-9700-hero h1 {
    max-width: 820px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-9895 .si-9700-content {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
}

body.page-id-9895 .si-9700-content__main {
    display: grid;
    gap: 1rem;
}

body.page-id-9895 .si-9700-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
}

body.page-id-9895 .si-9700-section,
body.page-id-9895 .si-9700-card {
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9895 .si-9700-section h2,
body.page-id-9895 .si-9700-card h2 {
    margin-bottom: 1rem;
    font-size: 2.1rem;
}

body.page-id-9895 .si-9700-section p,
body.page-id-9895 .si-9700-card p {
    max-width: 820px;
}

body.page-id-9895 .si-9700-section p:last-child,
body.page-id-9895 .si-9700-card p:last-child,
body.page-id-9895 .si-9700-list:last-child {
    margin-bottom: 0;
}

body.page-id-9895 .si-9700-list {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.2rem;
    margin: 0 0 1.25rem;
    color: var(--si-color-muted);
}

body.page-id-9895 .si-9700-list li::marker {
    color: var(--si-color-blue-700);
}

body.page-id-9895 .si-9700-download__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 8px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-9895 .si-9700-download__link::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-9895 .si-9700-download__link:hover,
body.page-id-9895 .si-9700-download__link:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@media (max-width: 991.98px) {
    body.page-id-9895 .si-9700-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body.page-id-9895 .si-9700-hero {
        min-height: 320px;
        margin-bottom: 2.75rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-9895 .si-9700-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-9895 .si-9700-content {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-9895 .si-9700-section,
    body.page-id-9895 .si-9700-card {
        padding: 1.35rem;
    }

    body.page-id-9895 .si-9700-section h2,
    body.page-id-9895 .si-9700-card h2 {
        font-size: 1.75rem;
    }
}

body.page-id-7538 article > header {
    margin-bottom: 0 !important;
}

body.page-id-7538 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-7538 .entry-content.lead > p:empty {
    display: none;
}

body.page-id-7538 .si-products-hero {
    width: 100vw;
    min-height: 400px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 24, 37, 0.86), rgba(12, 24, 37, 0.5)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5.5rem 1.5rem;
}

body.page-id-7538 .si-products-hero__content,
body.page-id-7538 .si-products-section,
body.page-id-7538 .si-products-category-nav,
body.page-id-7538 .si-products-contact__content {
    width: min(100%, 1120px);
    margin-inline: auto;
}

body.page-id-7538 .si-products-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-7538 .si-products-hero .si-products-eyebrow,
body.page-id-7538 .si-products-contact .si-products-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-7538 .si-products-hero h1 {
    max-width: 820px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-7538 .si-products-hero p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.14rem;
}

body.page-id-7538 .si-products-category-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
}

body.page-id-7538 .si-products-category-nav a {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-navy);
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.07);
}

body.page-id-7538 .si-products-category-nav a::after {
    content: '\F138';
    flex: 0 0 auto;
    margin-left: 0.75rem;
    color: var(--si-color-blue-700);
    font-family: 'bootstrap-icons';
    font-size: 0.95rem;
}

body.page-id-7538 .si-products-category-nav a:hover,
body.page-id-7538 .si-products-category-nav a:focus {
    border-color: rgba(1, 90, 156, 0.32);
    color: var(--si-color-blue-700);
    transform: translateY(-2px);
}

body.page-id-7538 .si-products-section {
    padding: 0 1.5rem;
    margin-bottom: 4.5rem;
}

body.page-id-7538 .si-products-intro {
    margin-bottom: 3rem;
}

body.page-id-7538 .si-products-section__header {
    max-width: 760px;
}

body.page-id-7538 .si-products-section__header h2,
body.page-id-7538 .si-products-line__heading h2,
body.page-id-7538 .si-products-capabilities h2,
body.page-id-7538 .si-products-contact h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

body.page-id-7538 .si-products-line__heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(12, 24, 37, 0.1);
}

body.page-id-7538 .si-products-line__heading h2,
body.page-id-7538 .si-products-line__heading .si-products-eyebrow {
    margin-bottom: 0;
}

body.page-id-7538 .si-products-grid {
    display: grid;
    gap: 1rem;
}

body.page-id-7538 .si-products-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-id-7538 .si-products-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

body.page-id-7538 .si-products-card {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-7538 .si-products-card--wide {
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
}

body.page-id-7538 .si-products-card__image {
    display: block;
    min-height: 230px;
    background: rgba(12, 24, 37, 0.04);
}

body.page-id-7538 .si-products-card__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
}

body.page-id-7538 .si-products-card:hover .si-products-card__image img,
body.page-id-7538 .si-products-card:focus-within .si-products-card__image img {
    transform: scale(1.03);
}

body.page-id-7538 .si-products-card__body {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.35rem;
}

body.page-id-7538 .si-products-card__meta {
    margin-bottom: 0;
    color: var(--si-color-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-7538 .si-products-card h3 {
    margin-bottom: 0;
    font-size: 1.28rem;
    line-height: 1.25;
}

body.page-id-7538 .si-products-card h3 a {
    color: var(--si-color-navy);
    text-decoration: none;
}

body.page-id-7538 .si-products-card h3 a:hover,
body.page-id-7538 .si-products-card h3 a:focus {
    color: var(--si-color-blue-700);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-7538 .si-products-card p {
    margin-bottom: 0;
}

body.page-id-7538 .si-products-card__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 40px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-7538 .si-products-card__link::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-7538 .si-products-card__link:hover,
body.page-id-7538 .si-products-card__link:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-7538 .si-products-capabilities {
    margin-bottom: 0;
}

body.page-id-7538 .si-products-capabilities__content {
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: rgba(12, 24, 37, 0.035);
}

body.page-id-7538 .si-products-capabilities ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0;
    margin: 0 0 1.25rem;
    list-style: none;
}

body.page-id-7538 .si-products-capabilities li {
    padding: 0.72rem 0.85rem;
    border-left: 3px solid var(--si-color-blue-700);
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-navy);
    font-weight: 800;
}

body.page-id-7538 .si-products-capabilities p:last-child {
    margin-bottom: 0;
}

body.page-id-7538 .si-products-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--si-color-navy);
    color: #ffffff;
    padding: 4.5rem 1.5rem;
}

body.page-id-7538 .si-products-contact h2 {
    color: #ffffff;
}

body.page-id-7538 .si-products-contact p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

body.page-id-7538 .si-products-contact__form {
    margin-top: 1.5rem;
    padding: 2rem;
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-body);
}

body.page-id-7538 .si-products-contact__form label {
    color: var(--si-color-navy);
    font-weight: 800;
}

body.page-id-7538 .si-products-contact__form input,
body.page-id-7538 .si-products-contact__form textarea,
body.page-id-7538 .si-products-contact__form select {
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    body.page-id-7538 .si-products-category-nav,
    body.page-id-7538 .si-products-grid--three,
    body.page-id-7538 .si-products-capabilities ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-id-7538 .si-products-card--wide {
        grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
    }
}

@media (max-width: 767.98px) {
    body.page-id-7538 .si-products-hero {
        min-height: 340px;
        margin-bottom: 2.5rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-7538 .si-products-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-7538 .si-products-category-nav,
    body.page-id-7538 .si-products-section {
        padding-inline: 1rem;
    }

    body.page-id-7538 .si-products-category-nav,
    body.page-id-7538 .si-products-grid--three,
    body.page-id-7538 .si-products-capabilities ul {
        grid-template-columns: 1fr;
    }

    body.page-id-7538 .si-products-section {
        margin-bottom: 3.25rem;
    }

    body.page-id-7538 .si-products-line__heading,
    body.page-id-7538 .si-products-card--wide {
        grid-template-columns: 1fr;
    }

    body.page-id-7538 .si-products-section__header h2,
    body.page-id-7538 .si-products-line__heading h2,
    body.page-id-7538 .si-products-capabilities h2,
    body.page-id-7538 .si-products-contact h2 {
        font-size: 1.8rem;
    }

    body.page-id-7538 .si-products-capabilities__content,
    body.page-id-7538 .si-products-contact__form {
        padding: 1.35rem;
    }

    body.page-id-7538 .si-products-contact {
        padding: 3.5rem 1rem;
    }
}

body.page-id-9998 article > header {
    margin-bottom: 0 !important;
}

body.page-id-9998 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-9998 .si-product-info-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 24, 37, 0.84), rgba(12, 24, 37, 0.48)),
        url('../images/hero.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-9998 .si-product-info-hero__content,
body.page-id-9998 .si-product-info-content__inner {
    width: min(100%, 1120px);
    margin-inline: auto;
}

body.page-id-9998 .si-product-info-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-9998 .si-product-info-hero h1 {
    max-width: 820px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-9998 .si-product-info-content {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
}

body.page-id-9998 .si-product-info-table-card {
    overflow-x: auto;
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9998 .si-product-info-table-card > p:empty {
    display: none;
}

body.page-id-9998 .si-product-info-table-card h4 {
    margin: 2.5rem 0 1.15rem;
    color: var(--si-color-navy);
    font-size: 2rem;
}

body.page-id-9998 .si-product-info-table-card h4:first-child {
    margin-top: 0;
}

body.page-id-9998 .table-product-info {
    width: 100%;
    min-width: 760px;
    margin: 0 0 2.25rem;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--si-color-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

body.page-id-9998 .table-product-info:last-child {
    margin-bottom: 0;
}

body.page-id-9998 .table-product-info th,
body.page-id-9998 .table-product-info td {
    vertical-align: top;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(12, 24, 37, 0.1);
}

body.page-id-9998 .table-product-info th {
    background: var(--si-color-navy);
    color: #ffffff;
    font-weight: 800;
}

body.page-id-9998 .table-product-info th:first-child {
    border-top-left-radius: 8px;
}

body.page-id-9998 .table-product-info th:last-child {
    border-top-right-radius: 8px;
}

body.page-id-9998 .table-product-info tbody tr:nth-child(even) td {
    background: rgba(12, 24, 37, 0.035);
}

body.page-id-9998 .table-product-info td:first-child {
    width: 210px;
    color: var(--si-color-blue-700);
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    body.page-id-9998 .si-product-info-hero {
        min-height: 320px;
        margin-bottom: 2.75rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-9998 .si-product-info-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-9998 .si-product-info-content {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-9998 .si-product-info-table-card {
        padding: 1.35rem;
    }

    body.page-id-9998 .si-product-info-table-card h4 {
        font-size: 1.65rem;
    }
}

body.page-id-9889 .resources-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-9889 .resources-probes-table {
    width: 100%;
    min-width: 760px;
    margin-bottom: 0;
    color: var(--si-color-navy);
    vertical-align: middle;
}

body.page-id-9889 .resources-probes-table thead th {
    border-bottom: 0;
    background: var(--si-color-navy);
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

body.page-id-9889 .resources-probes-table tbody td {
    padding: 1rem;
    border-color: rgba(12, 24, 37, 0.08);
}

body.page-id-9889 .resources-probes-table tbody tr:nth-child(even) td {
    background: #f8fbfd;
}

body.page-id-9889 .resources-table-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(224, 190, 0, 0.14);
    color: var(--si-color-navy);
    font-size: 1.1rem;
}

body.page-id-9889 .resources-curve-list {
    display: grid;
    gap: 0.85rem;
}

body.page-id-9889 .resources-curve {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.07);
}

body.page-id-9889 .resources-curve h3 {
    margin-bottom: 0;
}

body.page-id-9889 .resources-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

body.page-id-9889 .resources-actions a {
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(13, 92, 159, 0.22);
    background: #f7fbff;
}

@media (max-width: 991.98px) {
    body.page-id-9889 .resources-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body.page-id-9889 .resources-hero {
        min-height: 300px;
        padding-block: 3.5rem;
        margin-bottom: 3rem;
    }

    body.page-id-9889 .resources-hero h1 {
        font-size: 2.55rem;
    }

    body.page-id-9889 .resources-section {
        margin-bottom: 3rem;
        padding-inline: 1rem;
    }

    body.page-id-9889 .resources-section__header h2 {
        font-size: 1.95rem;
    }

    body.page-id-9889 .resources-card-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-9889 .resources-probes-table {
        min-width: 0;
        table-layout: fixed;
        font-size: 0.88rem;
    }

    body.page-id-9889 .resources-probes-table thead th {
        white-space: normal;
    }

    body.page-id-9889 .resources-probes-table tbody td {
        padding: 0.75rem 0.55rem;
        overflow-wrap: anywhere;
    }

    body.page-id-9889 .resources-probes-table th:first-child,
    body.page-id-9889 .resources-probes-table td:first-child {
        width: 72px;
    }

    body.page-id-9889 .resources-probes-table th:last-child,
    body.page-id-9889 .resources-probes-table td:last-child {
        width: 56px;
        text-align: center;
    }

    body.page-id-9889 .resources-table-link {
        width: 36px;
        height: 36px;
    }

    body.page-id-9889 .resources-curve {
        display: block;
    }

    body.page-id-9889 .resources-actions {
        justify-content: flex-start;
        margin-top: 0.85rem;
    }
}

body.page-id-7305 .site-main {
    padding-top: 0 !important;
}

body.page-id-7305 article > header {
    margin-bottom: 0 !important;
}

body.page-id-7305 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-7305 .si-news-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.76), rgba(6, 10, 14, 0.4)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/07/ScientificInstruments-NewsPageBG2.jpg");
    background-position: center top;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-7305 .si-news-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-7305 .si-news-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-7305 .si-news-hero .si-news-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-7305 .si-news-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-7305 .si-news-hero__summary {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-7305 .si-news-content {
    max-width: 1180px;
    margin: 0 auto 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-7305 .si-news-section-heading {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-7305 .si-news-section-heading h2 {
    margin-bottom: 0;
    font-size: 2.35rem;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts.is-grid li {
    width: auto;
    margin: 0;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts li {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts li:hover,
body.page-id-7305 .si-news-content .wp-block-latest-posts li:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.12);
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__featured-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: #e9f0f6;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__featured-image a,
body.page-id-7305 .si-news-content .wp-block-latest-posts__featured-image img {
    display: block;
    width: 100%;
    height: 100%;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__featured-image img {
    object-fit: cover;
    transition: transform 0.25s ease;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts li:hover .wp-block-latest-posts__featured-image img,
body.page-id-7305 .si-news-content .wp-block-latest-posts li:focus-within .wp-block-latest-posts__featured-image img {
    transform: scale(1.04);
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__post-title {
    display: block;
    padding: 1.2rem 1.2rem 0.5rem;
    color: var(--si-color-navy);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.32;
    overflow-wrap: anywhere;
    text-decoration: none;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__post-title:hover,
body.page-id-7305 .si-news-content .wp-block-latest-posts__post-title:focus {
    color: var(--si-color-blue-700);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-7305 .si-news-content .wp-block-latest-posts__post-date {
    display: block;
    margin: auto 1.2rem 1.2rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(12, 24, 37, 0.08);
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    body.page-id-7305 .si-news-hero {
        min-height: 300px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-7305 .si-news-hero h1 {
        font-size: 2.55rem;
    }

    body.page-id-7305 .si-news-hero__summary {
        font-size: 1rem;
    }

    body.page-id-7305 .si-news-content {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-7305 .si-news-section-heading h2 {
        font-size: 1.95rem;
    }

    body.page-id-7305 .si-news-content .wp-block-latest-posts {
        grid-template-columns: 1fr;
    }
}

body.page-id-1303 .site-main {
    padding-top: 0 !important;
}

body.page-id-1303 article > header {
    margin-bottom: 0 !important;
}

body.page-id-1303 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-1303 .si-alliances-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.78), rgba(6, 10, 14, 0.38)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2020/11/ScientificInstruments-AlliancesPageBG1.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-1303 .si-alliances-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-1303 .si-alliances-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.page-id-1303 .si-alliances-hero .si-alliances-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-1303 .si-alliances-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-1303 .si-alliances-section {
    max-width: 1180px;
    margin: 0 auto 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-1303 .si-alliances-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-1303 .si-alliances-section__header h2 {
    margin-bottom: 0;
    font-size: 2.35rem;
}

body.page-id-1303 .si-alliances-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-1303 .si-alliance-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-id-1303 .si-alliance-card:hover,
body.page-id-1303 .si-alliance-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.12);
}

body.page-id-1303 .si-alliance-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
}

body.page-id-1303 .si-alliance-card p {
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

body.page-id-1303 .si-alliance-card .btn {
    align-self: flex-start;
    margin-top: auto;
    border: 1px solid rgba(13, 92, 159, 0.22);
    border-radius: 8px !important;
    background: #f7fbff;
    color: var(--si-color-blue-700);
    box-shadow: none;
}

body.page-id-1303 .si-alliance-card .btn::after {
    content: '\F138';
    margin-left: 0.45rem;
    font-family: 'bootstrap-icons';
    font-size: 0.9rem;
}

body.page-id-1303 .si-alliance-card .btn:hover,
body.page-id-1303 .si-alliance-card .btn:focus {
    color: var(--si-color-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    transform: none;
}

body.page-id-1303 .si-alliances-global {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    padding: 4rem 1.5rem 4.5rem;
    background: #eef5fb;
}

body.page-id-1303 .si-alliances-global .si-alliances-section__header,
body.page-id-1303 .si-alliances-team {
    width: min(100%, 1180px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-1303 .si-alliances-team .amoteam-tiles {
    overflow: visible;
}

body.page-id-1303 .si-alliances-team .amoteam-tiles__item > a {
    display: block;
    border-radius: 8px;
}

body.page-id-1303 .si-alliances-team .amoteam-member-img {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08) !important;
}

body.page-id-1303 .si-alliances-team .amoteam-member-name,
body.page-id-1303 .si-alliances-team .amoteam-member-subtitle {
    font-family: var(--si-font-base);
}

@media (max-width: 991.98px) {
    body.page-id-1303 .si-alliances-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    body.page-id-1303 .si-alliances-hero {
        min-height: 300px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-1303 .si-alliances-hero h1 {
        font-size: 2.55rem;
    }

    body.page-id-1303 .si-alliances-section {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-1303 .si-alliances-section__header h2 {
        font-size: 1.95rem;
    }

    body.page-id-1303 .si-alliances-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-1303 .si-alliances-global {
        padding: 3.5rem 1rem;
    }
}

body.page-id-1179 .site-main {
    padding-top: 0 !important;
}

body.page-id-1179 article > header {
    margin-bottom: 0 !important;
}

body.page-id-1179 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-1179 .si-team-intro {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    padding: 4.5rem 1.5rem;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    background:
        linear-gradient(90deg, rgba(238, 245, 251, 0.96), rgba(255, 255, 255, 0.92));
}

body.page-id-1179 .si-team-intro__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-1179 .si-team-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-1179 .si-team-intro h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    font-size: 3.4rem;
}

body.page-id-1179 .si-team-intro p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--si-color-muted);
    font-size: 1.1rem;
}

body.page-id-1179 .si-team-directory {
    max-width: 1180px;
    margin: 0 auto 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-1179 .si-team-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-1179 .si-team-section__header h2 {
    margin-bottom: 0;
    font-size: 2.35rem;
}

body.page-id-1179 .si-team-grid-wrap .amoteam-tiles {
    overflow: visible;
}

body.page-id-1179 .si-team-grid-wrap .amoteam-tiles__item > a {
    display: block;
    border-radius: 8px;
}

body.page-id-1179 .si-team-grid-wrap .amoteam-member-img {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08) !important;
}

body.page-id-1179 .si-team-grid-wrap .amoteam-member-name,
body.page-id-1179 .si-team-grid-wrap .amoteam-member-subtitle {
    font-family: var(--si-font-base);
    letter-spacing: 0;
}

body.page-id-1179 .si-team-spotlight {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    padding: 4rem max(1.5rem, calc((100vw - 1180px) / 2)) 4.5rem;
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    background: #eef5fb;
}

body.page-id-1179 .si-team-spotlight__media img {
    width: 100%;
    aspect-ratio: 1;
    border: 6px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.12);
    object-fit: cover;
}

body.page-id-1179 .si-team-spotlight h2 {
    margin-bottom: 1rem;
    font-size: 2.35rem;
}

body.page-id-1179 .si-team-spotlight__qa {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

body.page-id-1179 .si-team-spotlight__qa div {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(12, 24, 37, 0.1);
}

body.page-id-1179 .si-team-spotlight__qa dt {
    margin-bottom: 0.2rem;
    color: var(--si-color-navy);
    font-weight: 900;
}

body.page-id-1179 .si-team-spotlight__qa dd {
    margin: 0;
    color: var(--si-color-muted);
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    body.page-id-1179 .si-team-intro {
        margin-bottom: 3rem;
        padding: 3.5rem 1rem;
        background:
            linear-gradient(90deg, rgba(238, 245, 251, 0.98), rgba(255, 255, 255, 0.96));
    }

    body.page-id-1179 .si-team-intro h1 {
        font-size: 2.55rem;
    }

    body.page-id-1179 .si-team-intro p:last-child {
        font-size: 1rem;
    }

    body.page-id-1179 .si-team-directory {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-1179 .si-team-section__header h2,
    body.page-id-1179 .si-team-spotlight h2 {
        font-size: 1.95rem;
    }

    body.page-id-1179 .si-team-spotlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3.5rem 1rem;
    }

body.page-id-1179 .si-team-spotlight__media {
        max-width: 260px;
    }
}

body.page-id-7306 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, var(--si-color-background) 100%);
}

body.page-id-7306 article > header {
    display: none;
}

body.page-id-7306 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-7306 .si-contact-hero {
    width: 100vw;
    min-height: 400px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.82), rgba(6, 10, 14, 0.32)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/07/ScientificInstruments-contactPageBG1.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-7306 .si-contact-hero__content,
body.page-id-7306 .si-contact-main {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-7306 .si-contact-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-7306 .si-contact-hero .si-contact-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-7306 .si-contact-hero h1 {
    max-width: 780px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: none;
}

body.page-id-7306 .si-contact-hero h1 + p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-7306 .si-contact-main {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: 5rem;
    padding-inline: 1.5rem;
}

body.page-id-7306 .si-contact-info,
body.page-id-7306 .si-contact-form-panel {
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-7306 .si-contact-info {
    padding: clamp(1.35rem, 3vw, 1.8rem);
}

body.page-id-7306 .si-contact-info h2,
body.page-id-7306 .si-contact-section__header h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.16;
    text-transform: none;
}

body.page-id-7306 .si-contact-info p,
body.page-id-7306 .si-contact-section__header p {
    color: var(--si-color-muted);
}

body.page-id-7306 .si-contact-list {
    display: grid;
    gap: 0;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

body.page-id-7306 .si-contact-list li {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(13, 92, 159, 0.12);
}

body.page-id-7306 .si-contact-list span {
    color: var(--si-color-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-7306 .si-contact-list strong,
body.page-id-7306 .si-contact-list a {
    color: var(--si-color-navy);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

body.page-id-7306 .si-contact-list a {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-7306 .si-contact-list a:hover,
body.page-id-7306 .si-contact-list a:focus {
    color: var(--si-color-blue-700);
}

body.page-id-7306 .si-contact-form-panel {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

body.page-id-7306 .si-contact-section__header {
    margin-bottom: 1.75rem;
}

body.page-id-7306 .si-contact-form .wpcf7-form {
    margin-bottom: 0;
}

body.page-id-7306 .si-contact-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    align-items: start;
}

body.page-id-7306 .si-contact-form label {
    color: var(--si-color-navy);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
}

body.page-id-7306 .si-contact-form .form-control,
body.page-id-7306 .si-contact-form .form-select {
    min-height: 3rem;
    border-color: rgba(13, 92, 159, 0.18);
    border-radius: 8px;
    background: #fbfdff;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.page-id-7306 .si-contact-form .form-control:focus,
body.page-id-7306 .si-contact-form .form-select:focus {
    border-color: rgba(36, 181, 234, 0.75);
    box-shadow: 0 0 0 4px rgba(36, 181, 234, 0.14);
}

body.page-id-7306 .si-contact-form textarea.form-control {
    min-height: 9rem;
}

body.page-id-7306 .si-contact-form .wpcf7-submit {
    min-width: 12rem;
    border-radius: 8px !important;
}

body.page-id-7306 .si-contact-form .wpcf7-response-output {
    margin: 1rem 0 0;
}

@media (max-width: 767.98px) {
    body.page-id-7306 .si-contact-hero {
        min-height: 320px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-7306 .si-contact-hero h1 {
        font-size: 2.4rem;
    }

    body.page-id-7306 .si-contact-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-7306 .si-contact-main {
        grid-template-columns: 1fr;
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-7306 .si-contact-info,
    body.page-id-7306 .si-contact-form-panel {
        padding: 1.25rem;
    }

    body.page-id-7306 .si-contact-info h2,
    body.page-id-7306 .si-contact-section__header h2 {
        font-size: 1.85rem;
    }

    body.page-id-7306 .si-contact-form .wpcf7-submit {
        width: 100%;
    }
}

body.page-id-7718 .site-main {
    padding-top: 0 !important;
}

body.page-id-7718 .si-thank-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
    background: linear-gradient(135deg, #eef5fb 0%, #ffffff 48%, #e8f1f8 100%);
}

body.page-id-7718 .si-thank-hero__content,
body.page-id-7718 .si-thank-product,
body.page-id-7718 .si-thank-certifications {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-7718 .si-thank-hero__content {
    max-width: 760px;
    text-align: center;
}

body.page-id-7718 .si-thank-eyebrow {
    margin-bottom: 0.8rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-7718 .si-thank-hero h1 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: none;
}

body.page-id-7718 .si-thank-hero h1 + p {
    margin-bottom: 0;
    color: var(--si-color-muted);
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 700;
}

body.page-id-7718 .si-thank-product {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    padding: 5rem 1.5rem;
}

body.page-id-7718 .si-thank-product__media {
    overflow: hidden;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 8px;
    background: #eef3f8;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.12);
}

body.page-id-7718 .si-thank-product__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.page-id-7718 .si-thank-product__copy {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(12, 24, 37, 0.08);
}

body.page-id-7718 .si-thank-product__copy h2,
body.page-id-7718 .si-thank-section__header h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    letter-spacing: 0;
    line-height: 1.12;
    text-transform: none;
}

body.page-id-7718 .si-thank-product__copy p {
    color: var(--si-color-muted);
}

body.page-id-7718 .si-thank-product__copy p:last-child {
    margin-bottom: 0;
}

body.page-id-7718 .si-thank-product__copy a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-7718 .si-thank-certifications {
    padding: 0 1.5rem 5rem;
}

body.page-id-7718 .si-thank-section__header {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

body.page-id-7718 .si-thank-cert-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-7718 .si-thank-cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8.5rem;
    padding: 1rem;
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(12, 24, 37, 0.08);
}

body.page-id-7718 .si-thank-cert-logo img {
    width: auto;
    max-width: 100%;
    max-height: 5.7rem;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    body.page-id-7718 .si-thank-product {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    body.page-id-7718 .si-thank-product__media,
    body.page-id-7718 .si-thank-product__media img {
        min-height: 22rem;
    }

    body.page-id-7718 .si-thank-cert-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    body.page-id-7718 .si-thank-hero {
        padding: 3.5rem 1rem;
    }

    body.page-id-7718 .si-thank-product {
        padding: 3.25rem 1rem;
    }

    body.page-id-7718 .si-thank-product__copy {
        padding: 1.25rem;
    }

    body.page-id-7718 .si-thank-product__media,
    body.page-id-7718 .si-thank-product__media img {
        min-height: 18rem;
    }

    body.page-id-7718 .si-thank-certifications {
        padding-right: 1rem;
        padding-bottom: 3.5rem;
        padding-left: 1rem;
    }

    body.page-id-7718 .si-thank-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-id-7718 .si-thank-cert-logo {
        min-height: 7.5rem;
        padding: 0.85rem;
    }
}

body.page-id-1214 .site-main {
    padding-top: 0 !important;
}

body.page-id-1214 article > header {
    margin-bottom: 0 !important;
}

body.page-id-1214 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-1214 .si-careers-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.78), rgba(6, 10, 14, 0.38)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/07/ScientificInstruments-CareersPageBG1.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-1214 .si-careers-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-1214 .si-careers-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-1214 .si-careers-hero .si-careers-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-1214 .si-careers-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
}

body.page-id-1214 .si-careers-hero h1 + p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-1214 .si-careers-section,
body.page-id-1214 .si-careers-info,
body.page-id-1214 .si-careers-actions,
body.page-id-1214 .si-careers-openings {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 1.5rem;
}

body.page-id-1214 .si-careers-section {
    margin-bottom: 3.5rem;
}

body.page-id-1214 .si-careers-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-1214 .si-careers-section__header h2 {
    margin-bottom: 0;
    font-size: 2.35rem;
}

body.page-id-1214 .si-careers-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-1214 .si-careers-card,
body.page-id-1214 .si-careers-note {
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-1214 .si-careers-card {
    min-height: 100%;
    padding: 1.35rem;
}

body.page-id-1214 .si-careers-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
}

body.page-id-1214 .si-careers-card p,
body.page-id-1214 .si-careers-note p {
    margin-bottom: 0;
}

body.page-id-1214 .si-careers-info {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

body.page-id-1214 .si-careers-note {
    padding: 1.35rem;
}

body.page-id-1214 .si-careers-note .si-careers-eyebrow {
    margin-bottom: 0.55rem;
}

body.page-id-1214 .si-careers-note p + p {
    margin-top: 1rem;
}

body.page-id-1214 .si-careers-note a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-1214 .si-careers-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4.5rem;
}

body.page-id-1214 .si-careers-actions br {
    display: none;
}

body.page-id-1214 .si-careers-actions .btn {
    border-radius: 8px !important;
}

body.page-id-1214 .si-careers-actions .btn-si-light {
    border: 1px solid rgba(13, 92, 159, 0.22);
    background: #f7fbff;
    color: var(--si-color-blue-700);
    box-shadow: none;
}

body.page-id-1214 .si-careers-actions .btn-si-light:hover,
body.page-id-1214 .si-careers-actions .btn-si-light:focus {
    color: var(--si-color-navy);
}

body.page-id-1214 .si-careers-openings {
    margin-bottom: 5rem;
}

body.page-id-1214 .si-careers-openings .si-careers-section__header {
    margin-bottom: 1.5rem;
}

body.page-id-1214 .si-careers-job-board {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-1214 .sjb-page {
    color: var(--si-color-muted);
    font-size: 1rem;
}

body.page-id-1214 .sjb-page .sjb-filters {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #f7fbff;
}

body.page-id-1214 .sjb-page .filters-form .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    margin-right: 0;
    margin-left: 0;
}

body.page-id-1214 .sjb-page .sjb-search-keywords,
body.page-id-1214 .sjb-page .sjb-search-button,
body.page-id-1214 .sjb-page .sjb-list-row > [class*="col-"],
body.page-id-1214 .sjb-page .list-data header .row > [class*="col-"] {
    float: none;
    width: auto;
    max-width: none;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
}

body.page-id-1214 .sjb-page .sjb-search-keywords {
    flex: 1 1 18rem;
}

body.page-id-1214 .sjb-page .sjb-search-button {
    flex: 0 0 auto;
}

body.page-id-1214 .sjb-page .form-group {
    margin-bottom: 0;
}

body.page-id-1214 .sjb-page .form-control {
    min-height: 3rem;
    border-color: rgba(13, 92, 159, 0.18);
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-navy);
}

body.page-id-1214 .sjb-page .form-control:focus {
    border-color: rgba(36, 181, 234, 0.75);
    box-shadow: 0 0 0 4px rgba(36, 181, 234, 0.14);
}

body.page-id-1214 .sjb-page .btn-search {
    min-width: 3.25rem;
    min-height: 3rem;
    border: 0;
    border-radius: 8px;
    background: var(--si-color-gold);
    color: var(--si-color-navy);
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
}

body.page-id-1214 .sjb-page .sjb-listing .list-view {
    display: grid;
    gap: 1rem;
}

body.page-id-1214 .sjb-page .list-data {
    padding: 1.25rem;
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.08);
}

body.page-id-1214 .sjb-page .list-data header .row,
body.page-id-1214 .sjb-page .sjb-list-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.85rem 1rem;
    margin-right: 0;
    margin-left: 0;
}

body.page-id-1214 .sjb-page .list-data header .row > .col-md-1 {
    flex: 0 0 auto;
}

body.page-id-1214 .sjb-page .list-data header .row > .col-md-11 {
    flex: 1 1 28rem;
}

body.page-id-1214 .sjb-page .sjb-list-row > [class*="col-"] {
    flex: 1 1 12rem;
}

body.page-id-1214 .sjb-page .company-logo img {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 8px;
    object-fit: cover;
}

body.page-id-1214 .sjb-page .job-info h4 {
    margin-bottom: 0;
    font-size: 1.15rem;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

body.page-id-1214 .sjb-page .job-info h4 a,
body.page-id-1214 .sjb-page .sjb_view_more_btn,
body.page-id-1214 .sjb-page .sjb_view_less_btn {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: none;
}

body.page-id-1214 .sjb-page .job-info h4 a {
    display: block;
    overflow-wrap: anywhere;
    white-space: normal;
}

body.page-id-1214 .sjb-page .job-type,
body.page-id-1214 .sjb-page .job-location,
body.page-id-1214 .sjb-page .job-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--si-color-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

body.page-id-1214 .sjb-page .job-type i,
body.page-id-1214 .sjb-page .job-location i,
body.page-id-1214 .sjb-page .job-date i {
    color: var(--si-color-blue-700);
}

body.page-id-1214 .sjb-page .sjb_more_content,
body.page-id-1214 .sjb-page [id^="sjb_less_content_"] {
    margin-top: 1rem;
    color: var(--si-color-muted);
    line-height: 1.65;
}

body.page-id-1214 .sjb-page .sjb_more_content ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

body.page-id-1214 .sjb-page .sjb-job-features {
    overflow-x: auto;
    margin-top: 1rem;
}

body.page-id-1214 .sjb-page .sjb-job-features table {
    width: 100%;
    min-width: 34rem;
    border-color: rgba(13, 92, 159, 0.14);
}

body.page-id-1214 .sjb-page .sjb-apply-now-btn .btn {
    margin-top: 0.75rem;
    margin-right: 0.5rem;
    border: 0;
    border-radius: 8px;
    background: var(--si-color-blue-700);
    color: #ffffff;
    font-weight: 800;
}

body.page-id-1214 .sjb-page .no-job-listing {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 1px dashed rgba(13, 92, 159, 0.22);
    border-radius: 8px;
    background: #f7fbff;
    text-align: center;
}

body.page-id-1214 .sjb-page .no-job-listing img {
    max-width: 5rem;
}

@media (max-width: 767.98px) {
    body.page-id-1214 .si-careers-hero {
        min-height: 300px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-1214 .si-careers-hero h1 {
        font-size: 2.55rem;
    }

    body.page-id-1214 .si-careers-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-1214 .si-careers-section,
    body.page-id-1214 .si-careers-info,
    body.page-id-1214 .si-careers-actions,
    body.page-id-1214 .si-careers-openings {
        padding-inline: 1rem;
    }

    body.page-id-1214 .si-careers-section__header h2 {
        font-size: 1.95rem;
    }

    body.page-id-1214 .si-careers-card-grid,
    body.page-id-1214 .si-careers-info {
        grid-template-columns: 1fr;
    }

    body.page-id-1214 .si-careers-actions {
        margin-bottom: 3.5rem;
    }

    body.page-id-1214 .si-careers-job-board {
        padding: 1rem;
    }

    body.page-id-1214 .sjb-page .sjb-search-keywords,
    body.page-id-1214 .sjb-page .sjb-search-button,
    body.page-id-1214 .sjb-page .btn-search {
        width: 100%;
    }

    body.page-id-1214 .sjb-page .company-logo img {
        width: 3.75rem;
        height: 3.75rem;
    }

    body.page-id-1214 .sjb-page .sjb-apply-now-btn .btn {
        width: 100%;
        margin-right: 0;
    }
}

body.page-id-13996 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 38%, var(--si-color-background) 100%);
}

body.page-id-13996 article > header {
    display: none;
}

body.page-id-13996 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-13996 .si-employment-hero {
    width: 100vw;
    min-height: 360px;
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.78), rgba(6, 10, 14, 0.36)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/07/ScientificInstruments-CareersPageBG1.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-13996 .si-employment-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.page-id-13996 .si-employment-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-13996 .si-employment-hero .si-employment-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-13996 .si-employment-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.2rem;
}

body.page-id-13996 .si-employment-hero h1 + p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-13996 .si-employment-application {
    max-width: 1140px;
    margin-right: auto;
    margin-bottom: 4.5rem;
    margin-left: auto;
    padding-inline: 1.5rem;
}

body.page-id-13996 .si-employment-form-intro {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-13996 .si-employment-form-intro h2 {
    margin-bottom: 0.75rem;
    font-size: 2.15rem;
}

body.page-id-13996 .si-employment-form-intro p:last-child {
    margin-bottom: 0;
}

body.page-id-13996 .si-employment-form-panel {
    overflow-x: auto;
    padding: 2rem;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.09);
}

body.page-id-13996 #employmentApplication {
    display: block;
    color: var(--si-color-navy);
}

body.page-id-13996 #employmentApplication h4 {
    margin: 2.25rem 0 1rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(13, 92, 159, 0.15);
    color: var(--si-color-navy);
    font-size: 1.15rem;
}

body.page-id-13996 #employmentApplication h4:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.page-id-13996 #employmentApplication p {
    color: #435064;
    font-size: 1rem;
}

body.page-id-13996 #employmentApplication strong {
    color: var(--si-color-navy);
}

body.page-id-13996 #employmentApplication .form-group {
    margin-bottom: 1rem;
}

body.page-id-13996 #employmentApplication label {
    margin-bottom: 0.4rem;
    color: #243044;
    font-size: 0.94rem;
    font-weight: 800;
}

body.page-id-13996 #employmentApplication .form-control {
    min-height: 46px;
    border: 1px solid rgba(13, 92, 159, 0.18);
    border-radius: 8px;
    background-color: #f9fbfe;
    color: var(--si-color-navy);
    box-shadow: none;
}

body.page-id-13996 #employmentApplication .form-control:focus {
    border-color: rgba(36, 181, 234, 0.8);
    background-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(36, 181, 234, 0.18);
}

body.page-id-13996 #employmentApplication textarea.form-control {
    min-height: 120px;
}

body.page-id-13996 #employmentApplication .form-check {
    margin-right: 1rem;
    margin-bottom: 0.75rem;
}

body.page-id-13996 #employmentApplication .form-check-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

body.page-id-13996 #employmentApplication .form-check-input {
    margin-top: 0;
    border-color: rgba(13, 92, 159, 0.45);
    accent-color: var(--si-color-blue-700);
}

body.page-id-13996 #employmentApplication .form-check-label {
    margin-bottom: 0;
    font-weight: 700;
}

body.page-id-13996 #employmentApplication .table {
    min-width: 860px;
    margin: 1rem 0 1.5rem;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(13, 92, 159, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

body.page-id-13996 #employmentApplication .table th,
body.page-id-13996 #employmentApplication .table td {
    padding: 0.85rem;
    border-color: rgba(13, 92, 159, 0.1);
    vertical-align: top;
}

body.page-id-13996 #employmentApplication .table thead th {
    border-bottom: 0;
    background: var(--si-color-navy);
    color: #ffffff;
    font-size: 0.86rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.page-id-13996 #employmentApplication .table tbody th {
    color: var(--si-color-navy);
    font-weight: 900;
}

body.page-id-13996 #employmentApplication .table .form-control {
    min-width: 150px;
}

body.page-id-13996 #employmentApplication .btn-primary {
    min-height: 48px;
    padding: 0.75rem 1.65rem;
    border: 0;
    border-radius: 8px;
    background: var(--si-color-blue-700);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(13, 92, 159, 0.2);
}

body.page-id-13996 #employmentApplication .btn-primary:hover,
body.page-id-13996 #employmentApplication .btn-primary:focus {
    background: var(--si-color-navy);
    color: #ffffff;
}

body.page-id-13996 #employmentApplication .btn-primary:disabled {
    opacity: 0.7;
    cursor: wait;
}

@media (max-width: 767.98px) {
    body.page-id-13996 .si-employment-hero {
        min-height: 300px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-13996 .si-employment-hero h1 {
        font-size: 2.45rem;
    }

    body.page-id-13996 .si-employment-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-13996 .si-employment-application {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-13996 .si-employment-form-intro h2 {
        font-size: 1.75rem;
    }

    body.page-id-13996 .si-employment-form-panel {
        padding: 1.15rem;
    }

    body.page-id-13996 #employmentApplication h4 {
        font-size: 1.05rem;
    }
}

body.page-id-5884 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, var(--si-color-background) 100%);
}

body.page-id-5884 article > header {
    display: none;
}

body.page-id-5884 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-5884 .si-monitors-hero {
    width: 100vw;
    min-height: 400px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.82), rgba(6, 10, 14, 0.32)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2020/11/SlideBG_Cryostat-1200x720.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-5884 .si-monitors-hero__content,
body.page-id-5884 .si-monitors-section,
body.page-id-5884 .si-monitors-contact__inner {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-5884 .si-monitors-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-5884 .si-monitors-hero .si-monitors-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-5884 .si-monitors-hero h1 {
    max-width: 820px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: none;
}

body.page-id-5884 .si-monitors-hero h1 + p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-5884 .si-monitors-section {
    margin-bottom: 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-5884 .si-monitors-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

body.page-id-5884 .si-monitors-intro__copy h2,
body.page-id-5884 .si-monitors-section__header h2,
body.page-id-5884 .si-monitors-contact h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2.25rem;
    letter-spacing: 0;
    line-height: 1.16;
    text-transform: none;
}

body.page-id-5884 .si-monitors-intro__copy p,
body.page-id-5884 .si-monitors-section__header p,
body.page-id-5884 .si-monitors-callout p {
    color: var(--si-color-muted);
}

body.page-id-5884 .si-monitors-intro__copy a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-5884 .si-monitors-product-lines {
    display: grid;
    gap: 0.7rem;
    margin: 1.35rem 0;
    padding-left: 1.35rem;
}

body.page-id-5884 .si-monitors-product-lines li {
    padding-left: 0.15rem;
}

body.page-id-5884 .si-monitors-product-lines li::marker {
    color: var(--si-color-blue-700);
    font-weight: 900;
}

body.page-id-5884 .si-monitors-callout {
    position: relative;
    overflow: hidden;
    padding: 1.75rem;
    border: 1px solid rgba(13, 92, 159, 0.14);
    border-top: 5px solid var(--si-color-gold);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-5884 .si-monitors-callout h3 {
    margin-bottom: 0.85rem;
    color: var(--si-color-navy);
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.22;
    text-transform: none;
}

body.page-id-5884 .si-monitors-callout p:last-child {
    margin-bottom: 0;
}

body.page-id-5884 .si-monitors-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-5884 .si-monitors-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

body.page-id-5884 .si-monitors-application-grid span {
    display: flex;
    align-items: center;
    min-height: 4.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(13, 92, 159, 0.1);
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-navy);
    font-weight: 700;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.07);
}

body.page-id-5884 .si-monitors-products {
    margin-bottom: 5rem;
}

body.page-id-5884 .si-monitors-product-grid {
    border: 1px dashed rgba(13, 92, 159, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 1.25rem;
}

body.page-id-5884 .si-monitors-product-grid > .woocommerce {
    display: block;
    font-size: 1rem;
}

body.page-id-5884 .si-monitors-product-grid .woocommerce ul.products.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-bottom: 0;
}

body.page-id-5884 .si-monitors-product-grid .woocommerce ul.products.row > li.product {
    width: 100%;
    max-width: 100%;
}

body.page-id-5884 .si-monitors-product-grid .si-shop-card {
    min-height: 100%;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(12, 24, 37, 0.1);
}

body.page-id-5884 .si-monitors-product-grid .button,
body.page-id-5884 .si-monitors-product-grid .btn {
    border-radius: 8px !important;
}

body.page-id-5884 .si-monitors-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4.5rem 1.5rem;
    background:
        linear-gradient(180deg, rgba(13, 92, 159, 0.08), rgba(247, 250, 252, 0.96)),
        #f7fafc;
}

body.page-id-5884 .si-monitors-contact__inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(12, 24, 37, 0.1);
}

body.page-id-5884 .si-monitors-contact .si-monitors-section__header {
    margin-bottom: 2rem;
}

body.page-id-5884 .si-monitors-form .wpcf7-form {
    margin-bottom: 0;
}

body.page-id-5884 .si-monitors-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    align-items: start;
}

body.page-id-5884 .si-monitors-form label {
    color: var(--si-color-navy);
    font-weight: 800;
}

body.page-id-5884 .si-monitors-form .form-control,
body.page-id-5884 .si-monitors-form .form-select {
    min-height: 3rem;
    border-color: rgba(13, 92, 159, 0.18);
    border-radius: 8px;
    background: #fbfdff;
}

body.page-id-5884 .si-monitors-form textarea.form-control {
    min-height: 9rem;
}

body.page-id-5884 .si-monitors-form .wpcf7-submit {
    min-width: 12rem;
    border-radius: 8px !important;
}

@media (min-width: 768px) {
    body.page-id-5884 .si-monitors-product-grid .woocommerce ul.products.row > li.product {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    body.page-id-5884 .si-monitors-hero {
        min-height: 320px;
        margin-bottom: 3rem;
        padding-block: 3.5rem;
    }

    body.page-id-5884 .si-monitors-hero h1 {
        font-size: 2.35rem;
    }

    body.page-id-5884 .si-monitors-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-5884 .si-monitors-section {
        margin-bottom: 3.5rem;
        padding-inline: 1rem;
    }

    body.page-id-5884 .si-monitors-intro,
    body.page-id-5884 .si-monitors-application-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-5884 .si-monitors-intro__copy h2,
    body.page-id-5884 .si-monitors-section__header h2,
    body.page-id-5884 .si-monitors-contact h2 {
        font-size: 1.9rem;
    }

    body.page-id-5884 .si-monitors-callout,
    body.page-id-5884 .si-monitors-product-grid,
    body.page-id-5884 .si-monitors-contact__inner {
        padding: 1.25rem;
    }

    body.page-id-5884 .si-monitors-contact {
        padding: 3.5rem 1rem;
    }
}

body.page-id-5927 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, var(--si-color-background) 100%);
}

body.page-id-5927 article > header {
    display: none;
}

body.page-id-5927 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-5927 .si-aerospace-hero {
    width: 100vw;
    min-height: 400px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.82), rgba(6, 10, 14, 0.28)),
        url("https://www.scientificinstruments.com/wp-content/uploads/revslider/si-applications/SliderBG_Space-1200x720.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-5927 .si-aerospace-hero__content,
body.page-id-5927 .si-aerospace-section,
body.page-id-5927 .si-aerospace-contact__inner {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-5927 .si-aerospace-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-5927 .si-aerospace-hero .si-aerospace-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-5927 .si-aerospace-hero h1 {
    max-width: 820px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5927 .si-aerospace-hero h1 + p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-5927 .si-aerospace-section {
    margin-bottom: 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-5927 .si-aerospace-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

body.page-id-5927 .si-aerospace-overview__copy h2,
body.page-id-5927 .si-aerospace-section__header h2,
body.page-id-5927 .si-aerospace-contact h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2.25rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5927 .si-aerospace-overview__copy p,
body.page-id-5927 .si-aerospace-section__header p,
body.page-id-5927 .si-aerospace-feature__copy {
    color: var(--si-color-muted);
}

body.page-id-5927 .si-aerospace-overview__copy a:not(.btn),
body.page-id-5927 .si-aerospace-feature__copy a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-5927 .si-aerospace-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

body.page-id-5927 .si-aerospace-actions .btn,
body.page-id-5927 .si-aerospace-product-card .btn,
body.page-id-5927 .si-aerospace-form .btn {
    border-radius: 8px !important;
}

body.page-id-5927 .si-aerospace-actions .btn-si-light,
body.page-id-5927 .si-aerospace-product-card .btn-si-light {
    border: 1px solid rgba(13, 92, 159, 0.22);
    background: #ffffff;
    color: var(--si-color-blue-700);
    box-shadow: none;
}

body.page-id-5927 .si-aerospace-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-5927 .si-aerospace-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page-id-5927 .si-aerospace-product-card:hover,
body.page-id-5927 .si-aerospace-product-card:focus-within {
    border-color: rgba(1, 90, 156, 0.26);
    box-shadow: 0 22px 44px rgba(12, 24, 37, 0.14);
    transform: translateY(-3px);
}

body.page-id-5927 .si-aerospace-product-card--wide {
    grid-column: 1 / -1;
}

body.page-id-5927 .si-aerospace-product-card__image {
    display: block;
    overflow: hidden;
    background: #eef3f8;
}

body.page-id-5927 .si-aerospace-product-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    transition: transform 0.25s ease;
}

body.page-id-5927 .si-aerospace-product-card--wide .si-aerospace-product-card__image img {
    aspect-ratio: 16 / 7;
}

body.page-id-5927 .si-aerospace-product-card:hover .si-aerospace-product-card__image img,
body.page-id-5927 .si-aerospace-product-card:focus-within .si-aerospace-product-card__image img {
    transform: scale(1.03);
}

body.page-id-5927 .si-aerospace-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
}

body.page-id-5927 .si-aerospace-product-card h3 {
    margin-bottom: auto;
    color: var(--si-color-navy);
    font-size: 1.12rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5927 .si-aerospace-nasa {
    margin-bottom: 4rem;
}

body.page-id-5927 .si-aerospace-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-5927 .si-aerospace-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(12, 24, 37, 0.08);
}

body.page-id-5927 .si-aerospace-feature:last-child {
    margin-bottom: 0;
}

body.page-id-5927 .si-aerospace-feature__copy p {
    margin-bottom: 1rem;
}

body.page-id-5927 .si-aerospace-feature__media {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: #eef3f8;
}

body.page-id-5927 .si-aerospace-feature__media img {
    width: 100%;
    max-height: 30rem;
    object-fit: cover;
    object-position: center;
}

body.page-id-5927 .si-aerospace-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4.5rem 1.5rem;
    background: linear-gradient(180deg, #eaf1f7 0%, #f7fafc 100%);
}

body.page-id-5927 .si-aerospace-contact__inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-5927 .si-aerospace-contact .si-aerospace-section__header {
    margin-bottom: 1.5rem;
}

body.page-id-5927 .si-aerospace-form .wpcf7-form {
    margin: 0;
}

body.page-id-5927 .si-aerospace-form .row {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
}

body.page-id-5927 .si-aerospace-form label {
    color: var(--si-color-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

body.page-id-5927 .si-aerospace-form .form-control,
body.page-id-5927 .si-aerospace-form .form-select {
    min-height: 2.65rem;
    border-color: rgba(12, 24, 37, 0.14);
    border-radius: 8px;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.page-id-5927 .si-aerospace-form textarea.form-control {
    min-height: 8rem;
}

body.page-id-5927 .si-aerospace-form .wpcf7-submit {
    min-width: 9rem;
}

@media (max-width: 767.98px) {
    body.page-id-5927 .si-aerospace-hero {
        min-height: 320px;
        margin-bottom: 3rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-5927 .si-aerospace-hero h1 {
        font-size: 2.35rem;
    }

    body.page-id-5927 .si-aerospace-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-5927 .si-aerospace-section {
        margin-bottom: 3.25rem;
        padding-inline: 1rem;
    }

    body.page-id-5927 .si-aerospace-overview,
    body.page-id-5927 .si-aerospace-product-grid,
    body.page-id-5927 .si-aerospace-feature {
        grid-template-columns: 1fr;
    }

    body.page-id-5927 .si-aerospace-overview__copy h2,
    body.page-id-5927 .si-aerospace-section__header h2,
    body.page-id-5927 .si-aerospace-contact h2 {
        font-size: 1.9rem;
    }

    body.page-id-5927 .si-aerospace-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-id-5927 .si-aerospace-product-card--wide {
        grid-column: auto;
    }

    body.page-id-5927 .si-aerospace-product-card--wide .si-aerospace-product-card__image img {
        aspect-ratio: 4 / 3;
    }

    body.page-id-5927 .si-aerospace-feature--reverse .si-aerospace-feature__media {
        order: 2;
    }

    body.page-id-5927 .si-aerospace-contact {
        padding: 3.25rem 1rem;
    }

    body.page-id-5927 .si-aerospace-contact__inner {
        padding: 1.25rem;
    }
}

body.page-id-5939 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, var(--si-color-background) 100%);
}

body.page-id-5939 article > header {
    display: none;
}

body.page-id-5939 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-5939 .si-lng-hero {
    width: 100vw;
    min-height: 380px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.78), rgba(6, 10, 14, 0.34)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/07/pageBackgrounds-LTGTank-1200x720.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-5939 .si-lng-hero__content,
body.page-id-5939 .si-lng-section,
body.page-id-5939 .si-lng-contact__inner {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-5939 .si-lng-eyebrow,
body.page-id-5939 .si-lng-product__eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-5939 .si-lng-hero .si-lng-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-5939 .si-lng-hero h1 {
    max-width: 780px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5939 .si-lng-hero h1 + p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-5939 .si-lng-section {
    margin-bottom: 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-5939 .si-lng-system {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

body.page-id-5939 .si-lng-system__copy h2,
body.page-id-5939 .si-lng-section__header h2,
body.page-id-5939 .si-lng-contact h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2.25rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5939 .si-lng-system__copy p,
body.page-id-5939 .si-lng-section__header p,
body.page-id-5939 .si-lng-product p {
    color: var(--si-color-muted);
}

body.page-id-5939 .si-lng-system__copy a:not(.btn),
body.page-id-5939 .si-lng-product__link {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-5939 .si-lng-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

body.page-id-5939 .si-lng-actions .btn,
body.page-id-5939 .si-lng-product .btn,
body.page-id-5939 .si-lng-form .btn {
    border-radius: 8px !important;
}

body.page-id-5939 .si-lng-actions .btn-si-light {
    border: 1px solid rgba(13, 92, 159, 0.22);
    background: #ffffff;
    color: var(--si-color-blue-700);
    box-shadow: none;
}

body.page-id-5939 .si-lng-product {
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.12);
}

body.page-id-5939 .si-lng-product__image {
    display: block;
    overflow: hidden;
    background: #eef3f8;
}

body.page-id-5939 .si-lng-product__image img {
    width: 100%;
    max-height: 33rem;
    object-fit: cover;
    object-position: center;
}

body.page-id-5939 .si-lng-product__body {
    padding: 1.35rem;
}

body.page-id-5939 .si-lng-product h3 {
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5939 .si-lng-product p:last-of-type {
    margin-bottom: 1rem;
}

body.page-id-5939 .si-lng-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-5939 .si-lng-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

body.page-id-5939 .si-lng-video-panel {
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(12, 24, 37, 0.1);
}

body.page-id-5939 .si-lng-video-panel iframe {
    border: 0;
}

body.page-id-5939 .si-lng-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4.5rem 1.5rem;
    background: linear-gradient(180deg, #eaf1f7 0%, #f7fafc 100%);
}

body.page-id-5939 .si-lng-contact__inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-5939 .si-lng-contact .si-lng-section__header {
    margin-bottom: 1.5rem;
}

body.page-id-5939 .si-lng-form .wpcf7-form {
    margin: 0;
}

body.page-id-5939 .si-lng-form .row {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
}

body.page-id-5939 .si-lng-form label {
    color: var(--si-color-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

body.page-id-5939 .si-lng-form .form-control,
body.page-id-5939 .si-lng-form .form-select {
    min-height: 2.65rem;
    border-color: rgba(12, 24, 37, 0.14);
    border-radius: 8px;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.page-id-5939 .si-lng-form textarea.form-control {
    min-height: 8rem;
}

body.page-id-5939 .si-lng-form .wpcf7-submit {
    min-width: 9rem;
}

@media (max-width: 767.98px) {
    body.page-id-5939 .si-lng-hero {
        min-height: 320px;
        margin-bottom: 3rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-5939 .si-lng-hero h1 {
        font-size: 2.35rem;
    }

    body.page-id-5939 .si-lng-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-5939 .si-lng-section {
        margin-bottom: 3.25rem;
        padding-inline: 1rem;
    }

    body.page-id-5939 .si-lng-system,
    body.page-id-5939 .si-lng-video-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-5939 .si-lng-system__copy h2,
    body.page-id-5939 .si-lng-section__header h2,
    body.page-id-5939 .si-lng-contact h2 {
        font-size: 1.9rem;
    }

    body.page-id-5939 .si-lng-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-id-5939 .si-lng-contact {
        padding: 3.25rem 1rem;
    }

    body.page-id-5939 .si-lng-contact__inner {
        padding: 1.25rem;
    }
}

body.page-id-5934 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, var(--si-color-background) 100%);
}

body.page-id-5934 article > header {
    display: none;
}

body.page-id-5934 .entry-content.lead {
    font-size: 1rem;
}

body.page-id-5934 .si-sensors-hero {
    width: 100vw;
    min-height: 380px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.78), rgba(6, 10, 14, 0.34)),
        url("https://www.scientificinstruments.com/wp-content/uploads/revslider/si-applications/SlideBG_MRI-1200x720.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.page-id-5934 .si-sensors-hero__content,
body.page-id-5934 .si-sensors-section,
body.page-id-5934 .si-sensors-contact__inner {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

body.page-id-5934 .si-sensors-eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-blue-700);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.page-id-5934 .si-sensors-hero .si-sensors-eyebrow {
    color: var(--si-color-gold);
}

body.page-id-5934 .si-sensors-hero h1 {
    max-width: 820px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5934 .si-sensors-hero h1 + p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.page-id-5934 .si-sensors-section {
    margin-bottom: 4.5rem;
    padding-inline: 1.5rem;
}

body.page-id-5934 .si-sensors-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

body.page-id-5934 .si-sensors-section__header h2,
body.page-id-5934 .si-sensors-workhorse__copy h2,
body.page-id-5934 .si-sensors-contact h2 {
    margin-bottom: 1rem;
    color: var(--si-color-navy);
    font-size: 2.25rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5934 .si-sensors-intro__copy,
body.page-id-5934 .si-sensors-workhorse__copy {
    color: var(--si-color-muted);
}

body.page-id-5934 .si-sensors-intro__copy a,
body.page-id-5934 .si-sensors-workhorse__copy a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.page-id-5934 .si-sensors-workhorse {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

body.page-id-5934 .si-sensors-workhorse__media {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.12);
}

body.page-id-5934 .si-sensors-workhorse__media img {
    width: 100%;
    min-height: 20rem;
    object-fit: cover;
}

body.page-id-5934 .si-sensors-products {
    margin-bottom: 4rem;
}

body.page-id-5934 .si-sensors-section__header {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

body.page-id-5934 .si-sensors-section__header p {
    color: var(--si-color-muted);
}

body.page-id-5934 .si-sensors-product-grid > .woocommerce {
    display: block;
    font-size: 1rem;
}

body.page-id-5934 .si-sensors-product-grid .woocommerce ul.products.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    width: 100%;
    margin-top: calc(0.75rem - var(--bs-gutter-y));
    margin-bottom: 0;
}

body.page-id-5934 .si-sensors-product-grid .woocommerce ul.products.row > li.product {
    flex: 0 0 auto;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-top: var(--bs-gutter-y);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

body.page-id-5934 .si-sensors-product-grid .si-shop-card {
    overflow: hidden;
    border-color: rgba(18, 24, 37, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page-id-5934 .si-sensors-product-grid .si-shop-card:hover,
body.page-id-5934 .si-sensors-product-grid .si-shop-card:focus-within {
    border-color: rgba(1, 90, 156, 0.26) !important;
    box-shadow: 0 22px 44px rgba(12, 24, 37, 0.14) !important;
    transform: translateY(-3px);
}

body.page-id-5934 .si-sensors-product-grid .si-shop-card > a > .ratio {
    border-color: rgba(18, 24, 37, 0.08) !important;
    border-radius: 8px !important;
    background: #f7f9fc !important;
}

body.page-id-5934 .si-sensors-product-grid .si-shop-card .woocommerce-loop-product__title {
    min-height: 2.4rem;
    color: var(--si-color-navy);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

body.page-id-5934 .si-sensors-product-grid .si-shop-card .button.btn {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    border-radius: 8px !important;
    font-size: 0.78rem;
    letter-spacing: 0;
    padding-inline: 1rem;
}

body.page-id-5934 .si-sensors-contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4.5rem 1.5rem;
    background: linear-gradient(180deg, #eaf1f7 0%, #f7fafc 100%);
}

body.page-id-5934 .si-sensors-contact__inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(12, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.page-id-5934 .si-sensors-contact .si-sensors-section__header {
    margin-bottom: 1.5rem;
}

body.page-id-5934 .si-sensors-form .wpcf7-form {
    margin: 0;
}

body.page-id-5934 .si-sensors-form .row {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
}

body.page-id-5934 .si-sensors-form label {
    color: var(--si-color-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

body.page-id-5934 .si-sensors-form .form-control,
body.page-id-5934 .si-sensors-form .form-select {
    min-height: 2.65rem;
    border-color: rgba(12, 24, 37, 0.14);
    border-radius: 8px;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.page-id-5934 .si-sensors-form textarea.form-control {
    min-height: 8rem;
}

body.page-id-5934 .si-sensors-form .wpcf7-submit {
    min-width: 9rem;
}

@media (min-width: 576px) {
    body.page-id-5934 .si-sensors-product-grid .woocommerce ul.products.row > li.product {
        width: 50%;
    }
}

@media (min-width: 992px) {
    body.page-id-5934 .si-sensors-product-grid .woocommerce ul.products.row > li.product {
        width: 33.333333%;
    }
}

@media (max-width: 767.98px) {
    body.page-id-5934 .si-sensors-hero {
        min-height: 320px;
        margin-bottom: 3rem;
        padding: 4rem 1.25rem;
    }

    body.page-id-5934 .si-sensors-hero h1 {
        font-size: 2.35rem;
    }

    body.page-id-5934 .si-sensors-hero h1 + p {
        font-size: 1rem;
    }

    body.page-id-5934 .si-sensors-section {
        margin-bottom: 3.25rem;
        padding-inline: 1rem;
    }

    body.page-id-5934 .si-sensors-intro,
    body.page-id-5934 .si-sensors-workhorse {
        grid-template-columns: 1fr;
    }

    body.page-id-5934 .si-sensors-section__header h2,
    body.page-id-5934 .si-sensors-workhorse__copy h2,
    body.page-id-5934 .si-sensors-contact h2 {
        font-size: 1.9rem;
    }

    body.page-id-5934 .si-sensors-workhorse__media img {
        min-height: 14rem;
    }

    body.page-id-5934 .si-sensors-contact {
        padding: 3.25rem 1rem;
    }

    body.page-id-5934 .si-sensors-contact__inner {
        padding: 1.25rem;
    }
}

/* WooCommerce product configurator */
body.single-product .entry-content.lead {
    font-size: 1rem;
}

body.single-product .woocommerce-product-gallery {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.single-product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 1rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(36, 181, 234, 0.12), transparent 32%),
        linear-gradient(180deg, #f9fcff 0%, #edf4fb 100%);
    box-shadow: inset 0 0 0 1px rgba(13, 92, 159, 0.08);
    overflow: hidden;
}

body.single-product .woocommerce-product-gallery__wrapper {
    margin: 0;
}

body.single-product .woocommerce-product-gallery__image {
    border-radius: 24px;
    overflow: hidden;
}

body.single-product .woocommerce-product-gallery__image a {
    min-height: clamp(340px, 42vw, 560px);
}

body.single-product .woocommerce-product-gallery__image img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    margin: 0 auto;
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs {
    padding-left: 0;
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li {
    margin: 0;
    padding: 0.55rem;
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li:hover,
body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li:focus-within {
    transform: translateY(-2px);
    border-color: rgba(36, 181, 234, 0.45);
    box-shadow: 0 16px 28px rgba(12, 24, 37, 0.12);
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0.65rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    object-fit: contain;
    opacity: 0.82;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img:hover,
body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img:focus {
    opacity: 1;
}

body.single-product .woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active {
    opacity: 1;
    box-shadow: inset 0 0 0 2px rgba(36, 181, 234, 0.55);
}

body.single-product .summary.entry-summary {
    display: block;
}

body.single-product .summary.entry-summary > .price,
body.single-product .si-product-summary-top > .price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--si-color-navy);
}

body.single-product .product-type-simple .summary.entry-summary > form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
    clear: both;
    margin: 1.35rem 0 0;
    padding: 0.95rem;
    border: 1px solid rgba(13, 92, 159, 0.14);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 14px 32px rgba(12, 24, 37, 0.1);
}

body.single-product .product-type-simple .summary.entry-summary > form.cart .quantity {
    display: flex;
    align-items: stretch;
    margin: 0;
}

body.single-product .product-type-simple .summary.entry-summary > form.cart input.qty {
    width: 4.8rem;
    min-height: 3rem;
    padding: 0.58rem 0.7rem;
    border: 1px solid rgba(13, 92, 159, 0.24);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: inset 0 1px 2px rgba(12, 24, 37, 0.06);
    color: var(--si-color-navy);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

body.single-product .product-type-simple .summary.entry-summary > form.cart input.qty:focus {
    border-color: var(--si-color-cyan);
    box-shadow: 0 0 0 3px rgba(36, 181, 234, 0.18);
    outline: 0;
}

body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 1.45rem;
    border: 0;
    border-radius: 999px;
    background: #ffd400;
    box-shadow: 0 14px 26px rgba(255, 212, 0, 0.26);
    color: var(--si-color-navy) !important;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.1;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt:hover,
body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt:focus {
    background: #ffe04d;
    box-shadow: 0 18px 34px rgba(255, 212, 0, 0.34);
    color: var(--si-color-navy) !important;
    transform: translateY(-1px);
}

body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt:focus-visible {
    outline: 3px solid rgba(36, 181, 234, 0.35);
    outline-offset: 2px;
}

body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt.disabled,
body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt:disabled,
body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt.loading {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

body.single-product .summary.entry-summary > p.stock.out-of-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: 100%;
    margin: 1.25rem 0 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(224, 190, 0, 0.32);
    border-left: 4px solid var(--si-color-gold);
    border-radius: 8px;
    background: linear-gradient(180deg, #fffdf4 0%, #fff9e6 100%);
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.08);
    color: var(--si-color-navy);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
}

body.single-product .summary.entry-summary > p.stock.out-of-stock::before {
    content: "\f06a";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 8px;
    background: rgba(224, 190, 0, 0.2);
    color: var(--si-color-blue-700);
    font-family: "Font Awesome 6 Free";
    font-size: 0.9rem;
    font-weight: 900;
}

body.single-product .woocommerce-product-details__short-description,
body.single-product form.variations_form,
body.single-product .woocommerce-tabs,
body.single-product .related.products {
    background: var(--si-color-surface);
    border-radius: var(--si-radius-md);
    box-shadow: var(--si-shadow-sm);
}

body.single-product .woocommerce-product-details__short-description {
    padding: 1.5rem;
}

body.single-product .woocommerce-product-documents h3,
body.single-product .woocommerce-tabs h2,
body.single-product .related.products > h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

body.single-product .woocommerce-product-documents {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 92, 159, 0.12);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

body.single-product .woocommerce-product-documents-title {
    margin-bottom: 0;
}

body.single-product .woocommerce-product-documents__section {
    display: grid;
    gap: 0.85rem;
}

body.single-product .woocommerce-product-documents__section-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--si-color-navy);
}

body.single-product .woocommerce-product-documents ul {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.single-product .woocommerce-product-documents li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.5rem;
    padding: 0.9rem 1rem 0.9rem 3.75rem;
    border: 1px solid rgba(13, 92, 159, 0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.06);
}

body.single-product .woocommerce-product-documents li::before {
    content: "\f1c1";
    position: absolute;
    left: 1rem;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 12px;
    background: rgba(13, 92, 159, 0.12);
    color: var(--si-color-blue-600);
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
    font-weight: 900;
    transform: translateY(-50%);
}

body.single-product .woocommerce-product-documents li a {
    color: var(--si-color-blue-700);
    font-weight: 700;
    line-height: 1.4;
}

body.single-product .woocommerce-product-documents li a:hover,
body.single-product .woocommerce-product-documents li a:focus {
    color: var(--si-color-navy);
}

body.single-product.postid-1282 .site-main {
    padding-top: 0 !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 44%, var(--si-color-background) 100%);
}

body.single-product.postid-1282 article > header {
    width: 100vw;
    min-height: 300px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 3.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.82), rgba(6, 10, 14, 0.32)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2019/05/ScientificInstrumentsScientific_Instruments__081-1.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 4.5rem 1.5rem;
    text-align: left !important;
}

body.single-product.postid-1282 article > header h1 {
    width: min(100%, 1120px);
    margin: 0 auto;
    color: #ffffff;
    font-size: 3.1rem;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: none;
}

body.single-product.postid-1282 article > header h1::before {
    content: "Aircraft Temperature Measurement";
    display: block;
    margin-bottom: 0.8rem;
    color: var(--si-color-gold);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.single-product.postid-1282 article > header .mb-4 {
    display: none;
}

body.single-product.postid-1282 .entry-content.lead {
    font-size: 1rem;
}

body.single-product.postid-1282 .si-product-layout {
    margin-bottom: 4rem;
}

body.single-product.postid-1282 .woocommerce-product-gallery .flex-viewport {
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(13, 92, 159, 0.14), transparent 34%),
        linear-gradient(180deg, #f9fcff 0%, #edf4fb 100%);
    box-shadow:
        inset 0 0 0 1px rgba(13, 92, 159, 0.08),
        0 18px 40px rgba(12, 24, 37, 0.1);
}

body.single-product.postid-1282 .woocommerce-product-gallery__image {
    border-radius: 8px;
}

body.single-product.postid-1282 .woocommerce-product-gallery__image a {
    min-height: clamp(300px, 34vw, 470px);
}

body.single-product.postid-1282 .woocommerce-product-gallery__image img {
    max-height: 400px;
}

body.single-product.postid-1282 .woocommerce-product-gallery ol.flex-control-thumbs {
    gap: 0.75rem;
}

body.single-product.postid-1282 .woocommerce-product-gallery ol.flex-control-thumbs li {
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(12, 24, 37, 0.09);
}

body.single-product.postid-1282 .woocommerce-product-gallery ol.flex-control-thumbs li img {
    border-radius: 8px;
}

body.single-product.postid-1282 .woocommerce-product-details__short-description {
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 37, 0.1);
}

body.single-product.postid-1282 .si-product-description-body p {
    color: var(--si-color-muted);
    font-size: 1rem;
    line-height: 1.72;
}

body.single-product.postid-1282 .si-product-description-body a {
    color: var(--si-color-blue-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

body.single-product.postid-1282 .woocommerce-product-documents {
    gap: 1rem;
    margin-top: 1.35rem;
    padding-top: 1.2rem;
}

body.single-product.postid-1282 .woocommerce-product-documents__section-title {
    color: var(--si-color-navy);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

body.single-product.postid-1282 .woocommerce-product-documents li {
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 24px rgba(12, 24, 37, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.single-product.postid-1282 .woocommerce-product-documents li:hover,
body.single-product.postid-1282 .woocommerce-product-documents li:focus-within {
    border-color: rgba(1, 90, 156, 0.24);
    box-shadow: 0 16px 30px rgba(12, 24, 37, 0.1);
    transform: translateY(-2px);
}

body.single-product.postid-1282 .woocommerce-product-documents li::before {
    border-radius: 8px;
}

body.single-product.postid-1282 .product_meta {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
}

body.single-product.postid-1282 .product_meta > span,
body.single-product.postid-1282 .product_meta a {
    font-size: 0.9rem;
}

body.single-product.postid-1282 .product_meta a {
    color: var(--si-color-blue-700);
    font-weight: 800;
}

@media (max-width: 767.98px) {
    body.single-product.postid-1282 article > header {
        min-height: 260px;
        margin-bottom: 2.75rem !important;
        padding: 3.75rem 1.25rem;
    }

    body.single-product.postid-1282 article > header h1 {
        font-size: 2.35rem;
    }

    body.single-product.postid-1282 .si-product-layout {
        margin-bottom: 3rem;
    }

    body.single-product.postid-1282 .woocommerce-product-gallery__image a {
        min-height: 260px;
    }

    body.single-product.postid-1282 .woocommerce-product-details__short-description {
        padding: 1.25rem;
    }
}

body.single-product form.variations_form {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

body.single-product form.variations_form table.variations,
body.single-product form.variations_form table.variations tbody,
body.single-product form.variations_form table.variations tr,
body.single-product form.variations_form table.variations td {
    display: block;
    width: 100%;
}

body.single-product form.variations_form table.variations {
    margin: 0;
    border: 0;
}

body.single-product .si-variation-row + .si-variation-row {
    margin-top: 1rem;
}

body.single-product .si-variation-row .label,
body.single-product .si-variation-row .value {
    padding: 0;
}

body.single-product .si-variation-row .value {
    display: grid;
    gap: 0.75rem;
}

body.single-product .si-variation-row {
    padding: 1.1rem 1.15rem 1.2rem;
    border: 1px solid rgba(13, 92, 159, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.single-product .si-variation-row.is-active {
    border-color: rgba(36, 181, 234, 0.6);
    box-shadow: 0 18px 36px rgba(13, 92, 159, 0.12);
    transform: translateY(-2px);
}

body.single-product .si-variation-row.is-complete {
    border-color: rgba(14, 121, 84, 0.26);
    background: linear-gradient(180deg, #ffffff 0%, #f6fcfa 100%);
}

body.single-product .si-variation-row label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--si-color-navy);
}

body.single-product .si-variation-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--si-color-blue-600), var(--si-color-cyan));
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: normal;
}

body.single-product .si-variation-help {
    margin: 0;
    font-size: 0.92rem;
    color: var(--si-color-muted);
}

body.single-product .si-variation-select,
body.single-product form.variations_form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.45rem 2.35rem 0.45rem 0.72rem;
    border: 1px solid rgba(18, 24, 37, 0.14);
    border-radius: 11px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.25 4.5L6 8.25L9.75 4.5' stroke='%230d5c9f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 0.8rem center;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    box-shadow: inset 0 1px 2px rgba(12, 24, 37, 0.04);
    color: var(--si-color-navy);
    font-size: 0.86rem;
    line-height: 1.25;
    font-weight: 600;
}

body.single-product .si-variation-select::-ms-expand,
body.single-product form.variations_form select::-ms-expand {
    display: none;
}

body.single-product .si-variation-select:focus,
body.single-product form.variations_form select:focus {
    outline: none;
    border-color: rgba(36, 181, 234, 0.75);
    box-shadow: 0 0 0 4px rgba(36, 181, 234, 0.14);
}

body.single-product .si-variation-summary {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.35rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(224, 190, 0, 0.16), transparent 32%),
        linear-gradient(180deg, #152035 0%, #0c1621 100%);
    box-shadow: var(--si-shadow-md);
    color: #ffffff;
}

body.single-product .si-variation-summary__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

body.single-product .si-variation-summary__headline {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: flex-start;
}

body.single-product .si-variation-summary__topline {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: space-between;
}

body.single-product .si-variation-summary__headline h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
}

body.single-product .si-variation-summary__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

body.single-product .si-variation-summary.is-complete .si-variation-summary__badge {
    background: rgba(224, 190, 0, 0.2);
    color: #ffe37a;
}

body.single-product .si-variation-summary__intro,
body.single-product .si-variation-summary__availability,
body.single-product .si-variation-summary__availability p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

body.single-product .si-variation-summary__meta {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

body.single-product .si-variation-summary__price,
body.single-product .si-variation-summary__price .price {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

body.single-product .si-variation-summary__price-label {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.single-product .si-variation-summary__empty {
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

body.single-product .si-variation-summary__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.single-product .si-variation-summary__item {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

body.single-product .si-variation-summary__item-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.single-product .si-variation-summary__item-value {
    max-width: 65%;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
}

body.single-product .si-variation-summary__item.is-complete .si-variation-summary__item-value {
    color: #ffe37a;
}

body.single-product .si-variation-summary__actions {
    display: flex;
    justify-content: flex-end;
}

body.single-product .si-variation-summary__purchase {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body.single-product .si-variation-summary__purchase .variations_button {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: stretch;
}

body.single-product .si-variation-summary__purchase .quantity {
    margin: 0;
}

body.single-product .si-variation-summary__purchase .quantity input.qty {
    min-height: 2.45rem;
    min-width: 3.45rem;
    padding: 0.4rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.98);
    font-size: 0.86rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--si-color-navy);
}

body.single-product .si-variation-summary__purchase .single_add_to_cart_button.button.alt {
    min-height: 2.45rem;
    padding-inline: 0.9rem;
    font-size: 0.78rem;
}

body.single-product .si-reset-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.single-product .si-reset-link:hover,
body.single-product .si-reset-link:focus {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
}

body.single-product .si-variation-purchase {
    display: none !important;
}

body.single-product .product_meta {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 92, 159, 0.12);
}

body.single-product .product_meta > span {
    color: var(--si-color-muted);
}

body.single-product .woocommerce-product-details__short-description > .product_meta:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.single-product .woocommerce-product-details__short-description > .woocommerce-product-documents:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.single-product .si-product-description-body > :last-child {
    margin-bottom: 0;
}

body.single-product .woocommerce-tabs {
    padding: 1.5rem;
}

body.single-product .wc-tabs {
    display: flex;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

body.single-product .wc-tabs li {
    margin: 0;
}

body.single-product .wc-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--si-color-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--si-color-navy);
}

body.single-product table.shop_attributes {
    border-collapse: separate;
    border-spacing: 0;
}

body.single-product table.shop_attributes th,
body.single-product table.shop_attributes td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(18, 24, 37, 0.08);
}

body.single-product .related.products .btn {
    justify-self: start;
    min-height: 2.35rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    body.single-product .si-variation-summary__topline,
    body.single-product .si-variation-summary__headline,
    body.single-product .si-variation-summary__item,
    body.single-product .si-variation-summary__purchase .variations_button {
        flex-direction: column;
    }

    body.single-product .si-variation-summary__item-value {
        max-width: 100%;
        text-align: left;
    }

    body.single-product .si-variation-summary__actions {
        justify-content: flex-start;
    }

    body.single-product .si-reset-link,
    body.single-product .si-variation-summary__purchase .single_add_to_cart_button.button.alt {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    body.single-product .product-type-simple .summary.entry-summary > form.cart {
        flex-direction: column;
        gap: 0.65rem;
        padding: 0.85rem;
    }

    body.single-product .product-type-simple .summary.entry-summary > form.cart .quantity,
    body.single-product .product-type-simple .summary.entry-summary > form.cart input.qty,
    body.single-product .product-type-simple .summary.entry-summary > form.cart .single_add_to_cart_button.button.alt {
        width: 100%;
    }
}

body.woocommerce-shop .site-main {
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 34%, var(--si-color-background) 100%);
    padding-top: 0 !important;
}

body.woocommerce-shop article > header {
    display: none;
}

body.woocommerce-shop .si-shop-hero {
    width: 100vw;
    min-height: 360px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6, 10, 14, 0.8), rgba(6, 10, 14, 0.38)),
        url("https://www.scientificinstruments.com/wp-content/uploads/2014/10/Header-Product-01.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 5rem 1.5rem;
}

body.woocommerce-shop .si-shop-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
}

body.woocommerce-shop .si-shop-hero__eyebrow {
    margin-bottom: 0.75rem;
    color: var(--si-color-gold);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.woocommerce-shop .si-shop-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 3.4rem;
    letter-spacing: 0;
    text-transform: none;
}

body.woocommerce-shop .si-shop-hero h1 + p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

body.woocommerce-shop .entry-content.lead > .woocommerce.si-shop-directory {
    display: block;
    font-size: 1rem;
}

body.woocommerce-shop .si-shop-directory__intro {
    max-width: 72rem;
    margin: 0 auto 1.25rem;
    padding: 1rem 0 0.25rem;
}

body.woocommerce-shop .si-shop-directory__eyebrow,
body.woocommerce-shop .si-shop-category__count {
    margin-bottom: 0.35rem;
    color: var(--si-color-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

body.woocommerce-shop .si-shop-directory__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body.woocommerce-shop .si-shop-directory__summary p {
    max-width: 44rem;
    margin: 0;
    color: var(--si-color-muted);
    font-size: 1rem;
}

body.woocommerce-shop .si-shop-directory__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 72rem;
    margin: 0 auto 1.75rem;
    padding: 0 0 1.35rem;
    border-bottom: 1px solid rgba(18, 24, 37, 0.08);
}

body.woocommerce-shop .si-shop-directory__nav a,
body.woocommerce-shop .si-shop-category__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

body.woocommerce-shop .si-shop-directory__nav a {
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(18, 24, 37, 0.1);
    background: #ffffff;
    color: var(--si-color-navy);
}

body.woocommerce-shop .si-shop-directory__nav a:hover,
body.woocommerce-shop .si-shop-directory__nav a:focus {
    border-color: rgba(1, 90, 156, 0.28);
    color: var(--si-color-blue-700);
}

body.woocommerce-shop .si-shop-category {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.4rem 0;
    border-top: 1px solid rgba(18, 24, 37, 0.08);
    scroll-margin-top: 7rem;
}

body.woocommerce-shop .si-shop-category:first-of-type {
    border-top: 0;
    padding-top: 1rem;
}

body.woocommerce-shop .si-shop-category__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

body.woocommerce-shop .si-shop-category__header h2 {
    margin-bottom: 0.45rem;
    color: var(--si-color-navy);
    font-size: 1.55rem;
    letter-spacing: 0;
    text-transform: none;
}

body.woocommerce-shop .si-shop-category__description {
    max-width: 48rem;
    margin: 0;
    color: var(--si-color-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

body.woocommerce-shop .si-shop-category__link {
    flex: 0 0 auto;
    padding: 0.72rem 0.9rem;
    background: var(--si-color-navy);
    color: #ffffff;
}

body.woocommerce-shop .si-shop-category__link:hover,
body.woocommerce-shop .si-shop-category__link:focus {
    background: var(--si-color-blue-700);
    color: #ffffff;
}

body.woocommerce-shop .si-shop-category .products.row {
    margin-top: calc(1rem - var(--bs-gutter-y));
}

body.woocommerce-shop .si-shop-directory__empty {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(18, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
}

body.woocommerce-shop .entry-content.lead > .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

body.woocommerce-shop .woocommerce .woocommerce-notices-wrapper {
    flex: 0 0 100%;
}

body.woocommerce-shop .woocommerce .woocommerce-result-count {
    float: none !important;
    margin: 0 !important;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(18, 24, 37, 0.1);
    border-radius: 8px;
    background: #ffffff;
    color: var(--si-color-muted) !important;
    letter-spacing: 0;
    line-height: 1.2;
}

body.woocommerce-shop .woocommerce .woocommerce-ordering {
    float: none !important;
    min-width: min(100%, 18rem);
    margin: 0 0 0 auto !important;
}

body.woocommerce-shop .woocommerce .woocommerce-ordering select {
    min-height: 2.65rem;
    border-radius: 8px;
    border-color: rgba(18, 24, 37, 0.14);
    background-color: #ffffff;
    box-shadow: none;
    color: var(--si-color-navy);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
}

body.woocommerce-shop .woocommerce ul.products.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    flex: 0 0 100%;
    clear: both;
    width: 100%;
    margin-top: calc(0.5rem - var(--bs-gutter-y));
    margin-bottom: 0;
}

body.woocommerce-shop .woocommerce ul.products.row > li.product {
    flex: 0 0 auto;
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-top: var(--bs-gutter-y);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

body.woocommerce-shop .si-shop-card {
    overflow: hidden;
    border-color: rgba(18, 24, 37, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-shop .si-shop-card:hover,
body.woocommerce-shop .si-shop-card:focus-within {
    border-color: rgba(1, 90, 156, 0.26) !important;
    box-shadow: 0 22px 44px rgba(12, 24, 37, 0.14) !important;
    transform: translateY(-3px);
}

body.woocommerce-shop .si-shop-card > a > .ratio {
    border-color: rgba(18, 24, 37, 0.08) !important;
    border-radius: 8px !important;
    background: #f7f9fc !important;
}

body.woocommerce-shop .woocommerce ul.products li.product .si-shop-card .onsale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 0.85rem !important;
    right: 0.85rem !important;
    left: auto !important;
    bottom: auto !important;
    width: auto;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto;
    margin: 0 !important;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: var(--si-color-gold);
    color: var(--si-color-navy);
    box-shadow: 0 8px 18px rgba(12, 24, 37, 0.16);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
}

body.woocommerce-shop .si-shop-card .woocommerce-loop-product__title {
    min-height: 2.4rem;
    color: var(--si-color-navy);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

body.woocommerce-shop .si-shop-card .woocommerce-loop-product__title a {
    color: inherit;
}

body.woocommerce-shop .si-shop-card__price,
body.woocommerce-shop .si-shop-card__price .price {
    color: var(--si-color-navy);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
}

body.woocommerce-shop .si-shop-card__price del {
    color: var(--si-color-muted);
    opacity: 0.72;
}

body.woocommerce-shop .si-shop-card__price ins {
    color: var(--si-color-blue-700);
    text-decoration: none;
}

body.woocommerce-shop .si-shop-card .button.btn {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    border-radius: 8px !important;
    font-size: 0.78rem;
    letter-spacing: 0;
    padding-inline: 1rem;
}

body.woocommerce-shop .si-shop-card .button.btn.loading {
    opacity: 0.8;
}

@media (max-width: 575.98px) {
    body.woocommerce-shop .si-shop-hero {
        min-height: 320px;
        margin-bottom: 2.75rem;
        padding: 4rem 1.25rem;
    }

    body.woocommerce-shop .si-shop-hero h1 {
        font-size: 2.25rem;
    }

    body.woocommerce-shop .si-shop-hero h1 + p {
        font-size: 1rem;
    }

    body.woocommerce-shop .si-shop-directory__summary,
    body.woocommerce-shop .si-shop-category__header {
        align-items: flex-start;
        flex-direction: column;
    }

    body.woocommerce-shop .si-shop-category__link {
        width: 100%;
    }

    body.woocommerce-shop .si-shop-category {
        padding: 2rem 0;
        scroll-margin-top: 5.5rem;
    }

    body.woocommerce-shop .si-shop-category__header h2 {
        font-size: 1.35rem;
    }

    body.woocommerce-shop .woocommerce .woocommerce-result-count,
    body.woocommerce-shop .woocommerce .woocommerce-ordering {
        width: 100%;
        margin-left: 0 !important;
    }
}

@media (min-width: 576px) {
    body.woocommerce-shop .woocommerce ul.products.row > li.product {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    body.woocommerce-shop .woocommerce ul.products.row > li.product {
        width: 25%;
    }
}

/* WooCommerce cart */
body.woocommerce-cart .site-main {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 247, 251, 0.96) 42%, var(--si-color-background) 100%),
        var(--si-color-background);
}

body.woocommerce-cart article {
    max-width: 76rem;
}

body.woocommerce-cart article > header {
    position: relative;
    margin: 0 0 2rem !important;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(36, 181, 234, 0.18), rgba(224, 190, 0, 0.16)),
        linear-gradient(135deg, var(--si-color-navy-900), var(--si-color-navy));
    box-shadow: var(--si-shadow-md);
}

body.woocommerce-cart article > header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--si-color-cyan);
    pointer-events: none;
}

body.woocommerce-cart article > header h1.visually-hidden {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    border: 0 !important;
    color: #fff;
    font-size: clamp(2.35rem, 6vw, 4.75rem);
    letter-spacing: 0;
    text-align: left;
}

body.woocommerce-cart .entry-content.lead {
    display: block;
    font-size: 1rem;
}

body.woocommerce-cart .entry-content.lead > .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(20rem, 0.82fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info {
    grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info {
    display: block;
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(13, 92, 159, 0.14);
    border-left: 4px solid var(--si-color-blue-700);
    border-radius: 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
    color: var(--si-color-navy);
    font-size: 0.98rem;
    line-height: 1.55;
    list-style: none;
}

body.woocommerce-cart .woocommerce-error::before,
body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before {
    display: none;
}

body.woocommerce-cart .woocommerce-error {
    border-color: rgba(185, 28, 28, 0.18);
    border-left-color: #b91c1c;
    background: #fff7f7;
}

body.woocommerce-cart .woocommerce-error li,
body.woocommerce-cart .woocommerce-message li,
body.woocommerce-cart .woocommerce-info li {
    margin: 0;
    color: inherit;
    list-style: none;
}

body.woocommerce-cart .cart-empty.woocommerce-info {
    max-width: 42rem;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 3.25rem);
    border-left-color: var(--si-color-cyan);
    text-align: center;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    font-weight: 800;
}

body.woocommerce-cart .return-to-shop {
    grid-column: 1 / -1;
    text-align: center;
}

body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce input.button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 8px;
    background: var(--si-color-navy);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(12, 24, 37, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart .woocommerce a.button:focus,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce button.button:focus,
body.woocommerce-cart .woocommerce input.button:hover,
body.woocommerce-cart .woocommerce input.button:focus,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus {
    background: var(--si-color-blue-700);
    color: #fff;
    box-shadow: 0 16px 34px rgba(13, 92, 159, 0.24);
    transform: translateY(-1px);
}

body.woocommerce-cart .woocommerce button.button:disabled,
body.woocommerce-cart .woocommerce button.button:disabled[disabled] {
    background: #d7dde8;
    color: var(--si-color-muted);
    box-shadow: none;
    transform: none;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals {
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
}

body.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1;
}

body.woocommerce-cart table.shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.woocommerce-cart table.shop_table th {
    padding: 1rem;
    border: 0;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    background: var(--si-color-soft);
    color: var(--si-color-navy);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.woocommerce-cart table.shop_table td {
    padding: 1rem;
    border: 0;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    color: var(--si-color-muted);
    vertical-align: middle;
}

body.woocommerce-cart table.shop_table tr:last-child td {
    border-bottom: 0;
}

body.woocommerce-cart table.shop_table .product-remove {
    width: 3rem;
    text-align: center;
}

body.woocommerce-cart table.shop_table .remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #f0f3f8;
    color: var(--si-color-muted) !important;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

body.woocommerce-cart table.shop_table .remove:hover,
body.woocommerce-cart table.shop_table .remove:focus {
    background: #fff0f0;
    color: #b91c1c !important;
}

body.woocommerce-cart table.shop_table .product-thumbnail {
    width: 7rem;
}

body.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 5.75rem;
    height: 4.75rem;
    object-fit: contain;
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: var(--si-color-soft);
}

body.woocommerce-cart table.shop_table .product-name a {
    color: var(--si-color-navy);
    font-weight: 900;
}

body.woocommerce-cart table.shop_table .product-name a:hover,
body.woocommerce-cart table.shop_table .product-name a:focus {
    color: var(--si-color-blue-700);
}

body.woocommerce-cart table.shop_table .product-price,
body.woocommerce-cart table.shop_table .product-subtotal,
body.woocommerce-cart table.shop_table .order-total {
    color: var(--si-color-navy);
    font-weight: 900;
}

body.woocommerce-cart .quantity .qty {
    width: 5rem;
    min-height: 2.55rem;
    border: 1px solid rgba(12, 24, 37, 0.16);
    border-radius: 8px;
    background: #fff;
    color: var(--si-color-navy);
    font-weight: 800;
    text-align: center;
}

body.woocommerce-cart table.shop_table td.actions {
    padding: 1.1rem;
    background: var(--si-color-soft);
}

body.woocommerce-cart table.shop_table td.actions .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.woocommerce-cart table.shop_table td.actions .input-text,
body.woocommerce-cart .cart_totals input.input-text,
body.woocommerce-cart .cart_totals select,
body.woocommerce-cart .select2-container .select2-selection--single {
    min-height: 2.7rem;
    border: 1px solid rgba(12, 24, 37, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--si-color-navy);
}

body.woocommerce-cart table.shop_table td.actions .button {
    margin-left: auto;
}

body.woocommerce-cart .cart-collaterals {
    grid-column: 2;
    width: 100%;
}

body.woocommerce-cart .cart_totals {
    position: sticky;
    top: 6rem;
    width: 100% !important;
    float: none !important;
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0;
    padding: 1.2rem 1.3rem;
    border-top: 4px solid var(--si-color-gold);
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    background: var(--si-color-navy);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
    padding: 1rem 1.25rem;
    background: #fff;
    text-align: left;
}

body.woocommerce-cart .cart_totals table.shop_table th {
    width: 42%;
    color: var(--si-color-muted);
}

body.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
body.woocommerce-cart .cart_totals .shipping-calculator-button,
body.woocommerce-cart .cart_totals .shipping-calculator-form {
    color: var(--si-color-muted);
    font-size: 0.92rem;
}

body.woocommerce-cart .cart_totals .shipping-calculator-button {
    color: var(--si-color-blue-700);
    font-weight: 900;
}

body.woocommerce-cart .cart_totals .shipping-calculator-button::after {
    display: none;
}

body.woocommerce-cart .cart_totals .shipping-calculator-form {
    margin-top: 0.8rem;
}

body.woocommerce-cart .cart_totals .form-row {
    margin-bottom: 0.75rem;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 1.25rem;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    min-height: 3.25rem;
    background: var(--si-color-blue-700);
    font-size: 0.9rem;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus {
    background: var(--si-color-navy);
}

body.woocommerce-cart .entry-content.lead > p:last-child {
    max-width: 76rem;
    margin: 2rem auto 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(224, 190, 0, 0.35);
    border-left: 4px solid var(--si-color-gold);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--si-color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

body.woocommerce-cart .entry-content.lead > p:last-child em {
    color: inherit;
}

@media (max-width: 991.98px) {
    body.woocommerce-cart .entry-content.lead > .woocommerce {
        display: block;
    }

    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals {
        margin-bottom: 1.5rem;
    }

    body.woocommerce-cart .cart_totals {
        position: static;
    }
}

@media (max-width: 767.98px) {
    body.woocommerce-cart article > header {
        padding: 2rem 1.25rem;
    }

    body.woocommerce-cart .woocommerce-cart-form {
        padding: 0;
    }

    body.woocommerce-cart table.shop_table_responsive tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    }

    body.woocommerce-cart table.shop_table_responsive tr:last-child {
        border-bottom: 0;
    }

    body.woocommerce-cart table.shop_table_responsive tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.55rem 0;
        border: 0;
        text-align: right !important;
    }

    body.woocommerce-cart table.shop_table_responsive tr td::before {
        color: var(--si-color-muted);
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    body.woocommerce-cart table.shop_table_responsive tr td.product-remove,
    body.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail,
    body.woocommerce-cart table.shop_table_responsive tr td.actions {
        display: block;
        text-align: left !important;
    }

    body.woocommerce-cart table.shop_table_responsive tr td.product-remove::before,
    body.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail::before,
    body.woocommerce-cart table.shop_table_responsive tr td.actions::before {
        content: none;
        display: none;
    }

    body.woocommerce-cart table.shop_table_responsive tr td.product-thumbnail img {
        width: 100%;
        max-width: 9rem;
        height: 6rem;
    }

    body.woocommerce-cart table.shop_table td.actions .coupon,
    body.woocommerce-cart table.shop_table td.actions .coupon .input-text,
    body.woocommerce-cart table.shop_table td.actions .button {
        width: 100%;
    }

    body.woocommerce-cart table.shop_table td.actions .button {
        margin-left: 0;
    }

    body.woocommerce-cart .woocommerce a.button,
    body.woocommerce-cart .woocommerce button.button,
    body.woocommerce-cart .woocommerce input.button {
        width: 100%;
    }

    body.woocommerce-cart .cart_totals table.shop_table_responsive tr td {
        justify-content: flex-start;
        text-align: left !important;
    }
}

/* WooCommerce checkout */
body.woocommerce-checkout .site-main {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 247, 251, 0.96) 42%, var(--si-color-background) 100%),
        var(--si-color-background);
}

body.woocommerce-checkout article {
    max-width: 76rem;
}

body.woocommerce-checkout article > header {
    position: relative;
    margin: 0 0 2rem !important;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(36, 181, 234, 0.18), rgba(224, 190, 0, 0.16)),
        linear-gradient(135deg, var(--si-color-navy-900), var(--si-color-navy));
    box-shadow: var(--si-shadow-md);
}

body.woocommerce-checkout article > header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--si-color-cyan);
    pointer-events: none;
}

body.woocommerce-checkout article > header h1.visually-hidden {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    border: 0 !important;
    color: #fff;
    font-size: clamp(2.35rem, 6vw, 4.75rem);
    letter-spacing: 0;
    text-align: left;
}

body.woocommerce-checkout .entry-content.lead {
    display: block;
    font-size: 1rem;
}

body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info {
    margin-bottom: 1.25rem;
}

body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info {
    display: block;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(13, 92, 159, 0.14);
    border-left: 4px solid var(--si-color-blue-700);
    border-radius: 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
    color: var(--si-color-navy);
    font-size: 0.98rem;
    line-height: 1.55;
    list-style: none;
}

body.woocommerce-checkout .woocommerce-error {
    border-color: rgba(185, 28, 28, 0.18);
    border-left-color: #b91c1c;
    background: #fff7f7;
}

body.woocommerce-checkout .woocommerce-error::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-info::before {
    display: none;
}

body.woocommerce-checkout .woocommerce-error li,
body.woocommerce-checkout .woocommerce-message li,
body.woocommerce-checkout .woocommerce-info li {
    margin: 0;
    color: inherit;
    list-style: none;
}

body.woocommerce-checkout form.checkout {
    display: flow-root;
}

body.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: calc(64% - 1rem);
    float: left;
}

body.woocommerce-checkout #customer_details::before,
body.woocommerce-checkout #customer_details::after {
    content: none;
    display: none;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields {
    overflow: hidden;
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    margin: 0;
    padding: 1.15rem 1.25rem;
    border-top: 4px solid var(--si-color-cyan);
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    background: var(--si-color-navy);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0;
}

body.woocommerce-checkout .woocommerce-shipping-fields h3 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

body.woocommerce-checkout .woocommerce-shipping-fields h3 label {
    margin: 0;
    color: #fff;
    font: inherit;
    letter-spacing: 0;
}

body.woocommerce-checkout .woocommerce-shipping-fields h3 input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: var(--si-color-cyan);
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .shipping_address,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    padding: 1.25rem;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    max-width: none;
    float: none;
    padding: 0;
}

body.woocommerce-checkout .form-row {
    margin: 0 0 1rem;
    padding: 0;
}

body.woocommerce-checkout .form-row-first,
body.woocommerce-checkout .form-row-last {
    width: calc(50% - 0.5rem);
}

body.woocommerce-checkout .form-row-first {
    float: left;
}

body.woocommerce-checkout .form-row-last {
    float: right;
}

body.woocommerce-checkout .form-row-wide {
    clear: both;
}

body.woocommerce-checkout label {
    margin-bottom: 0.35rem;
    color: var(--si-color-muted);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.woocommerce-checkout abbr.required {
    color: #b91c1c;
    text-decoration: none;
}

body.woocommerce-checkout .optional {
    color: var(--si-color-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: none;
}

body.woocommerce-checkout .woocommerce-input-wrapper {
    display: block;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea.input-text,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container .select2-selection--single,
body.woocommerce-checkout .select2-container .select2-selection--multiple {
    width: 100%;
    min-height: 2.7rem;
    border: 1px solid rgba(12, 24, 37, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--si-color-navy);
    font-size: 0.95rem;
    line-height: 1.45;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout textarea.input-text {
    min-height: 7rem;
    resize: vertical;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea.input-text:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection,
body.woocommerce-checkout .select2-container--open .select2-selection {
    border-color: var(--si-color-blue-700);
    box-shadow: 0 0 0 3px rgba(36, 181, 234, 0.16);
    outline: 0;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
    display: flex;
    align-items: center;
    height: 2.7rem;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0.8rem;
    color: var(--si-color-navy);
    line-height: 2.7rem;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2.7rem;
}

body.woocommerce-checkout #order_review_heading {
    width: calc(36% - 1rem);
    float: right;
    clear: right;
    border-top-color: var(--si-color-gold);
    border-radius: 8px 8px 0 0;
}

body.woocommerce-checkout #order_review {
    position: sticky;
    top: 6rem;
    overflow: hidden;
    width: calc(36% - 1rem);
    float: right;
    clear: right;
    margin-top: 0;
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 0 0 8px 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
}

body.woocommerce-checkout table.shop_table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--si-color-navy);
    font-size: 0.95rem;
}

body.woocommerce-checkout table.shop_table th {
    padding: 1rem 1.25rem;
    border: 0;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    background: var(--si-color-soft);
    color: var(--si-color-navy);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.woocommerce-checkout table.shop_table td {
    padding: 1rem 1.25rem;
    border: 0;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    color: var(--si-color-muted);
    vertical-align: top;
}

body.woocommerce-checkout table.shop_table tr:last-child th,
body.woocommerce-checkout table.shop_table tr:last-child td {
    border-bottom: 0;
}

body.woocommerce-checkout table.shop_table .product-name,
body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table tfoot td,
body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
    color: var(--si-color-navy);
    font-weight: 900;
}

body.woocommerce-checkout table.shop_table .product-quantity {
    color: var(--si-color-muted);
    font-weight: 800;
}

body.woocommerce-checkout #payment {
    border-radius: 0;
    background: #fff;
}

body.woocommerce-checkout #payment ul.payment_methods {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(12, 24, 37, 0.08);
}

body.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0;
    color: var(--si-color-navy);
    list-style: none;
}

body.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: var(--si-color-navy);
    font-size: 0.95rem;
    text-transform: none;
}

body.woocommerce-checkout #payment .payment_box {
    margin: 1rem 0 0;
    padding: 1rem;
    border-radius: 8px;
    background: var(--si-color-soft);
    color: var(--si-color-muted);
}

body.woocommerce-checkout #payment .payment_box::before {
    display: none;
}

body.woocommerce-checkout #payment .payment_box p {
    margin-bottom: 1rem;
}

body.woocommerce-checkout #payment fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

body.woocommerce-checkout #payment .form-row-first,
body.woocommerce-checkout #payment .form-row-last {
    width: 100%;
    float: none;
}

body.woocommerce-checkout .sv-wc-payment-gateway-card-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

body.woocommerce-checkout .sv-wc-payment-gateway-card-icons img {
    width: 2.3rem !important;
    height: auto !important;
    border-radius: 3px;
}

body.woocommerce-checkout #payment .place-order {
    margin: 0;
    padding: 1.25rem;
}

body.woocommerce-checkout #payment .place-order .woocommerce-privacy-policy-text p {
    margin-bottom: 1rem;
    color: var(--si-color-muted);
    font-size: 0.92rem;
}

body.woocommerce-checkout #payment .place-order > p:not(.form-row) {
    color: var(--si-color-muted);
    font-size: 0.92rem;
}

body.woocommerce-checkout #payment .place-order .form-row {
    clear: both;
}

body.woocommerce-checkout .woocommerce a.button,
body.woocommerce-checkout .woocommerce button.button,
body.woocommerce-checkout .woocommerce input.button,
body.woocommerce-checkout #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 8px;
    background: var(--si-color-blue-700);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(13, 92, 159, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-checkout .woocommerce a.button:hover,
body.woocommerce-checkout .woocommerce a.button:focus,
body.woocommerce-checkout .woocommerce button.button:hover,
body.woocommerce-checkout .woocommerce button.button:focus,
body.woocommerce-checkout .woocommerce input.button:hover,
body.woocommerce-checkout .woocommerce input.button:focus,
body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus {
    background: var(--si-color-navy);
    color: #fff;
    box-shadow: 0 16px 34px rgba(12, 24, 37, 0.22);
    transform: translateY(-1px);
}

body.woocommerce-checkout #place_order {
    width: 100%;
    margin-top: 0.5rem;
    float: none;
}

body.woocommerce-checkout .blockUI.blockOverlay {
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    body.woocommerce-checkout form.checkout {
        display: block;
    }

    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        width: 100%;
    }

    body.woocommerce-checkout #order_review_heading {
        margin-top: 1.5rem;
    }

    body.woocommerce-checkout #order_review {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    body.woocommerce-checkout article > header {
        padding: 2rem 1.25rem;
    }

    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .shipping_address,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
    body.woocommerce-checkout #payment ul.payment_methods,
    body.woocommerce-checkout #payment .place-order {
        padding: 1rem;
    }

    body.woocommerce-checkout .form-row-first,
    body.woocommerce-checkout .form-row-last {
        width: 100%;
        float: none;
    }

    body.woocommerce-checkout .woocommerce-shipping-fields h3 {
        align-items: flex-start;
        font-size: 0.98rem;
        line-height: 1.25;
    }

    body.woocommerce-checkout table.shop_table_responsive tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(12, 24, 37, 0.08);
    }

    body.woocommerce-checkout table.shop_table_responsive tr:last-child {
        border-bottom: 0;
    }

    body.woocommerce-checkout table.shop_table_responsive tr td,
    body.woocommerce-checkout table.shop_table_responsive tr th {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.55rem 0;
        border: 0;
        text-align: right !important;
    }

    body.woocommerce-checkout table.shop_table_responsive tr td::before {
        color: var(--si-color-muted);
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    body.woocommerce-checkout table.shop_table_responsive tr th {
        background: transparent;
        text-align: left !important;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
        display: none;
    }

    body.woocommerce-checkout #payment ul.payment_methods li label {
        align-items: flex-start;
    }
}

/* Sitemap */
body.page-id-14047 .site-main {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(244, 247, 251, 0.96) 42%, var(--si-color-background) 100%),
        var(--si-color-background);
}

body.page-id-14047 article {
    max-width: 76rem;
}

body.page-id-14047 article > header {
    position: relative;
    margin: 0 0 2rem !important;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(36, 181, 234, 0.18), rgba(224, 190, 0, 0.16)),
        linear-gradient(135deg, var(--si-color-navy-900), var(--si-color-navy));
    box-shadow: var(--si-shadow-md);
}

body.page-id-14047 article > header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--si-color-cyan);
    pointer-events: none;
}

body.page-id-14047 article > header h1.visually-hidden {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    border: 0 !important;
    color: #fff;
    font-size: clamp(2.35rem, 6vw, 4.75rem);
    letter-spacing: 0;
    text-align: left;
}

body.page-id-14047 .entry-content.lead {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 0.9rem;
    margin: 0;
    padding: clamp(1rem, 2.6vw, 1.5rem);
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-top: 4px solid var(--si-color-gold);
    border-radius: 8px;
    background: var(--si-color-surface);
    box-shadow: var(--si-shadow-sm);
    font-size: 1rem;
}

body.page-id-14047 .entry-content.lead li.page_item {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-id-14047 .entry-content.lead li.page_item > a {
    display: flex;
    align-items: center;
    min-height: 3.35rem;
    padding: 0.78rem 0.95rem 0.78rem 1.15rem;
    border: 1px solid rgba(12, 24, 37, 0.08);
    border-radius: 8px;
    background: var(--si-color-soft);
    color: var(--si-color-navy);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(12, 24, 37, 0.06);
}

body.page-id-14047 .entry-content.lead li.page_item > a::before {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.7rem;
    border-radius: 999px;
    background: var(--si-color-cyan);
    box-shadow: 0 0 0 3px rgba(36, 181, 234, 0.14);
}

body.page-id-14047 .entry-content.lead li.page_item > a:hover,
body.page-id-14047 .entry-content.lead li.page_item > a:focus {
    border-color: rgba(13, 92, 159, 0.2);
    background: #fff;
    color: var(--si-color-blue-700);
    box-shadow: 0 12px 24px rgba(13, 92, 159, 0.12);
    transform: translateY(-1px);
}

body.page-id-14047 .entry-content.lead li.current_page_item > a {
    border-color: rgba(224, 190, 0, 0.42);
    background:
        linear-gradient(90deg, rgba(224, 190, 0, 0.18), rgba(255, 255, 255, 0.88)),
        #fff;
}

body.page-id-14047 .entry-content.lead ul.children {
    display: grid;
    gap: 0.55rem;
    margin: 0.65rem 0 0;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(36, 181, 234, 0.2);
}

body.page-id-14047 .entry-content.lead ul.children li.page_item > a {
    min-height: 2.65rem;
    padding: 0.62rem 0.8rem;
    background: #fff;
    color: var(--si-color-muted);
    font-size: 0.86rem;
    box-shadow: none;
}

body.page-id-14047 .entry-content.lead ul.children li.page_item > a::before {
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.55rem;
    background: var(--si-color-gold);
    box-shadow: 0 0 0 3px rgba(224, 190, 0, 0.12);
}

body.single-post article > header .wp-post-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    body.page-id-14047 article > header {
        padding: 2rem 1.25rem;
    }

    body.page-id-14047 .entry-content.lead {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    body.page-id-14047 .entry-content.lead li.page_item > a {
        min-height: 3rem;
    }
}
