* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    font-family: "Geologica", sans-serif;
}
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #4B5320;
    z-index: 99999;

    transition:
        width 0.25s ease,
        opacity 0.3s ease;

    pointer-events: none;
}
/* ___________________________ */

/* Consumer Products Dropdown */
.consumer-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: 360px;

    display: flex;
    background: #f2f2f2;
    padding: 55px 40px;
    gap: 40px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.16,1,0.3,1),
        visibility 0s linear 0.4s;
    pointer-events: none;
}

.consumer-dropdown-item:hover .consumer-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.consumer-separator {
    width: 1px;
    background: #000000; /* or olive drab if you want colored */
    margin: 0 20px; /* spacing left/right */
}

/* Each column */
.consumer-col {
    flex: 1;
}

/* Headings */
.consumer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

/* Paragraphs */
.consumer-col p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* List */
.consumer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consumer-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 6px;
    cursor: pointer;
}

.toro {
    color: #FF0000; /* Bright Red */
    font-weight: 700; /* optional bold */
}

/* Plus / Minus hover icon */
.list-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.consumer-col li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.consumer-col li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}


/* =========================
   NAVBAR
========================= */

/* Normal navbar */
.navbar {
    width: 100%;
    height: 86px;
    background: #ffffff;

    display: flex;
    align-items: center;

    padding: 0 28px;

    position: sticky;
    top: 0;
    z-index: 1000;

    transition:
        background-color 0.6s ease,
        transform 0.35s ease;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-link-active {
    color: #3d4519 !important;
    position: relative;
}

.nav-link-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 100%;
    height: 2px;

    background: #3d4519;
}

/* Olive drab navbar */
.navbar.defense-active {
    background: #3d4519;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar.nav-hidden .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 56px;
}

.nav-menu {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 45px;
}

.nav-item {
    position: relative;
    height: 86px;
    display: flex;
    align-items: center;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 30px;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    height: auto;
    padding: 8px 0;
}

.nav-menu a,
.nav-actions a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-actions a:hover {
    color: #808080;
}

.nav-separator {
    width: 2px;
    height: 24px;
    background: #a8a8a7;
}

.defense-link span {
    color: #3d4519;
    font-weight: 700;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-link .material-icons {
    font-size: 20px;
}

/* COMPANY PLUS / MINUS ICON */

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.company-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.icon-plus,
.icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    font-weight: 500;

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}


/* DROPDOWN */

.nav-dropdown {
    position: fixed;
    top: 86px;
    left: 0;

    width: 100%;
    height: 360px;

    background: #868686;
    color: #000000;

    display: flex;
    gap: 220px;
    padding: 55px 70px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-35px);

    transition:
        opacity 0.4s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.4s;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        opacity 0.4s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0s;
}

.dropdown-info {
    width: 420px;
}

.dropdown-info h4,
.dropdown-categories h4 {
    font-size: 16px;
    margin-bottom: 35px;
}

.dropdown-info p {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.dropdown-categories ul {
    list-style: none;
}

.dropdown-categories li {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 3px;
}

.search-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-link .material-icons {
    font-size: 20px;
}

/* COMPANY PLUS / MINUS ICON */

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.company-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.icon-plus,
.icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    font-weight: 500;

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}
/* keep company aligned with nav-item system */
.company-item {
    position: relative;
}

/* reuse your existing nav-dropdown BUT adjust layout only for company */
.company-dropdown {
    gap: 120px; /* same spacing system */
}

/* override categories into 2-column grid */
.company-grid {
    display: flex;
    gap: 80px;
}

/* container stays normal flex */
.company-grid {
    display: flex;
    gap: 80px;
}

/* FIRST COLUMN (LEARN MORE) */
.company-grid .company-col:nth-child(1) {
    margin-left: 120px; /* keep default */
}

/* SECOND COLUMN (EXPLORE) */
.company-grid .company-col:nth-child(2) {
    margin-left: 50px; /* adjust this value freely */
}

/* columns inside company only */
.company-col h4 {
    font-size: 16px;
    margin-bottom: 35px;
    color: #000000;
}

.company-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* COMPANY LIST ITEMS WITH ICON */
.company-col li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 400;

    margin-bottom: 6px;
    cursor: pointer;
}

/* DELLA DEFENSE MEGA MENU */

.defense-dropdown {
    background: linear-gradient(
        180deg,
        #3d4519 0%,
        #3d4519 50%,
        #3d4519 100%
    );
}

.defense-dropdown .dropdown-info h4,
.defense-dropdown .dropdown-categories h4,
.defense-dropdown .dropdown-info p,
.defense-dropdown .dropdown-categories li {
    color: #ffffff;
}

/* DROPDOWN LIST PLUS / MINUS ICON */

.dropdown-categories li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 400;
    margin-bottom: 6px;

    cursor: pointer;
}

.list-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
    flex-shrink: 0;
}

.list-icon .icon-plus,
.list-icon .icon-minus {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
    font-weight: 500;

    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.list-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.list-icon .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.dropdown-categories li:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.dropdown-categories li:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}


/* Blur effect applied to the page content */
.page-content.blur {
    filter: blur(6px); /* adjust blur intensity */
    pointer-events: none; /* optional: prevent interaction while blurred */
    transition: filter 0.3s ease;
}




/* HERO SECTION */
.industrial-hero {
    position: relative;
    width: 100%;
    height: 64vh; /* DO NOT CHANGE */
    background: #ffffff; /* white background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    display: block;
    margin-bottom: 25px;
    padding-top: 150px;
    
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 70px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.6;
    color: #464545;
    max-width: 320px;
    margin-left: 360px
}

.hero-options {
    display: grid;

    grid-template-columns: repeat(4, auto);
    grid-row-gap: 18px;   /* IMPORTANT FIX */
    grid-column-gap: 0px;

    justify-content: end;
    margin-right:0px;
    margin-top: 380px;

    align-items: start;
}

/* Row 1 (4 items automatically go here) */

/* Row 2: force only 3 items, last column empty */
.hero-options button:nth-child(5) {
    grid-column: 1;
}

.hero-options button:nth-child(6) {
    grid-column: 2;
}

.hero-options button:nth-child(7) {
    grid-column: 3;
}

.hero-options button {
    width: calc(50% - 9px);
    text-align: left;
}
.hero-options button {
    background: transparent;
    border: none;

    width: 250px;          /* Fixed width for alignment */
    text-align: left;

    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 1px;

    cursor: pointer;

    text-transform: uppercase;
    color: #464545;

    text-decoration: underline;
    text-underline-offset: 3px;

    padding: 2px 0;

    white-space: normal;   /* Allow wrapping */
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.hero-options button:hover {
    color: #111;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* FULL SCREEN VIDEO PLACEHOLDER */
.industrial-video-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

.industrial-video-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.construction-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Geologica', sans-serif;
    background: #000;
}

/* MAIN TOP LAYOUT */
.construction-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 70px 60px;
    background: #000;
    color: #fff;

    gap: 140px; /* reduce from 280px */
}

/* LEFT SIDE (LABEL BLOCK) */
.construction-left {
    flex: 0 0 35%;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px; /* fine-tune baseline alignment */
}

.construction-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.construction-code {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* RIGHT SIDE (MAIN CONTENT) */
.construction-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    min-width: 0; /* IMPORTANT: allows proper text expansion control */
}

.construction-left,
.construction-right {
    padding-top: 10px; /* fine-tune baseline alignment */
}

/* CONTENT CONTAINER */
.construction-content {
    width: 100%;
    max-width: 720px; /* increase real readable width */
}

/* TITLE */
.construction-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.construction-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;

    margin-bottom: 30px;

    max-width: 62ch; /* THIS controls line count precisely */
}

.construction-btn {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 1px;

    color: #fff;
    text-decoration: none;

    background-color: transparent;
    border: 1px solid #fff;

    padding: 0.5rem 0.7rem;

    transition: all 0.25s ease;
}

/* HOVER STATE */
.construction-btn:hover {
    background-color: #fff;
    color: #000;
}

/* IMAGE */
.construction-box {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: #7e7e7e;
    
}

.construction-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   FOOTER
========================= */

.footer {
    width: 100%;
    min-height: 420px;
    background: #000;
    color: #fff;

    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 80px;

    padding: 46px 32px 36px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;

    margin-bottom: 155px;
}

.footer-addresses {
    margin-top: 0;
}

.footer-address h4,
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
}

.footer-line {
    width: 220px;
    height: 1px;
    background: #999;
    margin: 18px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    padding-top: 12px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: #9a9a9a;
    margin-bottom: 34px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.footer-col a:hover {
    color: #808080;
}



/* =========================================================
   TIER1 — 80% VISUAL SCALE
   Same layout and same section heights.
   Navbar is unchanged.
   Only sizes, spacing, typography, and widths are reduced.
========================================================= */

@media (min-width: 1101px) {

    /* CONSUMER DROPDOWN */
    .consumer-dropdown {
        min-height: 288px;
        padding: 44px 32px;
        gap: 32px;
        transform: translateY(-16px);
    }

    .consumer-separator {
        margin: 0 16px;
    }

    .consumer-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .consumer-col p {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .consumer-col li {
        gap: 8px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .list-icon,
    .company-icon {
        width: 11px;
        height: 11px;
    }

    .list-icon .icon-plus,
    .list-icon .icon-minus,
    .icon-plus,
    .icon-minus {
        font-size: 14px;
    }

    /* DROPDOWNS ONLY — NAVBAR HEIGHT AND MAIN NAVBAR STAY UNCHANGED */
    .nav-dropdown {
        height: 288px;
        gap: 176px;
        padding: 44px 56px;
        transform: translateY(-28px);
    }

    .dropdown-info {
        width: 336px;
    }

    .dropdown-info h4,
    .dropdown-categories h4,
    .company-col h4 {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .dropdown-info p {
        font-size: 13px;
    }

    .dropdown-categories li,
    .company-col li {
        gap: 8px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .company-dropdown {
        gap: 96px;
    }

    .company-grid {
        gap: 64px;
    }

    .company-grid .company-col:nth-child(1) {
        margin-left: 96px;
    }

    .company-grid .company-col:nth-child(2) {
        margin-left: 40px;
    }

    /* HERO — HEIGHT REMAINS 64vh */
    .industrial-hero {
        padding: 0 32px;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 52px;
        margin-bottom: 56px;
    }

    .hero-description {
        font-size: 11px;
        max-width: 256px;
        margin-left: 288px;
    }

    .hero-options {
        grid-row-gap: 14px;
        margin-top: 304px;
    }

    .hero-options button {
        width: 200px;
        font-size: 10px;
        letter-spacing: 0.8px;
        padding: 2px 0;
    }

    /* VIDEO HEIGHT REMAINS 100vh */

    /* CONSTRUCTION TOP */
    .construction-top {
        padding: 56px 48px;
        gap: 112px;
    }

    .construction-left {
        gap: 12px;
        margin-top: 16px;
    }

    .construction-left,
    .construction-right {
        padding-top: 8px;
    }

    .construction-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .construction-code {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .construction-content {
        max-width: 576px;
    }

    .construction-content h2 {
        font-size: 31px;
        margin-bottom: 16px;
    }

    .construction-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .construction-btn {
        font-size: 14px;
        letter-spacing: 0.8px;
        padding: 0.4rem 0.56rem;
    }

    /* CONSTRUCTION BOX HEIGHT REMAINS 70vh */

    /* FOOTER */
    .footer {
        gap: 64px;
        padding: 37px 26px 29px;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 124px;
    }

    .footer-address h4,
    .footer-col h4 {
        font-size: 12px;
    }

    .footer-address h4 {
        margin-bottom: 8px;
    }

    .footer-address p {
        font-size: 11px;
    }

    .footer-line {
        width: 176px;
        margin: 14px 0;
    }

    .footer-columns {
        gap: 72px;
        padding-top: 10px;
    }

    .footer-col h4 {
        margin-bottom: 27px;
    }

    .footer-col a {
        font-size: 12px;
    }
}


/* FULL-WIDTH COVER SUPPORT — NO HEIGHT OR LAYOUT CHANGES */
html,
body,
.page-content,
.industrial-hero,
.industrial-video-section,
.construction-section,
.construction-top,
.construction-box,
.footer {
    width: 100%;
    max-width: none;
}

html,
body {
    overflow-x: hidden;
}

.page-content {
    margin: 0;
}

.industrial-video-section,
.construction-box {
    background-size: cover;
    background-position: center;
}

.industrial-video-section img,
.industrial-video-section video,
.construction-box img,
.construction-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   FINAL TIER1 RESPONSIVE OVERRIDES
   80%-STYLE DESKTOP SCALE + FULL-WIDTH COVER
   No CSS zoom and no page-level transform scaling
   ========================================================= */

html,
body {
    width: 100%;
    max-width: none;
    overflow-x: hidden;
}

body,
.page-content,
.navbar,
.nav-dropdown,
.consumer-dropdown,
.industrial-hero,
.industrial-video-section,
.construction-section,
.construction-top,
.construction-box,
.footer {
    width: 100%;
    max-width: none;
}

.industrial-hero,
.industrial-video-section,
.construction-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industrial-video-section img,
.industrial-video-section video,
.construction-box img,
.construction-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================
   DESKTOP — 80% VISUAL SCALE
========================= */

@media (min-width: 1101px) {

    /* NAVBAR */
    .navbar {
        height: 69px;
        padding: 0 22px;
    }

    .nav-logo img {
        height: 45px;
    }

    .nav-menu {
        gap: 27px;
    }

    .nav-actions {
        gap: 36px;
    }

    .nav-item {
        height: 69px;
    }

    .nav-item::after {
        left: -16px;
        width: calc(100% + 32px);
        height: 24px;
    }

    .nav-item > a {
        padding: 6px 0;
    }

    .nav-menu a,
    .nav-actions a {
        font-size: 12px;
    }

    .nav-separator {
        width: 1px;
        height: 19px;
    }

    .search-link {
        gap: 6px;
    }

    .search-link .material-icons {
        font-size: 16px;
    }

    .nav-link-active::after {
        height: 1px;
    }

    /* DROPDOWNS */
    .nav-dropdown {
        top: 69px;
        height: 288px;
        gap: 176px;
        padding: 44px 56px;
        transform: translateY(-28px);
    }

    .consumer-dropdown {
        min-height: 288px;
        padding: 44px 32px;
        gap: 32px;
        transform: translateY(-16px);
    }

    .consumer-separator {
        margin: 0 16px;
    }

    .consumer-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .consumer-col p {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .consumer-col li,
    .dropdown-categories li,
    .company-col li {
        gap: 8px;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .dropdown-info {
        width: 336px;
    }

    .dropdown-info h4,
    .dropdown-categories h4,
    .company-col h4 {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .dropdown-info p {
        font-size: 13px;
    }

    .company-link {
        gap: 6px;
    }

    .company-icon,
    .list-icon {
        width: 11px;
        height: 11px;
    }

    .icon-plus,
    .icon-minus,
    .list-icon .icon-plus,
    .list-icon .icon-minus {
        font-size: 14px;
    }

    .company-dropdown {
        gap: 96px;
    }

    .company-grid {
        gap: 64px;
    }

    .company-grid .company-col:nth-child(1) {
        margin-left: 96px;
    }

    .company-grid .company-col:nth-child(2) {
        margin-left: 40px;
    }

    /* HERO */
    .industrial-hero {
        height: 51.2vh;
        min-height: 520px;
        padding: 0 32px;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 52px;
        margin-bottom: 56px;
    }

    .hero-description {
        font-size: 11px;
        max-width: 256px;
        margin-left: 288px;
    }

    .hero-options {
        grid-row-gap: 14px;
        margin-top: 304px;
    }

    .hero-options button {
        width: 200px;
        font-size: 10px;
        letter-spacing: 0.8px;
        padding: 2px 0;
    }

    /* VIDEO */
    .industrial-video-section {
        height: 80vh;
        min-height: 560px;
    }

    /* CONSTRUCTION */
    .construction-top {
        padding: 56px 48px;
        gap: 112px;
    }

    .construction-left {
        gap: 12px;
        margin-top: 16px;
    }

    .construction-left,
    .construction-right {
        padding-top: 8px;
    }

    .construction-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .construction-code {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .construction-content {
        max-width: 576px;
    }

    .construction-content h2 {
        font-size: 31px;
        margin-bottom: 16px;
    }

    .construction-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .construction-btn {
        font-size: 14px;
        letter-spacing: 0.8px;
        padding: 0.4rem 0.56rem;
    }

    .construction-box {
        height: 56vh;
        min-height: 500px;
    }

    /* FOOTER */
    .footer {
        min-height: 336px;
        gap: 64px;
        padding: 37px 26px 29px;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 124px;
    }

    .footer-address h4,
    .footer-col h4 {
        font-size: 12px;
    }

    .footer-address h4 {
        margin-bottom: 8px;
    }

    .footer-address p {
        font-size: 11px;
    }

    .footer-line {
        width: 176px;
        margin: 14px 0;
    }

    .footer-columns {
        gap: 72px;
        padding-top: 10px;
    }

    .footer-col h4 {
        margin-bottom: 27px;
    }

    .footer-col a {
        font-size: 12px;
    }
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1440px) {
    .navbar {
        padding-left: 28px;
        padding-right: 28px;
    }

    .industrial-hero {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .navbar {
        height: 72px;
        padding: 0 20px;
    }

    .nav-logo img {
        height: 44px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-actions {
        gap: 22px;
    }

    .nav-item {
        height: 72px;
    }

    .nav-menu a,
    .nav-actions a {
        font-size: 13px;
    }

    .nav-dropdown {
        top: 72px;
        height: auto;
        min-height: 290px;
        gap: 56px;
        padding: 38px 32px;
    }

    .consumer-dropdown {
        min-height: 290px;
        padding: 38px 28px;
        gap: 28px;
    }

    .dropdown-info {
        width: 38%;
    }

    .company-dropdown {
        gap: 48px;
    }

    .company-grid {
        gap: 36px;
    }

    .company-grid .company-col:nth-child(1),
    .company-grid .company-col:nth-child(2) {
        margin-left: 0;
    }

    .industrial-hero {
        height: auto;
        min-height: 680px;
        padding: 80px 28px 60px;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-tag {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: 54px;
        margin-bottom: 38px;
    }

    .hero-description {
        max-width: 420px;
        margin-left: 0;
    }

    .hero-options {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        margin-top: 0;
        gap: 18px 24px;
    }

    .hero-options button {
        width: 100%;
    }

    .industrial-video-section {
        height: 70vh;
        min-height: 520px;
    }

    .construction-top {
        gap: 60px;
        padding: 54px 34px;
    }

    .construction-left {
        flex-basis: 30%;
    }

    .construction-content h2 {
        font-size: 27px;
    }

    .construction-box {
        height: 62vh;
        min-height: 470px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 38px 28px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }

    .footer-columns {
        gap: 50px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .navbar {
        height: 64px;
        padding: 0 16px;
    }

    .nav-logo img {
        height: 38px;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 16px;
    }

    .nav-actions a {
        font-size: 12px;
    }

    .nav-separator {
        height: 18px;
    }

    .nav-dropdown,
    .consumer-dropdown {
        display: none;
    }

    .industrial-hero {
        min-height: 760px;
        padding: 70px 20px 50px;
        display: block;
    }

    .hero-content {
        max-width: none;
    }

    .hero-tag {
        padding-top: 0;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .hero-description {
        width: 100%;
        max-width: none;
        margin-left: 0;
        font-size: 13px;
    }

    .hero-options {
        margin-top: 48px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hero-options button,
    .hero-options button:nth-child(5),
    .hero-options button:nth-child(6),
    .hero-options button:nth-child(7) {
        width: 100%;
        grid-column: auto;
        font-size: 11px;
    }

    .industrial-video-section {
        height: 60vh;
        min-height: 420px;
    }

    .construction-top {
        display: block;
        padding: 48px 22px;
    }

    .construction-left {
        margin: 0 0 34px;
    }

    .construction-content {
        max-width: none;
    }

    .construction-content h2 {
        font-size: 40px;
    }

    .construction-content p {
        font-size: 15px;
    }

    .construction-box {
        height: 55vh;
        min-height: 380px;
    }

    .footer {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 34px 22px;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 44px;
    }

    .footer-address h4,
    .footer-col h4 {
        font-size: 13px;
    }

    .footer-address p {
        font-size: 12px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 22px;
        padding-top: 0;
    }

    .footer-col h4 {
        margin-bottom: 20px;
    }

    .footer-col a {
        font-size: 13px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .nav-actions .search-link span:not(.material-icons) {
        display: none;
    }

    .industrial-hero {
        min-height: 720px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-options {
        grid-template-columns: 1fr;
    }

    .industrial-video-section {
        min-height: 380px;
    }

    .construction-content h2 {
        font-size: 34px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   TIER 1 RESPONSIVE SYSTEM
   Shared mobile behavior with the Della website.
========================================================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    padding-top: 0;
}

.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
}

img,
video {
    max-width: 100%;
}

.nav-logo {
    flex-shrink: 0;
    min-width: 0;
}

.nav-logo img,
.footer-logo {
    width: auto !important;
    object-fit: contain;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-menu-btn {
    display: none;
    position: relative;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 0;
    background: transparent;
    color: #000;
    cursor: pointer;
}

.mobile-menu-btn .material-icons {
    font-size: 34px;
}

.mobile-menu-panel {
    position: fixed;
    top: 76px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100dvh - 76px);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-panel a {
    color: #000;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.mobile-menu-panel a.active {
    color: #3d4519;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

/* =========================
   FLUID CONTENT
========================= */

.industrial-hero {
    width: 100%;
}

.hero-content,
.hero-options,
.construction-left,
.construction-right,
.construction-content {
    min-width: 0;
}

.hero-content h1,
.construction-content h2 {
    overflow-wrap: anywhere;
}

.hero-options button {
    max-width: 100%;
}

.industrial-video-section {
    width: 100%;
}

.construction-box {
    width: 100%;
}

.construction-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   FOOTER
========================= */

.footer-toggle {
    display: flex;
    padding: 0;
    margin-bottom: 34px;
    border: 0;
    background: transparent;
    color: #9a9a9a;
    font-family: "Geologica", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    pointer-events: none;
}

.footer-toggle .footer-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

/* =========================
   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: #fff;
    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,
        border-color .25s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #3d4519;
    border-color: #3d4519;
}

.scroll-to-top:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

body.mobile-menu-open .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================
   TABLET / COMPACT NAVBAR
========================= */

@media (max-width: 1100px) {
    body {
        padding-top: 76px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 76px;
        padding: 0 22px;
        justify-content: space-between;
    }

    .nav-logo {
        flex: unset;
    }

    .nav-logo img {
        max-width: min(72vw, 320px);
        height: 44px;
    }

    .nav-menu,
    .nav-actions,
    .nav-dropdown,
    .consumer-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .page-content.blur {
        filter: none;
        pointer-events: auto;
    }

    .industrial-hero {
        min-height: 680px;
        padding: 80px 28px 60px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 620px;
    }

    .hero-tag {
        padding-top: 0;
    }

    .hero-content h1 {
        font-size: clamp(46px, 6vw, 56px);
        margin-bottom: 38px;
    }

    .hero-description {
        max-width: 460px;
        margin-left: 0;
    }

    .hero-options {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0,1fr));
        justify-content: stretch;
        margin-top: 0;
        gap: 18px 24px;
    }

    .hero-options button,
    .hero-options button:nth-child(5),
    .hero-options button:nth-child(6),
    .hero-options button:nth-child(7) {
        width: 100%;
        grid-column: auto;
    }

    .industrial-video-section {
        height: 70vh;
        min-height: 520px;
    }

    .construction-top {
        gap: 60px;
        padding: 54px 34px;
    }

    .construction-left {
        flex-basis: 30%;
    }

    .construction-content h2 {
        font-size: 34px;
    }

    .construction-box {
        height: 62vh;
        min-height: 470px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-logo {
        margin-bottom: 60px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 38px;
    }

    .scroll-to-top {
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .nav-logo img {
        max-width: min(70vw, 280px);
        height: 40px;
    }

    .mobile-menu-panel {
        top: 70px;
        height: calc(100dvh - 70px);
        padding: 28px 20px;
    }

    .industrial-hero {
        min-height: 0;
        padding: 62px 20px 48px;
        display: block;
    }

    .hero-content {
        max-width: none;
    }

    .hero-tag {
        padding-top: 0;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.05;
        margin-bottom: 26px;
    }

    .hero-description {
        width: 100%;
        max-width: none;
        margin-left: 0;
        font-size: 13px;
    }

    .hero-options {
        margin-top: 42px;
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 16px;
    }

    .hero-options button,
    .hero-options button:nth-child(5),
    .hero-options button:nth-child(6),
    .hero-options button:nth-child(7) {
        width: 100%;
        grid-column: auto;
        font-size: 11px;
    }

    .industrial-video-section {
        height: 60vh;
        min-height: 420px;
    }

    .construction-top {
        display: block;
        padding: 48px 22px;
    }

    .construction-left {
        margin: 0 0 34px;
    }

    .construction-left,
    .construction-right {
        padding-top: 0;
    }

    .construction-content {
        max-width: none;
    }

    .construction-content h2 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.05;
    }

    .construction-content p {
        font-size: 15px;
    }

    .construction-box {
        height: 55vh;
        min-height: 380px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 38px 22px;
    }

    .footer-logo {
        height: 36px;
        margin-bottom: 48px;
    }

    .footer-addresses {
        display: grid;
        grid-template-columns: 1.2fr 1px 1fr;
        gap: 18px;
        width: 100%;
    }

    .footer-line {
        width: 1px;
        height: 100%;
        min-height: 110px;
        margin: 0;
        background: #4a4a4a;
    }

    .footer-address h4 {
        font-size: 13px;
        color: #9a9a9a;
    }

    .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%;
        align-items: center;
        justify-content: space-between;
        padding: 26px 0;
        margin: 0;
        font-size: 14px;
        cursor: pointer;
        pointer-events: auto;
    }

    .footer-toggle .footer-icon {
        display: inline-flex;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        transition: transform .35s cubic-bezier(.16,1,.3,1);
    }

    .footer-col.active .footer-icon {
        transform: rotate(180deg);
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        gap: 8px;
        transition:
            max-height .45s cubic-bezier(.16,1,.3,1),
            opacity .35s ease;
    }

    .footer-col.active .footer-links {
        max-height: 280px;
        opacity: 1;
        padding-bottom: 22px;
    }

    .footer-links a {
        font-size: 21px;
        font-weight: 500;
        line-height: 1.45;
    }

    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .nav-logo img {
        max-width: 68vw;
        height: 36px;
    }

    .industrial-hero {
        padding: 54px 16px 42px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-options {
        grid-template-columns: 1fr;
    }

    .industrial-video-section {
        min-height: 380px;
    }

    .construction-top {
        padding: 42px 18px;
    }

    .construction-content h2 {
        font-size: 31px;
    }

    .construction-box {
        min-height: 340px;
    }

    .footer {
        padding-left: 18px;
        padding-right: 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;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-panel,
    .scroll-to-top {
        transition: none;
    }
}

/* =========================================================
   TIER 1 NAVBAR — PRODUCT PAGE DROPDOWN
========================================================= */

.tier1-product-dropdown li {
    margin-bottom: 5px;
}

.tier1-product-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.25;
    text-transform: none;
    transition: color .25s ease;
}

.tier1-product-dropdown li a:hover {
    color: #3d4519;
}

.tier1-product-dropdown li a:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.tier1-product-dropdown li a:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

@media (min-width: 1101px) {
    .tier1-product-dropdown li a {
        font-size: 12px;
    }
}

/* =========================================================
   TIER 1 — MOBILE IMAGE SOURCE SWITCH
========================================================= */
.responsive-mobile-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.responsive-mobile-picture > img {
    display: block;
    width: 100%;
    height: 100%;
}

.industrial-video-section > .responsive-mobile-picture,
.construction-box > .responsive-mobile-picture {
    width: 100%;
    height: 100%;
}

.industrial-video-section > .responsive-mobile-picture > img,
.construction-box > .responsive-mobile-picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   DEFENSE NAVBAR — CLICKABLE SYSTEM PRODUCT DROPDOWNS
   Applies to Tier 1, Tier 2, Tier 3 and Support Equipment.
========================================================= */

.tier-product-dropdown li {
    margin-bottom: 5px;
}

.tier-product-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: inherit;
    text-decoration: none;

    font-size: inherit;
    font-weight: inherit;
    line-height: 1.25;
    text-transform: none;

    transition: color .25s ease;
}

.tier-product-dropdown li a:hover {
    color: #3d4519;
}

.tier-product-dropdown li a:hover .icon-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.tier-product-dropdown li a:hover .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

@media (min-width: 1101px) {
    .tier-product-dropdown li a {
        font-size: 12px;
    }
}

/* =========================================================
   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;
}