: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 {
    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);
}

.top-bar-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lang-switch-btn:hover,
.lang-switch-btn.active {
    opacity: 1;
}

.lang-switch-sep {
    color: var(--white);
    opacity: 0.4;
    font-size: 0.75rem;
}

/* Google Translate widget container must stay rendered (not display:none)
   or the widget silently fails to build its internal select element -
   hide it off-screen instead */
#google_translate_element {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Hide the Google Translate top banner / tooltips */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body,
html {
    top: 0 !important;
}

/* Main Nav */
.main-nav {
    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);
}

/* Main Nav Dropdown */
.main-nav .dropdown-menu {
    position: absolute;
    background-color: var(--white);
    border: 1px solid rgba(16, 19, 26, 0.12);
    border-radius: 0.25rem;
    padding: 0.5rem 0;
    box-shadow: 0 0.25rem 0.75rem rgba(16, 19, 26, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
}

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

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

.main-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* ============================================================
   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-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;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.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;
}

@media (min-width: 576px) {
    .product-tabs-nav-desktop {
        display: flex;
    }
}

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

@media (min-width: 576px) {
    .product-tabs-nav-mobile {
        display: none;
    }
}

.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;
}