/* =========================================================
   GEO BASE PAGE
   Shared navbar, mobile navigation, footer, and responsiveness
========================================================= */

:root {
    --nav-height: 69px;
    --nav-height-tablet: 76px;
    --nav-height-mobile: 70px;
    --black: #000000;
    --white: #ffffff;
    --gray: #868686;
    --muted: #9a9a9a;
    --olive: #3d4519;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    padding-top: var(--nav-height);
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
    font-family: "Geologica", sans-serif;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

img,
video {
    max-width: 100%;
}

button,
a {
    font: inherit;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4b5320;
    z-index: 99999;
    pointer-events: none;
    transition: width .25s ease, opacity .3s ease;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 22px;
    background: var(--white);
    transform: translateY(0);
    will-change: transform;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), background-color .6s ease;
}

.navbar.nav-hidden {
    transform: translateY(-105%);
    pointer-events: none;
}

.navbar:not(.nav-hidden) {
    transform: translateY(0);
    pointer-events: auto;
}

.navbar.defense-active {
    background: var(--olive);
}

.navbar.nav-hidden .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 29px;
}

.nav-menu {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
}

.nav-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.nav-item {
    position: relative;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -16px;
    width: calc(100% + 32px);
    height: 24px;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

.nav-menu a,
.nav-actions a {
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    transition: color .25s ease;
}

.nav-menu a:hover,
.nav-actions a:hover {
    color: #808080;
}

.nav-link-active {
    position: relative;
    color: #808080 !important;
}

.nav-link-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #808080;
}

.nav-separator {
    width: 2px;
    height: 19px;
    background: #a8a8a7;
}

.defense-link span {
    color: var(--olive);
    font-weight: 700;
}

.search-link,
.company-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-link .material-icons {
    font-size: 16px;
}

.company-link {
    font-weight: 600;
}

.company-icon,
.list-icon {
    position: relative;
    width: 11px;
    height: 11px;
    display: inline-block;
    flex: 0 0 auto;
}

.icon-plus,
.icon-minus,
.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: opacity .55s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.icon-plus,
.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus,
.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.dropdown-categories li:hover .icon-plus,
.consumer-col li:hover .icon-plus,
.company-col li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.dropdown-categories li:hover .icon-minus,
.consumer-col li:hover .icon-minus,
.company-col li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* =========================
   DESKTOP MEGA MENUS
========================= */

.nav-dropdown {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    z-index: 999;
    width: 100%;
    height: 288px;
    display: flex;
    gap: 176px;
    padding: 44px 56px;
    background: var(--gray);
    color: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-28px);
    transition: opacity .4s ease, transform .8s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .4s;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .4s ease, transform .8s cubic-bezier(.16, 1, .3, 1), visibility 0s linear 0s;
}

.dropdown-info {
    width: 336px;
    flex: 0 0 auto;
}

.dropdown-info h4,
.dropdown-categories h4,
.consumer-col h4,
.company-col h4 {
    margin-bottom: 28px;
    color: var(--black);
    font-size: 13px;
}

.dropdown-info p {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}

.dropdown-categories ul,
.consumer-col ul,
.company-col ul {
    list-style: none;
}

.dropdown-categories li,
.consumer-col li,
.company-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.dropdown-categories li a,
.company-col li a {
    color: inherit;
    text-decoration: none;
}

.defense-dropdown {
    background: var(--olive);
}

.defense-dropdown .dropdown-categories li a:hover {
    color: #dddddd;
}

.consumer-dropdown {
    min-height: 288px;
    height: auto;
    gap: 32px;
    padding: 44px 32px;
}

.consumer-col {
    flex: 1;
    min-width: 0;
}

.consumer-col h4 {
    margin-bottom: 10px;
}

.consumer-col p {
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 1.5;
}

.consumer-separator {
    width: 1px;
    margin: 0 16px;
    background: var(--black);
}

.toro {
    color: #ff0000;
    font-weight: 700;
}

.company-dropdown {
    gap: 96px;
}

.company-grid {
    display: flex;
    gap: 64px;
}

.company-grid .company-col:nth-child(1) {
    margin-left: 96px;
}

.company-grid .company-col:nth-child(2) {
    margin-left: 40px;
}

.company-social {
    margin-top: 28px;
}

.company-social h4 {
    margin-bottom: 8px;
}

.page-content.blur {
    filter: blur(6px);
    pointer-events: none;
    transition: filter .3s ease;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-menu-btn {
    display: none;
    position: relative;
    z-index: 1002;
    margin-left: auto;
    padding: 6px;
    border: 0;
    background: none;
    color: var(--black);
    cursor: pointer;
}

.mobile-menu-btn .material-icons {
    font-size: 34px;
}

.mobile-menu-panel {
    position: fixed;
    top: var(--nav-height-tablet);
    left: 0;
    z-index: 1001;
    width: 100%;
    height: calc(100dvh - var(--nav-height-tablet));
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 30px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-panel a {
    color: var(--black);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
}

/* =========================
   EMPTY PAGE AREA
========================= */

.page-content {
    width: 100%;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-main {
    flex: 1 0 auto;
    width: 100%;
    min-height: 320px;
    background: var(--white);
}

/* =========================
   FOOTER
========================= */

.footer {
    flex: 0 0 auto;
    width: 100%;
    min-height: 336px;
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 64px;
    padding: 37px 26px 29px;
    background: var(--black);
    color: var(--white);
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    width: auto;
    height: 26px;
    object-fit: contain;
    margin-bottom: 124px;
}

.footer-address h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.footer-address p {
    color: var(--white);
    font-size: 11px;
    line-height: 1.45;
    font-weight: 400;
}

.footer-line {
    width: 176px;
    height: 1px;
    margin: 14px 0;
    background: #999999;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px;
    padding-top: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-toggle {
    display: flex;
    margin: 0 0 27px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--muted);
    font: 700 12px "Geologica", sans-serif;
    text-align: left;
    pointer-events: none;
}

.footer-toggle .footer-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
    transition: color .25s ease;
}

.footer-links a:hover {
    color: #808080;
}

/* =========================
   SCROLL TO TOP
========================= */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 950;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .88);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .25s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--olive);
}

body.mobile-menu-open .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 1100px) {
    body {
        padding-top: var(--nav-height-tablet);
    }

    .navbar {
        height: var(--nav-height-tablet);
        padding: 0 22px;
        justify-content: space-between;
    }

    .navbar.nav-hidden {
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-logo {
        flex: unset;
    }

    .nav-logo img {
        width: auto !important;
        max-width: min(72vw, 320px);
        height: 32px;
        object-fit: contain;
    }

    .nav-menu,
    .nav-actions,
    .nav-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .page-content.blur {
        filter: none;
        pointer-events: auto;
    }

    .page-content {
        min-height: calc(100vh - var(--nav-height-tablet));
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: var(--nav-height-mobile);
    }

    .navbar {
        height: var(--nav-height-mobile);
        padding: 0 16px;
    }

    .nav-logo img {
        max-width: min(70vw, 280px);
        height: 30px;
    }

    .mobile-menu-panel {
        top: var(--nav-height-mobile);
        height: calc(100dvh - var(--nav-height-mobile));
        padding: 28px 20px;
    }

    .page-content {
        min-height: calc(100vh - var(--nav-height-mobile));
    }

    .page-main {
        min-height: 220px;
    }

    .footer {
        gap: 38px;
        padding: 38px 22px;
    }

    .footer-logo {
        width: auto !important;
        height: 30px;
        margin-bottom: 48px;
    }

    .footer-addresses {
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 1px 1fr;
        gap: 18px;
    }

    .footer-line {
        width: 1px;
        height: 100%;
        min-height: 110px;
        margin: 0;
        background: #4a4a4a;
    }

    .footer-address h4 {
        color: var(--muted);
        font-size: 13px;
    }

    .footer-address p {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 18px;
    }

    .footer-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 26px 0;
        color: #8f8f8f;
        font-size: 14px;
        pointer-events: auto;
        cursor: pointer;
    }

    .footer-toggle .footer-icon {
        display: inline-flex;
        color: var(--white);
        font-size: 28px;
        line-height: 1;
    }

    .footer-links {
        max-height: 0;
        gap: 8px;
        overflow: hidden;
        opacity: 0;
        transition: max-height .45s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
    }

    .footer-col.active .footer-links {
        max-height: 280px;
        padding-bottom: 22px;
        opacity: 1;
    }

    .footer-links a {
        font-size: 21px;
        font-weight: 500;
        line-height: 1.45;
    }

    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        max-width: 68vw;
        height: 27px;
    }

    .page-main {
        min-height: 180px;
    }

    .footer {
        padding-right: 18px;
        padding-left: 18px;
    }

    .footer-addresses {
        grid-template-columns: 1fr;
    }

    .footer-line {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 16px 0;
    }

    .footer-links a {
        font-size: 19px;
    }

    .scroll-to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   GEO NAVIGATION — BLACK THEME
   Authoritative overrides for desktop and mobile navigation
========================================================= */

/* Main navbar */
.navbar,
.navbar.defense-active {
    background: var(--black);
    color: var(--white);
}

/* The HTML currently uses the dark logo, so convert it to white */
.nav-logo img {
    filter: brightness(0) invert(1);
}

/* Desktop navigation links */
.nav-menu a,
.nav-actions a,
.nav-item > a,
.search-link,
.company-link,
.defense-link,
.defense-link span {
    color: var(--white);
}

.nav-menu a:hover,
.nav-actions a:hover,
.nav-item > a:hover {
    color: #b8b8b8;
}

.nav-link-active {
    color: #b8b8b8 !important;
}

.nav-link-active::after {
    background: #b8b8b8;
}

.nav-separator {
    background: #4a4a4a;
}

/* Search, company, plus, and minus icons */
.search-link .material-icons,
.mobile-menu-btn,
.company-icon,
.list-icon,
.icon-plus,
.icon-minus {
    color: var(--white);
}

/* All desktop dropdown panels */
.nav-dropdown,
.consumer-dropdown,
.company-dropdown,
.defense-dropdown {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

/* All dropdown headings and copy */
.nav-dropdown .dropdown-info h4,
.nav-dropdown .dropdown-categories h4,
.nav-dropdown .consumer-col h4,
.nav-dropdown .company-col h4,
.nav-dropdown .dropdown-info p,
.nav-dropdown .consumer-col p,
.nav-dropdown .company-social,
.nav-dropdown .company-social h4,
.nav-dropdown .company-social p {
    color: var(--white);
}

/* All dropdown list items and links */
.nav-dropdown .dropdown-categories li,
.nav-dropdown .consumer-col li,
.nav-dropdown .company-col li,
.nav-dropdown .dropdown-categories li a,
.nav-dropdown .company-col li a,
.defense-dropdown .dropdown-categories li,
.defense-dropdown .dropdown-categories li a {
    color: var(--white);
}

.nav-dropdown .dropdown-categories li:hover,
.nav-dropdown .consumer-col li:hover,
.nav-dropdown .company-col li:hover,
.nav-dropdown .dropdown-categories li a:hover,
.nav-dropdown .company-col li a:hover,
.defense-dropdown .dropdown-categories li a:hover {
    color: #b8b8b8;
}

/* Divider inside Consumer Products dropdown */
.consumer-separator {
    background: #444444;
}

/* Keep TORO brand accent */
.toro {
    color: #ff0000;
}

/* Mobile navigation */
.mobile-menu-btn {
    color: var(--white);
}

.mobile-menu-panel {
    background: var(--black);
    border-top: 1px solid #242424;
}

.mobile-menu-panel a {
    color: var(--white);
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a[aria-current="page"] {
    color: #b8b8b8;
}

/* Prevent mobile navbar overrides from restoring light colors */
@media (max-width: 1100px) {
    .navbar,
    .navbar.defense-active {
        background: var(--black);
    }

    .mobile-menu-btn,
    .mobile-menu-btn .material-icons {
        color: var(--white);
    }
}

/* =========================================================
   GEO INTRO — REFERENCE IMAGE LAYOUT
   Full-width black field, oversized title, lower information row
========================================================= */

.page-main {
    width: 100%;
    max-width: none;
    min-height: 0;
    background: #000000;
}

.geo-intro {
    width: 100%;
    max-width: none;
    min-height: calc(80svh - var(--nav-height));
    background: #000000;
    color: #ffffff;
    overflow: hidden;
}

.geo-intro__inner {
    width: 100%;
    min-height: calc(80svh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        0
        clamp(28px, 2vw, 38px)
        clamp(72px, 9vh, 92px);
}

/* Large lower-left product name */
.geo-intro__title {
    margin: 0 0 clamp(68px, 10vh, 88px);
    color: #ffffff;
    font-family: "Geologica", sans-serif;
    font-size: clamp(150px, 11vw, 205px);
    font-weight: 600;
    line-height: .78;
    letter-spacing: -.075em;
}

/* Bottom information row */
.geo-intro__details {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(250px, 280px)
        minmax(420px, 510px)
        1fr;
    column-gap: clamp(26px, 2vw, 38px);
    align-items: start;
}

.geo-intro__classification {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.geo-intro__eyebrow,
.geo-intro__category,
.geo-intro__description {
    margin: 0;
    color: #ffffff;
    font-family: "Geologica", sans-serif;
    font-size: clamp(12px, .78vw, 15px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.geo-intro__eyebrow {
    white-space: nowrap;
}

.geo-intro__category {
    margin-top: clamp(34px, 5vh, 48px);
    white-space: nowrap;
}

/* Add the technical brackets shown in the reference */
.geo-intro__category::before {
    content: "[ ";
}

.geo-intro__category::after {
    content: " ]";
}

.geo-intro__description {
    width: 100%;
    max-width: 510px;
}

/* Large desktop screens */
@media (min-width: 1600px) {
    .geo-intro__inner {
        padding-right: 36px;
        padding-left: 36px;
    }

    .geo-intro__title {
        font-size: 205px;
    }

    .geo-intro__details {
        grid-template-columns: 270px 510px 1fr;
        column-gap: 38px;
    }
}

/* Tablet and compact desktop */
@media (max-width: 1100px) {
    .geo-intro {
        min-height: calc(100svh - var(--nav-height-tablet));
    }

    .geo-intro__inner {
        min-height: calc(100svh - var(--nav-height-tablet));
        padding:
            0
            24px
            clamp(56px, 8vh, 76px);
    }

    .geo-intro__title {
        margin-bottom: 64px;
        font-size: clamp(118px, 16vw, 165px);
    }

    .geo-intro__details {
        grid-template-columns: minmax(215px, 250px) minmax(360px, 470px);
        column-gap: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .geo-intro {
        min-height: calc(100svh - var(--nav-height-mobile));
    }

    .geo-intro__inner {
        min-height: calc(100svh - var(--nav-height-mobile));
        justify-content: flex-end;
        padding: 0 20px 42px;
    }

    .geo-intro__title {
        margin-bottom: 58px;
        font-size: clamp(88px, 27vw, 145px);
        line-height: .82;
        letter-spacing: -.065em;
    }

    .geo-intro__details {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .geo-intro__eyebrow,
    .geo-intro__category,
    .geo-intro__description {
        font-size: 12px;
        line-height: 1.2;
    }

    .geo-intro__category {
        margin-top: 24px;
    }

    .geo-intro__description {
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    .geo-intro__inner {
        padding-right: 16px;
        padding-bottom: 34px;
        padding-left: 16px;
    }

    .geo-intro__title {
        margin-bottom: 48px;
        font-size: clamp(76px, 26vw, 110px);
    }

    .geo-intro__details {
        row-gap: 30px;
    }

    .geo-intro__eyebrow,
    .geo-intro__category,
    .geo-intro__description {
        font-size: 11px;
    }
}

/* =========================================================
   GEO VIDEO SECTION
   Full-width rectangular screen with 25px side margins
========================================================= */

.geo-video {
    width: 100%;
    padding: 0 25px 25px;
    background: #000000;
}

.geo-video__screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111111;
}

.geo-video__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #111111;
}

/* Keep the exact 25px desktop margins, then tighten on small screens */
@media (max-width: 768px) {
    .geo-video {
        padding-right: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 480px) {
    .geo-video {
        padding-right: 12px;
        padding-bottom: 12px;
        padding-left: 12px;
    }
}



/* =========================================================
   GEO FEATURES SECTION
   Dark editorial layout with product visual and image gallery
========================================================= */

.geo-features {
    width: 100%;
    padding:
        clamp(88px, 10vw, 150px)
        25px
        clamp(96px, 11vw, 170px);
    background: #000000;
    color: #ffffff;
    border-top: 1px solid #242424;
}

.geo-features__header {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: start;
    padding-bottom: clamp(70px, 9vw, 130px);
}

.geo-features__index {
    margin: 6px 0 0;
    color: #8f8f8f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
}

.geo-features__heading {
    max-width: 900px;
}

.geo-features__heading h2 {
    margin: 0;
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(50px, 6.3vw, 108px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.065em;
}

.geo-features__heading > p {
    max-width: 610px;
    margin: clamp(34px, 4vw, 58px) 0 0 auto;
    color: #a5a5a5;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.55;
}

.geo-features__showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(28px, 4vw, 70px);
    align-items: stretch;
}

.geo-features__product {
    min-width: 0;
    margin: 0;
}

.geo-features__product-stage {
    position: relative;
    min-height: clamp(620px, 62vw, 980px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 43%, #252525 0, #101010 34%, #050505 72%);
    border: 1px solid #222222;
}

.geo-features__product-stage::before,
.geo-features__product-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.geo-features__product-stage::before {
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.geo-features__product-stage::after {
    left: 50%;
    bottom: 7%;
    width: 46%;
    height: 4%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    filter: blur(22px);
    transform: translateX(-50%);
}

.geo-features__product-stage img {
    position: relative;
    z-index: 1;

    width: auto;
    height: 50%;
    max-width: 50%;
    max-height: 980px;

    object-fit: contain;
    object-position: center;
    display: block;
    filter: contrast(1.04);
}

.geo-features__product figcaption,
.geo-gallery-card figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
    color: #8f8f8f;
    font-size: 10px;
    letter-spacing: .08em;
}

.geo-features__capabilities {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #363636;
}

.geo-capability {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(25px, 2.7vw, 42px) 0;
    border-bottom: 1px solid #363636;
}

.geo-capability__number {
    padding-top: 4px;
    color: #707070;
    font-size: 10px;
    letter-spacing: .08em;
}

.geo-capability h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: clamp(20px, 1.65vw, 29px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.geo-capability p {
    max-width: 520px;
    margin: 0;
    color: #9b9b9b;
    font-size: clamp(13px, .95vw, 16px);
    line-height: 1.55;
}

.geo-features__gallery {
    display: grid;
    grid-template-columns: 1.35fr .825fr .825fr;
    gap: 14px;
    margin-top: clamp(90px, 11vw, 170px);
}

.geo-gallery-card {
    min-width: 0;
    margin: 0;
}

.geo-gallery-card__image {
    width: 100%;
    height: clamp(420px, 40vw, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(14px, 2vw, 28px);
    background: #101010;
    border: 1px solid #242424;
}

.geo-gallery-card--wide .geo-gallery-card__image {
    padding: 0;
}

.geo-gallery-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.geo-gallery-card--wide .geo-gallery-card__image img {
    object-fit: cover;
}

/* Compact desktop and tablet */
@media (max-width: 1100px) {
    .geo-features {
        padding-right: 20px;
        padding-left: 20px;
    }

    .geo-features__header {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 40px;
    }

    .geo-features__showcase {
        grid-template-columns: 1fr;
    }

    .geo-features__product-stage {
        min-height: clamp(560px, 88vw, 850px);
    }

    .geo-features__product-stage img {
        max-width: 52%;
    }

    .geo-features__gallery {
        grid-template-columns: 1fr 1fr;
    }

    .geo-gallery-card--wide {
        grid-column: 1 / -1;
    }

    .geo-gallery-card__image {
        height: clamp(380px, 58vw, 620px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .geo-features {
        padding:
            76px
            16px
            96px;
    }

    .geo-features__header {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 66px;
    }

    .geo-features__index {
        margin-top: 0;
    }

    .geo-features__heading h2 {
        font-size: clamp(48px, 15vw, 82px);
    }

    .geo-features__heading > p {
        margin: 32px 0 0;
        font-size: 14px;
    }

    .geo-features__product-stage {
        min-height: clamp(500px, 135vw, 720px);
    }

    .geo-features__product-stage img {
        max-width: 68%;
        max-height: 78%;
    }

    .geo-capability {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 28px 0;
    }

    .geo-capability h3 {
        font-size: 22px;
    }

    .geo-capability p {
        font-size: 13px;
    }

    .geo-features__gallery {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 90px;
    }

    .geo-gallery-card--wide {
        grid-column: auto;
    }

    .geo-gallery-card__image {
        height: auto;
        min-height: 390px;
    }

    .geo-gallery-card--wide .geo-gallery-card__image {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .geo-features {
        padding-right: 12px;
        padding-left: 12px;
    }

    .geo-features__heading h2 {
        font-size: clamp(44px, 15vw, 68px);
    }

    .geo-features__product-stage {
        min-height: 440px;
    }

    .geo-features__product-stage img {
        max-width: 74%;
    }

    .geo-gallery-card__image {
        min-height: 330px;
        padding: 12px;
    }
}

/* =========================================================
   GEO GALLERY — PORTRAIT COVER FIX
   Fill each card without stretching or distorting the images
========================================================= */

.geo-features__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

/* Do not make the first image wider than the other portrait images */
.geo-gallery-card--wide {
    grid-column: auto;
}

.geo-gallery-card__image,
.geo-gallery-card--wide .geo-gallery-card__image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 2 / 3;
    padding: 0;
    overflow: hidden;
    background: #101010;
    border: 1px solid #242424;
}

.geo-gallery-card__image img,
.geo-gallery-card--wide .geo-gallery-card__image img {
    width: 100%;
    height: 100%;
    display: block;

    /* Covers the frame while preserving the image aspect ratio */
    object-fit: cover;
    object-position: center center;

    /* Prevent inherited sizing or transforms from distorting it */
    max-width: none;
    max-height: none;
    transform: none;
}

/* Tablet */
@media (max-width: 1100px) {
    .geo-features__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .geo-gallery-card--wide {
        grid-column: auto;
    }

    .geo-gallery-card__image,
    .geo-gallery-card--wide .geo-gallery-card__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 2 / 3;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .geo-features__gallery {
        grid-template-columns: 1fr;
    }

    .geo-gallery-card__image,
    .geo-gallery-card--wide .geo-gallery-card__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 2 / 3;
    }
}

/* =========================================================
   GEO MODEL CARDS
   Two clipped technical cards placed directly after the video
========================================================= */

.geo-models {
    width: 100%;
    padding:
        clamp(82px, 8vw, 130px)
        25px
        clamp(88px, 9vw, 145px);
    background: #000000;
    color: #ffffff;
}

.geo-models__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(38px, 4vw, 62px);
}

.geo-models__eyebrow {
    margin: 0 0 8px;
    color: #858585;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
}

.geo-models__heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 82px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.055em;
}

.geo-models__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.geo-model-card {
    --corner-cut: clamp(22px, 2.2vw, 38px);

    position: relative;
    min-width: 0;
    min-height: clamp(590px, 48vw, 790px);
    display: flex;
    flex-direction: column;
    padding:
        clamp(26px, 2.4vw, 40px)
        clamp(28px, 2.8vw, 46px)
        clamp(24px, 2.3vw, 38px);
    overflow: hidden;
    background: #f2f1e9;
    color: #000000;

    clip-path: polygon(
        0 0,
        calc(100% - var(--corner-cut)) 0,
        100% var(--corner-cut),
        100% 100%,
        var(--corner-cut) 100%,
        0 calc(100% - var(--corner-cut))
    );
}

.geo-model-card h3 {
    margin: 0;
    color: #000000;
    font-size: clamp(16px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.geo-model-card__media {
    width: 100%;
    height: clamp(245px, 24vw, 390px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(22px, 2.7vw, 42px) 0 clamp(22px, 2.5vw, 38px);
    overflow: hidden;
}

.geo-model-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.geo-model-card__specs {
    margin: 0;
    border-top: 1px solid #000000;
}

.geo-model-card__specs > div {
    display: grid;
    grid-template-columns: minmax(115px, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    padding: 12px 0 11px;
    border-bottom: 1px solid #000000;
}

.geo-model-card__specs dt,
.geo-model-card__specs dd {
    margin: 0;
    color: #000000;
    font-size: clamp(10px, .72vw, 12px);
    line-height: 1.35;
}

.geo-model-card__specs dt {
    font-weight: 600;
    letter-spacing: .045em;
}

.geo-model-card__specs dd {
    font-weight: 400;
}

.geo-model-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 22px;
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    transition: gap .25s ease, opacity .25s ease;
}

.geo-model-card__link:hover {
    gap: 13px;
    opacity: .62;
}

/* Compact desktop and tablet */
@media (max-width: 1100px) {
    .geo-models {
        padding-right: 20px;
        padding-left: 20px;
    }

    .geo-models__heading {
        display: block;
    }

    .geo-models__eyebrow {
        margin-bottom: 18px;
    }

    .geo-model-card {
        min-height: 660px;
    }

    .geo-model-card__specs > div {
        grid-template-columns: 130px minmax(0, 1fr);
    }
}

/* Stack cards on smaller tablets and phones */
@media (max-width: 820px) {
    .geo-models__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .geo-model-card {
        min-height: 650px;
    }

    .geo-model-card__media {
        height: clamp(270px, 68vw, 460px);
    }
}

@media (max-width: 768px) {
    .geo-models {
        padding:
            72px
            16px
            96px;
    }

    .geo-models__heading {
        margin-bottom: 36px;
    }

    .geo-model-card {
        min-height: 610px;
        padding: 26px 24px 24px;
    }

    .geo-model-card__specs > div {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 16px;
    }

    .geo-model-card__specs dt,
    .geo-model-card__specs dd {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .geo-models {
        padding-right: 12px;
        padding-left: 12px;
    }

    .geo-model-card {
        --corner-cut: 22px;
        min-height: 560px;
        padding: 22px 18px;
    }

    .geo-model-card__media {
        height: 250px;
        margin: 22px 0;
    }

    .geo-model-card__specs > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }
}

/* =========================================================
   GEO MODEL CARDS — THREE-COLUMN DESKTOP GRID
   Two model cards retain one-third width each.
   The unused third column remains empty.
========================================================= */

.geo-models__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 28px);
    align-items: stretch;
}

/* Cards occupy only their assigned one-third grid columns */
.geo-model-card {
    width: 100%;
    min-width: 0;
    min-height: clamp(560px, 36vw, 720px);
}

/* Adjust the product area for the narrower one-third cards */
.geo-model-card__media {
    height: clamp(220px, 19vw, 330px);
}

/* Medium desktop/tablet: use two columns */
@media (max-width: 1100px) {
    .geo-models__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .geo-model-card {
        min-height: 650px;
    }

    .geo-model-card__media {
        height: clamp(260px, 34vw, 400px);
    }
}

/* Small tablet and mobile: stack the cards */
@media (max-width: 820px) {
    .geo-models__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   GEO CODED TECHNICAL DOCUMENTATION
========================================================= */

.geo-docs {
    width: 100%;
    margin-top: clamp(96px, 11vw, 170px);
}

.geo-docs__heading {
    display: grid;
    grid-template-columns: minmax(180px, 24%) minmax(0, 1fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: start;
    margin-bottom: clamp(52px, 7vw, 96px);
}

.geo-docs__eyebrow {
    margin: 6px 0 0;
    color: #777777;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
}

.geo-docs__heading-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 5.4vw, 92px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.055em;
}

.geo-docs__heading-copy > p {
    max-width: 650px;
    margin: clamp(28px, 3vw, 44px) 0 0 auto;
    color: #9a9a9a;
    font-size: clamp(13px, .95vw, 16px);
    line-height: 1.6;
}

.geo-docs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.geo-doc-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 1.8vw, 32px);
    background: #050505;
    border: 1px solid #2d2d2d;
    color: #ffffff;
}

.geo-doc-card__header {
    min-height: clamp(155px, 13vw, 220px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(22px, 2vw, 32px);
}

.geo-doc-card__header h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(29px, 2.35vw, 45px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.045em;
}

.geo-doc-card__header p {
    margin: 18px 0 0;
    color: #a5a5a5;
    font-size: clamp(9px, .67vw, 11px);
    letter-spacing: .28em;
}

.geo-doc-panel {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid #555555;
    border-radius: 8px;
}

.geo-doc-panel h4 {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid #444444;
    color: #ffffff;
    font-size: clamp(14px, 1.05vw, 20px);
    font-weight: 600;
    line-height: 1.2;
}

.geo-doc-panel__copy {
    margin: 0;
    padding: 18px 16px 20px;
    color: #dddddd;
    font-size: clamp(11px, .82vw, 14px);
    line-height: 1.65;
}

.geo-feature-list {
    padding: 0 16px;
}

.geo-feature-list__item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    padding: 15px 0;
    border-bottom: 1px solid #393939;
}

.geo-feature-list__item:last-child {
    border-bottom: 0;
}

.geo-feature-list__bullet {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.45;
}

.geo-feature-list__item p {
    margin: 0;
    color: #d5d5d5;
    font-size: clamp(10px, .75vw, 13px);
    line-height: 1.55;
}

.geo-feature-list__item strong {
    color: #ffffff;
    font-weight: 600;
}

.geo-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 0;
    padding: 18px 28px 22px;
    color: #dddddd;
}

.geo-highlight-grid li {
    font-size: clamp(10px, .74vw, 13px);
    line-height: 1.45;
}

.geo-spec-table {
    margin: 0;
}

.geo-spec-row {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    min-height: 48px;
    border-bottom: 1px solid #393939;
}

.geo-spec-row:last-child {
    border-bottom: 0;
}

.geo-spec-row dt,
.geo-spec-row dd {
    margin: 0;
    padding: 12px 14px;
    color: #dedede;
    font-size: clamp(9px, .68vw, 12px);
    line-height: 1.45;
}

.geo-spec-row dt {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-right: 1px solid #393939;
}

.geo-spec-row dt span {
    color: #ffffff;
    line-height: 1.25;
}

.geo-spec-row dd {
    color: #f0f0f0;
}

.geo-doc-note {
    margin: 18px 6px 0;
    color: #b8b8b8;
    font-size: 10px;
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

.geo-doc-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 22px;
    color: #777777;
    font-size: 9px;
    letter-spacing: .11em;
}

@media (max-width: 1250px) {
    .geo-docs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .geo-doc-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1100px) {
    .geo-docs__heading {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .geo-docs {
        margin-top: 90px;
    }

    .geo-docs__heading {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .geo-docs__heading-copy h2 {
        font-size: clamp(42px, 13vw, 72px);
    }

    .geo-docs__heading-copy > p {
        margin: 26px 0 0;
    }

    .geo-docs__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .geo-doc-card:nth-child(3) {
        grid-column: auto;
    }

    .geo-doc-card {
        padding: 20px 16px;
    }

    .geo-doc-card__header {
        min-height: 130px;
    }

    .geo-doc-card__header h3 {
        font-size: clamp(31px, 9vw, 48px);
    }

    .geo-doc-panel h4 {
        padding: 13px 14px;
        font-size: 17px;
    }

    .geo-spec-row {
        grid-template-columns: 1fr;
    }

    .geo-spec-row dt {
        padding-bottom: 7px;
        border-right: 0;
    }

    .geo-spec-row dd {
        padding-top: 4px;
        padding-left: 36px;
    }

    .geo-highlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .geo-doc-card {
        padding-right: 12px;
        padding-left: 12px;
    }

    .geo-doc-panel {
        border-radius: 6px;
    }

    .geo-doc-card__header h3 {
        font-size: clamp(28px, 9vw, 41px);
    }
}


/* =========================================================
   GEO MAIN MEDIA — IMAGE MODE
   Replaces the former video element while retaining layout.
========================================================= */

.geo-video__screen {
    position: relative;
    overflow: hidden;
}

img.geo-video__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   GLOBAL SEARCH DROPDOWN
   Controlled by assets/js/search.js
========================================================= */

.search-link {
    cursor: pointer;
}

/* =========================================================
   SEARCH PANEL
========================================================= */

.site-search-panel {
    position: fixed;
    top: 69px;
    left: 0;

    width: 100%;
    max-height: min(620px, calc(100vh - 69px));

    background: #000;
    color: #fff;

    z-index: 999;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-24px);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.45s;
}


/* OPEN STATE */
.site-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);

    transition:
        opacity 0.28s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0s;
}


/* =========================================================
   SEARCH INNER CONTAINER
========================================================= */

.site-search-inner {
    width: 100%;

    padding: 34px 42px 32px;

    max-height: min(620px, calc(100vh - 69px));

    overflow-y: auto;

    overscroll-behavior: contain;
}


/* =========================================================
   SEARCH TOP LINE
========================================================= */

.site-search-topline {
    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   SEARCH INPUT WRAPPER
========================================================= */

.site-search-field-wrap {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}


.site-search-field-wrap .material-icons {
    flex: 0 0 auto;

    color: #fff;

    font-size: 25px;
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.site-search-input {
    width: 100%;
    height: 62px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: "Geologica", sans-serif;

    font-size: clamp(24px, 2.2vw, 38px);

    font-weight: 400;

    letter-spacing: -0.02em;
}


.site-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


/* REMOVE DEFAULT SEARCH X */
.site-search-input::-webkit-search-cancel-button {
    display: none;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.site-search-close {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}


.site-search-close:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.70);
}


.site-search-close:active {
    transform: scale(0.94);
}


.site-search-close .material-icons {
    font-size: 22px;
}


/* =========================================================
   SEARCH HELPER TEXT
========================================================= */

.site-search-helper {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   SEARCH RESULTS CONTAINER
========================================================= */

.site-search-results {
    margin-top: 26px;
}


/* =========================================================
   SEARCH STATUS
========================================================= */

.site-search-status {
    padding: 12px 0 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* =========================================================
   SEARCH RESULT GRID
========================================================= */

.site-search-result-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 34px;
}


/* =========================================================
   INDIVIDUAL SEARCH RESULT
========================================================= */

.site-search-result {
    min-width: 0;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    text-decoration: none;

    transition:
        opacity 0.2s ease,
        padding-left 0.25s ease;
}


.site-search-result:hover {
    padding-left: 8px;
}


/* =========================================================
   RESULT CONTENT
========================================================= */

.site-search-result-main {
    min-width: 0;
}


/* =========================================================
   RESULT META
========================================================= */

.site-search-result-meta {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 8px 12px;

    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


/* PRODUCT ID */
.site-search-result-code {
    color: #aab36a;

    font-weight: 600;
}


/* =========================================================
   RESULT TITLE
========================================================= */

.site-search-result-title {
    color: #fff;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.25;
}


/* =========================================================
   RESULT DESCRIPTION
========================================================= */

.site-search-result-description {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   RESULT ARROW
========================================================= */

.site-search-result-arrow {
    color: rgba(255, 255, 255, 0.72);

    font-size: 23px;

    transition: transform 0.25s ease;
}


.site-search-result:hover .site-search-result-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.site-search-empty {
    padding: 24px 0 4px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   SEARCH OPEN STATE
   Prevent navbar mega menus opening over search
========================================================= */

body.site-search-open .nav-dropdown {
    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-search-panel {
        top: 76px;

        max-height: calc(100vh - 76px);
    }


    .site-search-inner {
        padding: 28px 24px 30px;

        max-height: calc(100vh - 76px);
    }


    .site-search-result-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-search-panel {
        top: 70px;

        max-height: calc(100svh - 70px);
    }


    .site-search-inner {
        padding: 24px 18px 28px;

        max-height: calc(100svh - 70px);
    }


    .site-search-topline {
        gap: 12px;
    }


    .site-search-field-wrap {
        gap: 10px;
    }


    .site-search-field-wrap .material-icons {
        font-size: 22px;
    }


    .site-search-input {
        height: 56px;

        font-size: 24px;
    }


    .site-search-close {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .site-search-helper {
        font-size: 11px;
    }


    .site-search-results {
        margin-top: 20px;
    }


    .site-search-result {
        padding: 16px 0;
    }


    .site-search-result-title {
        font-size: 17px;
    }


    .site-search-result-description {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-search-inner {
        padding-left: 15px;
        padding-right: 15px;
    }


    .site-search-input {
        font-size: 21px;
    }


    .site-search-close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }

}

/* =========================================================
   CUSTOM TEXT SELECTION COLOR
========================================================= */

::selection {
    background: #8A9460; /* light olive drab */
    color: #ffffff;
}

/* Firefox */
::-moz-selection {
    background: #8A9460;
    color: #ffffff;
}