:root {
    --primary: #0F9F4D;
    --black: #10131A;
    --white: #FFFFFF;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url(../fonts/ClashGrotesk-Variable.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

p {
    margin-bottom: 0 !important;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background-color: #F8F8F8;
}

.container {
    max-width: 90rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.product-card-title,
.service-slide-title,
.product-slide-title,
.benefit-card-title,
.reference-slide-title,
.mega-panel-title {
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 500;
}

.sections {
    margin-bottom: 5rem;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 16px !important;
}

.content .kicker {
    color: var(--primary);
    font-size: .875rem;
    letter-spacing: 15%;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.content h1 {
    font-size: 3rem;
}

.content h2 {
    font-size: 2.5rem;
}


.content p {
    opacity: 0.7;
    font-size: .875rem;
}

/* BTNS */
.btn {
    display: flex;
    align-items: center;
    border-radius: 0 !important;
    font-size: .875rem !important;
    font-weight: 600 !important;
    padding: .875rem 2rem;
    width: fit-content;
    gap: .5rem;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary-btn {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.primary-outline-btn {
    background-color: transparent;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

.white-btn {
    background-color: var(--white) !important;
    color: var(--black) !important;
}



.btn-group {
    display: flex;
    gap: .9375rem;
    width: fit-content;
    margin-top: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    padding: 0.5rem 0;
    color: var(--white);
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s ease;
}

.top-bar-link:hover {
    opacity: 0.8;
    color: var(--white);
}

/* Main Nav */
.main-nav {
    position: relative;
    background-color: var(--white);
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Nav Links */
.main-nav .nav-link {
    color: var(--black);
    font-weight: 500;
    font-size: .875rem;
    padding: 0.4rem 0.5rem;
    transition: color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--primary);
}

.main-nav .nav-link.active {
    color: var(--primary);
}

/* mega-menu */
/* Rozbaľovacie menu na plnú šírku hlavičky: vľavo odkazy, vpravo náhľad. */
.main-nav .nav-item.has-mega {
    position: static;
}

.main-nav .has-mega > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0.35em;
    height: 0.35em;
    margin-left: 0.5rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-0.1em) rotate(45deg);
    transition: transform 0.2s ease;
}

.main-nav .has-mega:hover > .nav-link,
.main-nav .has-mega:focus-within > .nav-link {
    color: var(--black);
}

.main-nav .has-mega:hover > .nav-link::after,
.main-nav .has-mega:focus-within > .nav-link::after {
    transform: translateY(0.15em) rotate(-135deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid rgba(16, 19, 26, 0.12);
    box-shadow: 0 1rem 2rem rgba(16, 19, 26, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Neviditeľný mostík cez spodné odsadenie hlavičky, aby menu nezmizlo
   pri prechode myšou z odkazu do menu. */
.mega-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 3.5rem;
}

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

.mega-menu-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mega-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.45;
    margin: 0 0 1rem !important;
}

.mega-list {
    display: grid;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-list-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
}

.mega-list-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
}

.mega-list li {
    display: grid;
}

.mega-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    gap: 0.25rem 0.75rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: background-color 0.16s ease, border-color 0.16s ease;
}

.mega-link:hover,
.mega-link.is-active {
    background-color: #F1F2F4;
    border-color: rgba(16, 19, 26, 0.08);
}

.mega-link-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.25rem;
    background-color: #F1F2F4;
    color: var(--black);
    font-size: 0.9375rem;
}

.mega-link:hover .mega-link-icon,
.mega-link.is-active .mega-link-icon {
    background-color: var(--white);
}

.mega-link-name {
    flex: 1 1 auto;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
}

.mega-link-meta {
    flex: 1 0 100%;
    font-size: 0.75rem;
    opacity: 0.55;
}

.mega-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black) !important;
    border-bottom: 1px solid rgba(16, 19, 26, 0.25);
    padding-bottom: 0.15rem;
}

.mega-all i {
    font-size: 0.75rem;
    transition: transform 0.18s ease;
}

.mega-all:hover i {
    transform: translateX(0.2rem);
}

.mega-preview {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(16, 19, 26, 0.08);
}

.mega-panel {
    display: none;
}

.mega-panel.is-active {
    display: block;
}

.mega-panel-media {
    display: block;
    height: 11rem;
    margin-bottom: 1rem;
    background-color: #F8F8F8;
    border-radius: 0.5rem;
    overflow: hidden;
}

.mega-panel-media picture,
.mega-panel-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mega-panel-media img {
    padding: 0.75rem;
}

.mega-panel-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    background-color: #F1F2F4;
    color: var(--black);
    font-size: 1.25rem;
}

.mega-panel-title {
    font-size: 1.0625rem;
    line-height: 1.3;
    margin: 0 !important;
}

.mega-panel-text {
    margin-top: 0.4rem !important;
    font-size: 0.8125rem;
    line-height: 1.5;
    opacity: 0.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
}

.mega-panel-cta i {
    font-size: 0.75rem;
}
/* END mega-menu */

/* ============================================================
   MOBILE DRAWER
   ============================================================ */

/* Hamburger button */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn .bar {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--black);
    border-radius: 0.0625rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.is-open .bar:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg);
}

.mobile-menu-btn.is-open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open .bar:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg);
}

/* Scroll lock */
.drawer-open {
    overflow: hidden;
}

/* Overlay */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.mobile-drawer-overlay.is-active {
    display: block;
}

/* Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    min-height: 5rem;
}

.mobile-drawer-close {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.mobile-drawer-close:hover {
    opacity: 0.7;
}

.mobile-drawer-nav {
    flex: 1;
    padding: 0 1.5rem 1.25rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--primary) !important;
}

.mobile-nav-toggle-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-icon {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    list-style: none;
    padding: 0 0 0.75rem 1rem;
    margin: 0;
}

.mobile-nav-sub a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--black);
    transition: color 0.2s ease;
}

.mobile-nav-sub a:hover {
    color: var(--primary) !important;
}

.mobile-drawer-footer {
    padding: 1.25rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-drawer-footer .top-bar-link {
    color: var(--black) !important;
}

.mobile-drawer-footer .top-bar-link:hover {
    color: var(--black) !important;
    opacity: 0.7;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding-top: 3rem;
}

.parker-floating-link {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.12);
    color: var(--black);
    box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.14);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.parker-floating-link:hover {
    border-color: var(--primary);
    color: var(--black);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 2.25rem 0 rgba(0, 0, 0, 0.18);
}

.parker-floating-logo {
    display: block;
    width: 6rem;
    height: auto;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-bottom: 1px solid rgba(16, 19, 26, 0.08);
    text-decoration: none;
    color: var(--black);
    box-shadow: 0 0.125rem 1.5rem 0 rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.16);
}

.product-card-img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.product-card-body {
    flex: 1;
}

.product-card-title {
    font-size: 1.5rem;

    color: var(--black);
    margin-bottom: .375rem !important;
}

.product-card-desc {
    font-size: 0.8125rem;
    opacity: 0.7;
    color: var(--black);
    max-width: 430px;
}

.product-card-document-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(15, 159, 77, 0.2);
    background-color: rgba(15, 159, 77, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.product-card-arrow {
    font-size: 1.125rem;
    color: var(--black);
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ============================================================
   SERVICE SLIDER (Splide.js)
   ============================================================ */

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.slider-arrows {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: none;
    background-color: rgba(16, 19, 26, 0.08);
    cursor: pointer;
    transition: background 0.2s ease;
}

.slider-arrow:hover {
    background: var(--primary);
}

.slider-arrow:hover svg path {
    fill: var(--white);
    fill-opacity: 1;
}

.service-splide {
    margin-top: 2rem;
    padding-left: calc((100vw - 1320px) / 2 + 0.75rem);
    overflow: visible;
}

.service-splide .splide__track {
    overflow: visible;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: none !important;
}

.services {
    overflow: hidden;
}

/* ============================================================
   PARTNERS
   ============================================================ */

.partners {
    padding-top: 3.625rem;
    overflow: hidden;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partners-track {
    overflow: hidden;
}

.partners-list {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    will-change: transform;
    animation: marquee 80s linear infinite;
}

.partners-list:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 8.5rem;
    height: 2.25rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.2s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.service-splide .splide__list {
    align-items: stretch;
}

.service-slide {
    display: block;
    position: relative;
    height: 16rem;
    text-decoration: none;
    overflow: hidden;
}

.service-slide picture {
    position: absolute;
    inset: 0;
    display: block;
}

.service-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 19, 26, 0.7) 0%, transparent 60%);
    transition: background 0.3s ease;
}


.service-slide-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    background-color: var(--primary);
    color: var(--white);
    font-size: .75rem;
    font-weight: 500;
    padding: .375rem .875rem;
    text-transform: uppercase;
}

.service-slide-arrow {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 2;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    border: 5px solid var(--white);
}

.service-slide:hover .service-slide-arrow {
    opacity: 1;
}

.service-slide-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    color: var(--white);
    font-size: 2rem;

}

/* ============================================================
   PRODUCT SLIDER (Splide.js)
   ============================================================ */


.products {
    overflow: hidden;
}


#product-splide {
    margin-top: 2.5rem;
}

#product-splide .splide__slide {
    clip-path: inset(-100vw -100vw -100vw 0);
}

#product-splide .splide__track {
    overflow: visible;
}



.product-slide {
    display: block;
    transition: transform 0.2s ease;
}

.product-slide:hover {
    transform: translateY(-3px);
}

.product-slide-media {
    position: relative;
    display: block;
}

.product-slide-img {
    width: 100%;
    height: 13rem;
    object-fit: contain;
    display: block;
    padding: 1.5rem;
    border: 1px solid rgba(16, 19, 26, 0.1);
    background-color: var(--white);
}

.product-slide-document-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 1.75rem;
    padding: 0 0.625rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.product-slide-body {
    padding: 1.5625rem .75rem;
}

.product-slide-title {
    font-size: 1.375rem;
    margin-bottom: 0.25rem !important;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
}

.product-slide-desc {
    font-size: .875rem;
    opacity: 0.5;
}

.product-slide-document-note {
    width: fit-content;
    margin: 0.75rem 0 0 !important;
    padding: 0.375rem 0.625rem;
    border: 1px solid rgba(15, 159, 77, 0.2);
    background-color: rgba(15, 159, 77, 0.08);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    opacity: 1 !important;
}

.product-specs {
    margin: 0.75rem 0 0;
    padding: 0;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(16, 19, 26, 0.07);
}

.product-spec-row:last-child {
    border-bottom: none;
}

.product-spec-label {
    font-size: .875rem;
    opacity: 0.5;
    margin: 0 !important;
    font-weight: 400;
    flex-shrink: 0;
}

.product-spec-value {
    font-size: .875rem;
    font-weight: 500;
    margin: 0 !important;
    text-align: right;
}

/* ============================================================
   REFERENCE SLIDER (Splide.js)
   ============================================================ */

.reference-splide {
    margin-top: 2rem;
    padding-left: calc((100vw - 1320px) / 2 + 0.75rem);
    overflow: visible;
}

.reference-splide .splide__track {
    overflow: visible;
}

.reference-splide .splide__list {
    align-items: stretch;
}

.references {
    overflow: hidden;
}

.reference-slide {
    display: block;
    background: var(--white);
    text-decoration: none;
    color: var(--black);
    transition: transform 0.2s ease;
}

.reference-slide:hover {
    transform: translateY(-3px);
}

.reference-slide-img-wrap {
    position: relative;
    overflow: hidden;
}

.reference-slide-img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.fancybox__container img,
.fancybox__content img,
.fancybox__image,
.fancybox-image,
.f-carousel__slide img,
.f-thumbs__slide__img {
    filter: grayscale(100%) !important;
}

.reference-slide-body {
    padding: 1.5625rem .75rem;
}

.reference-slide-title {
    font-size: 1.375rem;
    color: var(--black);
    margin-bottom: 0.25rem !important;
}

.reference-slide-meta {
    font-size: .875rem;
    opacity: 0.5;
}

/* ============================================================
   REFERENCIE PAGE
   ============================================================ */

.ref-nav {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    position: sticky;
    top: 2rem;
}

.ref-nav-btn {
    display: block;
    padding: .75rem 1rem;
    border: 1px solid rgba(16, 19, 26, 0.15);
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ref-nav-btn:hover,
.ref-nav-btn.active {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.ref-group-title {
    font-size: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--primary);
}

.ref-card-placeholder {
    width: 100%;
    height: 12rem;
    background: rgba(16, 19, 26, 0.04);
}

/* ============================================================
   BENEFITS
   ============================================================ */

.benefits {
    background-color: var(--black);
    padding: 4.5rem 0;
    color: var(--white);
}

.benefits .row {
    margin-top: 2.5rem;
}

.benefit-card {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 0 1.5rem;
}

.benefit-card-icon {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.benefit-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.benefit-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem !important;
}

.benefit-card-subtitle {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 0 !important;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #3a3d45 0%, #2a2d35 100%);
    background-image: url('../img/cta-banner-background.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner p {
    font-size: 1rem;
}

.cta-banner .btn {
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.cta-phone {
    font-size: 0.875rem !important;
    margin-top: 0.5rem;
}

.cta-phone a {
    color: var(--white) !important;
    opacity: 1 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background-color: #161719;
    padding: 4.5rem 0 1.5rem;
    color: var(--white);
}

.footer-main {
    margin-bottom: 3rem;
}

.footer-logo svg {
    width: 8.9375rem;
    height: 2.625rem;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-col-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.5) !important;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
}

.footer-links .service-slide-badge {
    font-size: 8px;
    padding: .0625rem .25rem;
    top: -0.25rem;
    left: 10.125rem;
    width: fit-content;
}

/* ============================================================
   PRODUCT FILTERS
   ============================================================ */

.filter-group {
    padding: 1.25rem 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.filter-group-title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.filter-group-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.filter-group-header.collapsed .filter-group-chevron {
    transform: rotate(180deg);
}

.filter-group-body {
    margin-top: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 1.5px solid rgba(16, 19, 26, 0.25);
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    position: relative;
    margin: 0;
}

.filter-option input[type="radio"] {
    border-radius: 50%;
}

.filter-option input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.filter-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.15rem;
    width: 0.3rem;
    height: 0.55rem;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.filter-option input[type="radio"]:checked {
    border-color: var(--primary);
    border-width: 0.35rem;
    background-color: var(--white);
}

.filter-option-label {
    font-size: .75rem;
    cursor: pointer;
    margin-bottom: 0 !important;
    opacity: 0.7;
}

.filter-range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}

.filter-range-val {
    font-size: 0.8125rem;
    opacity: 0.55;
}

.filter-range-track {
    position: relative;
    height: 0.25rem;
    margin: 0.5rem 0;
}

.filter-range-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 19, 26, 0.12);

}

.filter-range-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary);
    pointer-events: none;
}

.filter-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    outline: none;
    pointer-events: none;
    margin: 0;
}

.filter-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: var(--white);
    cursor: pointer;
    border: 5px solid var(--primary);
    pointer-events: all;
}

.filter-range::-moz-range-thumb {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: var(--white);
    cursor: pointer;
    border: 5px solid var(--primary);
    pointer-events: all;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    font-size: 0.875rem;
    font-style: normal;
    color: hsla(0, 0%, 100%, 0.5) !important;
}

.footer-contact p {
    margin-bottom: 0.75rem !important;
}

.footer-contact a {

    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-copy {
    color: hsla(0, 0%, 100%, 0.3);
}


.footer-copy a:hover {
    opacity: 1;
}

.footer-legal a {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */


.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .375rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    color: rgba(16, 19, 26, 0.5);
    white-space: nowrap;
}

.breadcrumb-link {
    color: rgba(16, 19, 26, 0.5) !important;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-link:hover {
    color: var(--primary) !important;
}

.breadcrumb-separator {
    flex-shrink: 0;
}

.breadcrumb-active span {
    color: var(--black);
    font-weight: 600;
    white-space: nowrap;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

/* ============================================================
   CATEGORY PRODUCTS PAGE
   ============================================================ */

.category-header {
    margin: 3rem 0;
}

.category-header-compact {
    margin-bottom: 1.5rem;
}



.category-header-richtext,
.category-header-richtext * {
    color: rgba(16, 19, 26, 0.7);
    font-size: .875rem;
    line-height: 1.65;
}

.category-header-richtext p,
.category-header-richtext div,
.category-header-richtext ul,
.category-header-richtext ol {
    margin-bottom: 0.125rem !important;
}

.category-header-richtext [data-hook="tpa-components-provider"],
.category-header-richtext [data-hook="gallery-app-root"],
.category-header-richtext [data-hook="gallery-app-content"],
.category-header-richtext [data-hook="gallery-app-container"],
.category-header-richtext [data-hook="product-list"] {
    display: none !important;
}

.category-header-richtext strong {
    font-weight: 700;
}

.category-header-richtext h3,
.category-header-richtext h4,
.category-header-richtext h5,
.category-header-richtext h6 {
    font-weight: 600;
}

.category-header-richtext h3 {
    font-size: 1.0625rem;
}

.category-header-richtext h4 {
    font-size: 1rem;
}

.category-header-richtext p:last-child,
.category-header-richtext div:last-child,
.category-header-richtext ul:last-child,
.category-header-richtext ol:last-child {
    margin-bottom: 0 !important;
}

.category-header-richtext ul,
.category-header-richtext ol {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 0;
    list-style: none;
}

.category-header-richtext li {
    position: relative;
    padding-left: 1.75rem;
}

.category-header-richtext li::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M0%200h24v24H0z'%20fill='none'/%3E%3Cpath%20d='M17%203.34a10%2010%200%201%201%20-14.995%208.984l-.005%20-.324l.005%20-.324a10%2010%200%200%201%2014.995%20-8.336zm-1.293%205.953a1%201%200%200%200%20-1.32%20-.083l-.094%20.083l-3.293%203.292l-1.293%20-1.292l-.094%20-.083a1%201%200%200%200%20-1.403%201.403l.083%20.094l2%202l.094%20.083a1%201%200%200%200%201.226%200l.094%20-.083l4%20-4l.083%20-.094a1%201%200%200%200%20-.083%20-1.32z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M0%200h24v24H0z'%20fill='none'/%3E%3Cpath%20d='M17%203.34a10%2010%200%201%201%20-14.995%208.984l-.005%20-.324l.005%20-.324a10%2010%200%200%201%2014.995%20-8.336zm-1.293%205.953a1%201%200%200%200%20-1.32%20-.083l-.094%20.083l-3.293%203.292l-1.293%20-1.292l-.094%20-.083a1%201%200%200%200%20-1.403%201.403l.083%20.094l2%202l.094%20.083a1%201%200%200%200%201.226%200l.094%20-.083l4%20-4l.083%20-.094a1%201%200%200%200%20-.083%20-1.32z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.category-header-richtext li::after {
    content: none;
}

.category-sidebar-image {
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-sidebar-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.category-documents-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
}

.category-documents-title {
    margin-bottom: 0;
    font-size: 1rem !important;
}

.category-document-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */

/* Desktop Navigation */
.category-tabs-desktop {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.625rem;
    margin-bottom: 2rem;
}

/* Mobile Navigation (Splide) */
.category-tabs-mobile {
    display: none;
    margin-bottom: 2rem;
    overflow: hidden;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    width: 100%;
    min-height: 16.875rem;
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: normal;
}

.category-tab>span:not(.category-tab-document-badge) {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 2.75rem;
    line-height: 1.35;
    order: 1;
}

.category-tab-img {
    width: 12rem;
    height: 11rem;
    object-fit: contain;
    flex-shrink: 0;
    order: 2;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab-document {
    border-color: rgba(15, 159, 77, 0.24);
}

.category-tab-document-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    background-color: rgba(15, 159, 77, 0.08);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    order: 3;
}

.category-tab:hover .category-tab-document-badge {
    background-color: var(--primary);
    color: var(--white);
}

.category-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================================
   PARKER PRODUCTS PAGE
   ============================================================ */

.parker-header:not(.category-header-compact) .content {
    max-width: 44rem;
}

.parker-category-group:not(:last-child) {
    margin-bottom: 2rem;
}

.parker-category-group-title {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.parker-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem;
}

.parker-category-card.category-tab {
    min-height: 13rem;
    padding: 1rem;
    box-shadow: 0 0.125rem 1.25rem 0 rgba(0, 0, 0, 0.08);
}

.parker-category-card .category-tab-img {
    width: 10rem;
    height: 7.5rem;
}

.category-tab>.parker-category-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    min-height: 0;
    background-color: var(--black);
    color: var(--white);
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    order: 2;
}

.parker-category-content,
.parker-documents-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
}

.parker-category-content h2,
.parker-documents-block h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.parker-category-content h3,
.parker-documents-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.parker-category-content p {
    margin-bottom: 0.875rem !important;
    font-size: 0.875rem;
    line-height: 1.75;
    opacity: 0.78;
}

.parker-richtext,
.parker-richtext * {
    color: rgba(16, 19, 26, 0.7);
    font-size: 0.875rem;
    line-height: 1.75;
}

.parker-richtext p,
.parker-richtext div,
.parker-richtext ul,
.parker-richtext ol {
    margin-bottom: 0.875rem !important;
}

.parker-richtext strong {
    font-weight: 700;
}

.parker-richtext h3,
.parker-richtext h4,
.parker-richtext h5,
.parker-richtext h6 {
    font-weight: 600;
}

.parker-richtext h3 {
    font-size: 1.0625rem;
}

.parker-richtext h4 {
    font-size: 1rem;
}

.parker-richtext p:last-child,
.parker-richtext div:last-child,
.parker-richtext ul:last-child,
.parker-richtext ol:last-child {
    margin-bottom: 0 !important;
}

.parker-richtext ul,
.parker-richtext ol {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-left: 0;
    list-style: none;
}

.parker-richtext li {
    position: relative;
    padding-left: 1.75rem;
}

.parker-richtext li::before {
    content: "";
    position: absolute;
    top: 0.3125rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M0%200h24v24H0z'%20fill='none'/%3E%3Cpath%20d='M17%203.34a10%2010%200%201%201%20-14.995%208.984l-.005%20-.324l.005%20-.324a10%2010%200%200%201%2014.995%20-8.336zm-1.293%205.953a1%201%200%200%200%20-1.32%20-.083l-.094%20.083l-3.293%203.292l-1.293%20-1.292l-.094%20-.083a1%201%200%200%200%20-1.403%201.403l.083%20.094l2%202l.094%20.083a1%201%200%200%200%201.226%200l.094%20-.083l4%20-4l.083%20-.094a1%201%200%200%200%20-.083%20-1.32z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M0%200h24v24H0z'%20fill='none'/%3E%3Cpath%20d='M17%203.34a10%2010%200%201%201%20-14.995%208.984l-.005%20-.324l.005%20-.324a10%2010%200%200%201%2014.995%20-8.336zm-1.293%205.953a1%201%200%200%200%20-1.32%20-.083l-.094%20.083l-3.293%203.292l-1.293%20-1.292l-.094%20-.083a1%201%200%200%200%20-1.403%201.403l.083%20.094l2%202l.094%20.083a1%201%200%200%200%201.226%200l.094%20-.083l4%20-4l.083%20-.094a1%201%200%200%200%20-.083%20-1.32z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.parker-richtext li::after {
    content: none;
}

.parker-richtext [data-hook="tpa-components-provider"],
.parker-richtext [data-hook="gallery-app-root"],
.parker-richtext [data-hook="gallery-app-content"],
.parker-richtext [data-hook="gallery-app-container"],
.parker-richtext [data-hook="product-list"] {
    display: none !important;
}

.parker-category-content-img {
    display: block;
    width: 100%;
    max-width: 12rem;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.parker-documents-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parker-document-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.category-document-link,
.parker-document-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3rem;
    padding: 0.875rem 1rem;
    background-color: #F8F8F8;
    border: 1px solid rgba(16, 19, 26, 0.1);
    color: var(--black);
    font-size: 0.875rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.category-document-link:hover,
.parker-document-link:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
}

.parker-content-section {
    margin-top: 1.5rem;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-header {
    padding-top: 1.5rem;
}

.product-gallery {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.product-gallery-main-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
}

.product-gallery-main-img {
    width: 100%;
    height: 28rem;
    object-fit: contain;
    display: block;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
    padding: 1.5rem;
}

.gallery-arrow-prev,
.gallery-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.gallery-arrow-prev {
    left: 0.75rem;
}

.gallery-arrow-next {
    right: 0.75rem;
}

#product-gallery-main .splide__pagination {
    bottom: 0.75rem;
    gap: 0.375rem;
}

#product-gallery-main .splide__pagination__page {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(16, 19, 26, 0.2);
    opacity: 1;
    margin: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

#product-gallery-main .splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1.2);
}

.product-gallery-thumbs {
    width: 5.5rem;
    flex-shrink: 0;
}

.product-gallery-thumb-img {
    width: 100%;
    height: 5rem;
    object-fit: contain;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
    padding: 0.375rem;
    cursor: pointer;
    display: block;
    transition: border-color 0.2s ease;
}

.product-gallery-thumbs .splide__slide.is-active .product-gallery-thumb-img {
    border-color: var(--primary);
    border-width: 2px;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-info-title {
    font-size: 3rem;
    margin-bottom: 0 !important;
    padding-bottom: 1rem;
    border-bottom: 1px solid #10131A1A;
    margin-top: 1rem;
}

.product-info-overview {
    font-size: 0.875rem;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    line-height: 1.7;
}

.product-info-overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.product-info-overview ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-info-overview ul li::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M10 18.3333C14.6024 18.3333 18.3334 14.6024 18.3334 9.99999C18.3334 5.39762 14.6024 1.66666 10 1.66666C5.39765 1.66666 1.66669 5.39762 1.66669 9.99999C1.66669 14.6024 5.39765 18.3333 10 18.3333Z' stroke='%2310131A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 10L9.16667 11.6667L12.5 8.33334' stroke='%2310131A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.product-cta .btn {
    width: 100%;
    justify-content: center;
}

.product-cta-note {
    font-size: .75rem;
    opacity: 0.7;
    text-align: center;
}

.product-detail .product-header .container {
    padding: 0 !important;
    margin: 0 !important;
}

.product-detail {
    margin-top: 3rem;
}

/* ============================================================
   PRODUCT TABS
   ============================================================ */

/* Desktop Navigation */
.product-tabs-nav-desktop {
    display: none;
    border-bottom: 1px solid rgba(16, 19, 26, 0.12);
    gap: 0;
    margin-bottom: 2rem;
}

/* Mobile Navigation (Splide) */
.product-tabs-nav-mobile {
    display: block;
    border-bottom: 1px solid rgba(16, 19, 26, 0.12);
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.875rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(16, 19, 26, 0.5);
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.product-tab-btn:hover {
    color: var(--black);
}

.product-tab-btn.active {
    color: var(--black);
    border-bottom-color: var(--primary);
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.product-tab-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem !important;
}

.product-tab-content {
    font-size: 0.875rem;
    line-height: 1.8;
}

/* Specs table */
.product-specs-table {
    width: 100%;
    margin: 0;
}

.product-specs-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(16, 19, 26, 0.06);
}

.product-specs-row:first-child {
    border-top: 1px solid rgba(16, 19, 26, 0.06);
}

.product-specs-label {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 !important;
    background-color: var(--white);
    padding: 0.875rem 1.25rem;
    width: 50%;
    flex-shrink: 0;
}

.product-specs-value {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 !important;
    background-color: transparent;
    padding: 0.875rem 1.25rem;
    width: 50%;
}

/* Document cards */
.product-doc-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
    color: var(--black);
    transition: border-color 0.2s ease;
}

.product-doc-card:hover {
    border-color: var(--primary);
}

.product-doc-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(16, 19, 26, 0.08);
    padding: 0.75rem;
}

.product-doc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.product-doc-name {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-doc-meta {
    font-size: 0.75rem;
    opacity: 0.5;
}

.product-doc-download {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.product-doc-card:hover .product-doc-download {
    opacity: 1;
}

.product-contact-form {
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
}

/* ============================================================
   SERVICE DETAIL
   ============================================================ */

.service-content-img {
    width: 100%;
    height: 26rem;
    object-fit: cover;
    display: block;
}





.service-content-text ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.service-content-text ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: .875rem;
    opacity: 0.7;
}

.service-content-text ul li::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M10 18.3333C14.6024 18.3333 18.3334 14.6024 18.3334 9.99999C18.3334 5.39762 14.6024 1.66666 10 1.66666C5.39765 1.66666 1.66669 5.39762 1.66669 9.99999C1.66669 14.6024 5.39765 18.3333 10 18.3333Z' stroke='%2310131A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 10L9.16667 11.6667L12.5 8.33334' stroke='%2310131A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-value-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary);
    height: 100%;
}

.about-value-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem !important;
}

.about-value-card p {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTS TOOLBAR
   ============================================================ */

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: var(--white);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 19, 26, 0.08);
}

.products-toolbar-count {
    font-size: 0.875rem;
    color: rgba(16, 19, 26, 0.7);
}

.products-toolbar-count strong {
    font-weight: 600;
    color: var(--black);
}

.products-toolbar-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.products-toolbar-sort label {
    font-weight: 400;
    white-space: nowrap;
    cursor: default;
    color: rgba(16, 19, 26, 0.7);
}

.products-sort-btn::after {
    display: none;
}

.products-sort-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.12) !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.products-sort-btn:hover,
.products-sort-btn:focus,
.products-sort-btn.show {
    background: var(--white);
    border-color: rgba(16, 19, 26, 0.2) !important;
    color: var(--black);
    box-shadow: none;
    outline: none;
}

.products-sort-btn svg {
    transition: transform 0.2s ease;
}

.products-sort-btn.show svg {
    transform: rotate(180deg);
}

/* Products Sort Dropdown */
.products-toolbar .dropdown-menu {
    border: 1px solid rgba(16, 19, 26, 0.12);
    border-radius: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(16, 19, 26, 0.08);
    min-width: 12rem;
}

.products-toolbar .dropdown-item {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--black);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.products-toolbar .dropdown-item:hover {
    background-color: rgba(15, 159, 77, 0.06);
    color: var(--primary);
}

.products-toolbar .dropdown-item.active {
    background-color: var(--primary);
    color: var(--white);
}

.products-toolbar .dropdown-item.active:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Products Pagination */
.products-pagination {
    margin-top: 2rem;
}

.products-pagination .pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.products-pagination .page-link {
    min-width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(16, 19, 26, 0.12);
    background-color: var(--white);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.products-pagination .page-link:hover,
.products-pagination .page-link:focus {
    border-color: var(--primary);
    background-color: rgba(15, 159, 77, 0.06);
    color: var(--primary);
    box-shadow: none;
}

.products-pagination .page-item.active .page-link {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.products-pagination .page-item.disabled .page-link {
    border-color: rgba(16, 19, 26, 0.08);
    background-color: rgba(16, 19, 26, 0.03);
    color: rgba(16, 19, 26, 0.35);
    pointer-events: none;
}

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */

.related-products-heading {
    font-size: 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.branch-heading {
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.contact-branch {
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.1);
}

.contact-company {
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary);
}

.contact-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    margin-bottom: 0.25rem !important;
}

.contact-info-value {
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 28rem;
    border: 0;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    color: var(--black);
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-quick-link:hover {
    color: var(--primary);
}

.contact-form-label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: .375rem;
    color: var(--black);
}

.contact-form-input {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid rgba(16, 19, 26, 0.2);
    background: var(--white);
    color: var(--black);
    font-size: .875rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.contact-form-input:focus {
    border-color: var(--primary);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-form-success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    padding: 2rem;
    border-left: 3px solid var(--primary);
    background: rgba(16, 19, 26, 0.03);
}

.filter-option-label a {
    color: var(--primary);
    text-decoration: underline !important;
}

.contact-form-success-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 !important;
}

.contact-form-success-text {
    font-size: .875rem;
    opacity: 0.6;
    margin: 0 !important;
}
.cta-banner .cta-title{font-size:3rem;line-height:1.15;margin-bottom:.5rem;}


/* ===== Monochrome header (grey theme override) ===== */
.site-header .top-bar{background-color:var(--black)!important;}
.main-nav .primary-btn,.mobile-drawer .primary-btn,.mobile-drawer-footer .primary-btn{background-color:var(--black)!important;color:#fff!important;border:2px solid var(--black)!important;}
.main-nav .primary-btn:hover,.mobile-drawer .primary-btn:hover,.mobile-drawer-footer .primary-btn:hover{background-color:#2a2f38!important;border-color:#2a2f38!important;color:#fff!important;}
.main-nav .nav-link:hover,.main-nav .nav-link:focus,.main-nav .nav-link.active,.nav-link:hover,.nav-link:focus,.nav-link.active{color:var(--black)!important;}
.mobile-nav-link:hover,.mobile-nav-link:focus,.mobile-nav-link.active,.mobile-nav-toggle:hover{color:var(--black)!important;}

/* nitrogen generator landing */
/* hero */
.gd-hero{position:relative;overflow:hidden;min-height:660px;display:flex;align-items:center;
  background:url('../img/hero-background.png') center right/cover no-repeat;}
.gd-hero::before{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg,rgba(18,21,26,.95) 0%,rgba(18,21,26,.86) 34%,rgba(20,24,30,.55) 62%,rgba(22,26,32,.2) 100%);}
.gd-hero .container{position:relative;z-index:2;}
.gd-hero-inner{max-width:660px;padding:5rem 0;color:#fff;}
.gd-eyebrow{display:inline-flex;align-items:center;gap:.5rem;font-size:.78rem;font-weight:600;letter-spacing:.09em;
  text-transform:uppercase;color:#fff;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);
  padding:.45rem .95rem;border-radius:100px;margin-bottom:1.4rem;backdrop-filter:blur(4px);}
.gd-hero h1{font-size:clamp(2.4rem,5vw,3.7rem);font-weight:700;line-height:1.04;color:#fff;margin:0 0 1.15rem;}
.gd-hero .gd-lead{font-size:1.12rem;line-height:1.7;color:#cdd3da;max-width:38rem;margin-bottom:1.6rem;}
.gd-checks{list-style:none;padding:0;margin:2.5rem 0 2.25rem;display:grid;gap:.6rem;}
.gd-checks li{display:flex;align-items:flex-start;gap:.65rem;font-size:.97rem;color:#e7ebef;}
.gd-checks i{color:#fff;font-size:1.05rem;margin-top:.15rem;flex:none;}
.gd-cta-row{display:flex;flex-wrap:wrap;gap:1rem;}
.gd-cta-row .btn{border-radius:0!important;}
.gd-btn-light{background:#fff!important;color:#14171c!important;border:2px solid #fff!important;}
.gd-btn-light:hover{background:#e7ebef!important;border-color:#e7ebef!important;}
.gd-btn-ghost{background:transparent!important;color:#fff!important;border:2px solid rgba(255,255,255,.55)!important;}
.gd-btn-ghost:hover{background:#fff!important;color:#14171c!important;border-color:#fff!important;}
.gd-stats{display:flex;flex-wrap:wrap;gap:2.75rem;margin-top:2.25rem;padding-top:1.75rem;border-top:1px solid rgba(255,255,255,.18);}
.gd-stat .n{font-size:1.85rem;font-weight:700;color:#fff;line-height:1;}
.gd-stat .l{font-size:.82rem;color:#a7b0bb;margin-top:.35rem;max-width:12rem;}

/* ===== USAGE SECTION ===== */
.gd-usage{padding:4.5rem 0 0;}
.gd-sec-head{max-width:46rem;margin:0 auto 2.75rem;text-align:center;}
.gd-sec-head h2{font-size:clamp(1.8rem,3.5vw,2.4rem);font-weight:700;color:var(--black);margin-bottom:.75rem;}
.gd-sec-head p{color:#6b7180;font-size:1.05rem;margin:0;}
.gd-card{height:100%;background:#fff;border:1px solid #e6e8ec;border-radius:14px;padding:1.75rem;transition:transform .2s ease,box-shadow .2s ease;}
.gd-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -22px rgba(16,19,26,.28);}
.gd-card-ico{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:#eef1f4;color:#3a4048;font-size:1.35rem;margin-bottom:1.1rem;}
.gd-card h3{font-size:1.12rem;font-weight:600;color:var(--black);margin-bottom:.9rem;}
.gd-card ul{list-style:none;padding:0;margin:0;display:grid;gap:.45rem;}
.gd-card ul li{position:relative;padding-left:1.1rem;font-size:.88rem;color:#4a4f59;line-height:1.4;}
.gd-card ul li::before{content:"";position:absolute;left:0;top:.5em;width:5px;height:5px;border-radius:50%;background:#8a929c;}
.gd-principle{margin-top:3.5rem;background:#fff;border:1px solid #e6e8ec;border-radius:16px;overflow:hidden;}
.gd-principle .p-body{padding:2.5rem;}
.gd-principle h2{font-size:1.5rem;font-weight:700;color:var(--black);margin-bottom:1.25rem;}
.gd-principle p{color:#4a4f59;line-height:1.75;font-size:.95rem;margin-bottom:1rem;}
.gd-lit{background:#f5f6f8;border-left:1px solid #e6e8ec;height:100%;}
.gd-lit .category-documents-title{font-size:1.15rem;margin-bottom:1.1rem;}
/* END nitrogen generator landing */

/* skip-link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1080;
    padding: 0.75rem 1.25rem;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
    color: var(--white);
}
/* END skip-link */

/* site-logo */
.site-logo mask,
.footer-logo mask {
    mask-type: alpha;
}
/* END site-logo */

/* form-honeypot */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* END form-honeypot */

/* form-message */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.form-message--success {
    background-color: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.35);
    color: #14653c;
}

.form-message--error {
    background-color: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.35);
    color: #a02531;
}

.contact-form-input.is-invalid {
    border-color: #dc3545;
}

.contact-form [data-validate-for] {
    display: block;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}
/* END form-message */

/* icon-flip-x */
.icon-flip-x {
    transform: scaleX(-1);
}
/* END icon-flip-x */

/* service-content */
.service-content-text h2 {
    font-size: calc(1.3rem + 0.6vw);
}
/* END service-content */
