/* ==========================================================
   HOMEDEN PREMIUM HEADER
   Matches: templates/includes/header.html
========================================================== */

/* ----------------------------------------------------------
   Header shell
---------------------------------------------------------- */

/* ==========================================================
   Fixed Premium Header
========================================================== */

:root {
    --site-header-height: 122px;
}

html {
    scroll-padding-top:
        calc(var(--site-header-height) + 20px);
}

body {
    padding-top: var(--site-header-height);
}

.site-header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;

    z-index: 1050;

    width: 100%;

    background: #ffffff;

    transform: translateZ(0);
    will-change: transform;
}

.site-header,
.site-header * {
    box-sizing: border-box;
}

body.navbar-menu-open {
    overflow: hidden;
}

.site-header.is-scrolled .home-navbar {
    box-shadow:
        0 13px 35px
        rgba(18, 42, 33, 0.14);
}

.site-header.mobile-menu-active .home-navbar {
    border-bottom-color:
        rgba(15, 110, 86, 0.16);
}


/* ==========================================================
   ANNOUNCEMENT BAR
========================================================== */

.announcement-bar {
    position: relative;
    min-height: 40px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #0b5845 0%,
            var(--color-brand, #0f6e56) 50%,
            #0b5845 100%
        );

    color: #ffffff;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.announcement-bar::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.045),
            transparent
        );

    pointer-events: none;
}

.announcement-bar-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(180px, 1fr)
        auto
        minmax(300px, 1fr);

    align-items: center;
    gap: 24px;

    min-height: 40px;
}


/* Shared announcement items */

.announcement-location,
.announcement-consultation,
.announcement-phone {
    min-width: 0;

    display: inline-flex;
    align-items: center;

    color: #ffffff;
    text-decoration: none;
}

.announcement-location {
    justify-self: start;
    gap: 8px;

    font-size: 12px;
    font-weight: 550;
    line-height: 1.4;
}

.announcement-consultation {
    justify-self: center;
    gap: 8px;

    padding: 5px 13px;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.announcement-consultation:hover {
    background:
        rgba(255, 255, 255, 0.14);

    border-color:
        rgba(255, 255, 255, 0.21);

    color: #ffffff;

    transform: translateY(-1px);
}

.announcement-icon,
.announcement-phone-icon,
.announcement-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.announcement-icon {
    color:
        rgba(255, 255, 255, 0.9);

    font-size: 12px;
}

.announcement-arrow {
    font-size: 11px;

    transition:
        transform 0.2s ease;
}

.announcement-consultation:hover
.announcement-arrow {
    transform: translateX(3px);
}

.announcement-location-text,
.announcement-consultation-text {
    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Phone group */

.announcement-phones {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;

    min-width: 0;
    white-space: nowrap;
}

.announcement-phone {
    gap: 8px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.announcement-phone:hover {
    color: #ffffff;
    opacity: 0.86;
    transform: translateY(-1px);
}

.announcement-phone-icon {
    width: 27px;
    height: 27px;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    color: #ffffff;
    font-size: 10px;
}

.announcement-phone-content {
    display: flex;
    flex-direction: column;

    line-height: 1.12;
}

.announcement-phone-content small {
    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 8px;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.announcement-phone-content strong {
    color: #ffffff;

    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.phone-divider {
    width: 1px;
    height: 23px;

    display: block;
    flex-shrink: 0;

    background:
        rgba(255, 255, 255, 0.22);
}


/* ==========================================================
   MAIN NAVBAR
========================================================== */

.home-navbar {
    position: relative;

    min-height: 82px;
    padding: 0;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid
        rgba(15, 110, 86, 0.08);

    box-shadow:
        0 7px 24px
        rgba(22, 39, 33, 0.07);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.home-navbar > .container {
    min-height: 82px;
}


/* ----------------------------------------------------------
   Brand
---------------------------------------------------------- */

.navbar-brand {
    position: relative;

    flex-shrink: 0;

    padding: 0;
    margin: 0 26px 0 0;
}

.navbar-logo {
    width: auto;
    height: 62px;

    display: block;

    object-fit: contain;

    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: translateY(-1px) scale(1.02);
}


/* ----------------------------------------------------------
   Main navigation links
---------------------------------------------------------- */

.home-navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.home-navbar .nav-item {
    position: relative;
}

.home-navbar .nav-link {
    position: relative;

    min-height: 82px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    padding: 0 10px;

    color:
        var(--color-heading-secondary, #3d3d3d);

    font-size: 13px;
    font-weight: 650;
    line-height: 1.2;

    transition:
        color 0.2s ease;
}

.home-navbar .nav-link::before {
    position: absolute;
    right: 10px;
    bottom: 18px;
    left: 10px;

    height: 2px;

    content: "";

    background:
        var(--color-primary, #e07a3f);

    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.22s ease;
}

.home-navbar .nav-link:hover,
.home-navbar .nav-link:focus,
.home-navbar .nav-link.show,
.home-navbar .nav-link.active,
.home-navbar .nav-link[aria-current="page"] {
    color:
        var(--color-brand, #0f6e56);
}

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

.home-navbar .dropdown-toggle::after {
    margin-left: 3px;

    border-top-width: 4px;
    border-right-width: 4px;
    border-left-width: 4px;

    transition:
        transform 0.2s ease;
}

.home-navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}


/* ==========================================================
   DROPDOWNS
========================================================== */

/* ==========================================================
   Premium Desktop Dropdown
========================================================== */

.home-navbar .dropdown-menu {
    min-width: 250px;

    margin-top: 0;
    padding: 10px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.99);

    /* Remove left, right and bottom borders */
    border: 0;

    /* Keep only the top brand accent */
    border-top:
        3px solid
        var(--color-brand, #0f6e56);

    border-radius: 0 0 14px 14px;

    box-shadow:
        0 18px 45px
        rgba(18, 42, 33, 0.15);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* Remove the bordered triangle */

.home-navbar .dropdown-menu::before {
    display: none;
}

.home-navbar .dropdown-item {
    position: relative;

    min-height: 43px;

    display: flex;
    align-items: center;

    padding: 10px 13px;

    background: transparent;
    border: 0;
    border-radius: 8px;

    color:
        var(--color-heading-secondary, #3d3d3d);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;

    transition:
        padding-left 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.home-navbar .dropdown-item::before {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    margin-right: 0;

    content: "";

    background:
        var(--color-primary, #e07a3f);

    border-radius: 50%;

    opacity: 0;
    transform: scale(0);

    transition:
        margin-right 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.home-navbar .dropdown-item:hover,
.home-navbar .dropdown-item:focus,
.home-navbar .dropdown-item.active {
    padding-left: 16px;

    background:
        rgba(15, 110, 86, 0.07);

    color:
        var(--color-brand, #0f6e56);
}

.home-navbar .dropdown-item:hover::before,
.home-navbar .dropdown-item:focus::before,
.home-navbar .dropdown-item.active::before {
    margin-right: 8px;

    opacity: 1;
    transform: scale(1);
}

.home-navbar .nav-link:focus {
    box-shadow: none;
}

.home-navbar .nav-link:focus:not(:focus-visible) {
    outline: none;
}

.home-navbar .nav-link:focus-visible {
    outline:
        2px solid
        rgba(15, 110, 86, 0);

    outline-offset: -6px;

    border-radius: 8px;
}



/* =========================================================
   NAVBAR ICON ACTIONS
========================================================= */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-icon-action {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    padding: 0;

    background:
        rgba(15, 110, 86, 0.06);

    border:
        1px solid
        rgba(15, 110, 86, 0.13);

    border-radius: 10px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 17px;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.navbar-icon-action:hover,
.navbar-icon-action:focus-visible {
    background:
        var(--color-brand, #0f6e56);

    border-color:
        var(--color-brand, #0f6e56);

    color: #ffffff;

    box-shadow:
        0 8px 18px
        rgba(15, 110, 86, 0.18);

    transform: translateY(-1px);
}

.navbar-icon-action:focus-visible {
    outline:
        3px solid
        rgba(15, 110, 86, 0.18);

    outline-offset: 2px;
}

.customer-logout-form {
    display: flex;
    margin: 0;
}

.customer-logout-button.navbar-icon-action {
    font-family: inherit;
}


/* Mobile */

@media (max-width: 767.98px) {

    .navbar-icon-action {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        border-radius: 9px;

        font-size: 16px;
    }

}




.header-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    height: 40px;
    padding: 0 16px;

    background:
        rgba(15, 110, 86, 0.06);
    border:
        1px solid
        rgba(15, 110, 86, 0.13);
    border-radius: 10px;

    color: var(--color-brand);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    cursor: pointer;
    text-decoration: none;

    appearance: none;
    -webkit-appearance: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-register-btn i {
    font-size: 15px;
}

.header-register-btn:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;

    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.header-register-btn:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
}

.header-register-btn:active {
    transform: translateY(0);
}



.customer-logout-button {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 10px 14px;
    border: 0;

    color: inherit;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border:
        1px solid
        rgba(211, 23, 16, 0.13);
}



.navbar-cta {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 16px;

    background:
        var(--color-primary, #e07a3f);

    border:
        1px solid
        var(--color-primary, #e07a3f);

    border-radius: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;

    white-space: nowrap;

    box-shadow:
        0 9px 20px
        rgba(224, 122, 63, 0.19);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.navbar-cta:hover {
    background:
        var(--color-primary-hover, #c96832);

    border-color:
        var(--color-primary-hover, #c96832);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(224, 122, 63, 0.24);
}

/* ==========================================================
   MOBILE TOGGLER
========================================================== */

/* ==========================================================
   Navbar Toggler
========================================================== */

.home-navbar .navbar-toggler {
    width: 45px;
    height: 45px;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 0;

    background:
        rgba(15, 110, 86, 0.06);

    border:
        1px solid
        rgba(15, 110, 86, 0.13);

    border-radius: 10px;

    box-shadow: none;
}

.home-navbar .navbar-toggler:focus {
    box-shadow:
        0 0 0 3px
        rgba(15, 110, 86, 0.12);
}

.home-navbar .navbar-toggler-icon {
    width: 20px;
    height: 20px;
}





/* ==========================================================
   RESPONSIVE — LARGE DESKTOP
========================================================== */

@media
(max-width: 1399.98px)
and
(min-width: 1200px) {

    .navbar-brand {
        margin-right: 14px;
    }

    .home-navbar .nav-link {
        padding-right: 7px;
        padding-left: 7px;

        font-size: 12px;
    }

    .navbar-actions {
        gap: 6px;
        margin-left: 9px;
    }

    .nav-login-link {
        padding-right: 7px;
        padding-left: 7px;

        font-size: 12px;
    }

    .navbar-cta {
        padding-right: 12px;
        padding-left: 12px;

        font-size: 11px;
    }

}


/* ==========================================================
   RESPONSIVE — TABLET NAVBAR
   Bootstrap navbar-expand-xl collapses below 1200px
========================================================== */

@media
(max-width: 1199.98px)
and
(min-width: 768px) {

    .home-navbar,
    .home-navbar > .container {
        min-height: 74px;
    }

    .navbar-logo {
        height: 56px;
    }

    .home-navbar .navbar-toggler {
        display: inline-flex !important;
    }


    /* Collapsed navigation panel */

    .home-navbar .navbar-collapse {
        position: absolute;

        top: calc(100% + 1px);
        right: 12px;
        left: 12px;

        z-index: 1045;

        max-height:
            calc(
                100dvh
                - var(--site-header-height, 114px)
                - 12px
            );

        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;

        padding: 14px 18px 20px;

        background:
            rgba(255, 255, 255, 0.995);

        border: 0;

        border-radius:
            0 0 16px 16px;

        box-shadow:
            0 22px 46px
            rgba(18, 42, 33, 0.18);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }


    /* Main links */

    .home-navbar .navbar-nav {
        width: 100%;

        align-items: stretch;
        gap: 2px;
    }

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

    .home-navbar .nav-link {
        width: 100%;
        min-height: 48px;

        justify-content: space-between;

        padding: 12px 11px;

        border-bottom:
            1px solid
            rgba(15, 110, 86, 0.07);

        border-radius: 8px;

        font-size: 14px;
    }


    /* Active page indicator */

    .home-navbar .nav-link::before {
        top: 10px;
        right: auto;
        bottom: 10px;
        left: 0;

        width: 3px;
        height: auto;

        transform: scaleY(0);
    }

    .home-navbar .nav-link:hover::before,
    .home-navbar .nav-link:focus::before,
    .home-navbar .nav-link.show::before,
    .home-navbar .nav-link.active::before,
    .home-navbar
    .nav-link[aria-current="page"]::before {
        transform: scaleY(1);
    }


    /* Dropdown accordion */

    .home-navbar .dropdown-menu {
        position: static !important;

        width: 100%;
        min-width: 0;

        margin: 4px 0 9px;
        padding: 7px;

        background:
            rgba(15, 110, 86, 0.045);

        border: 0 !important;
        border-radius: 10px;

        box-shadow:
            inset 0 0 0 1px
            rgba(15, 110, 86, 0.06);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .home-navbar .dropdown-menu::before {
        display: none !important;
    }

    .home-navbar .dropdown-item {
        min-height: 42px;

        padding: 10px 12px;

        font-size: 13px;
    }


    /* Account and CTA section */

    .navbar-actions {
        width: 100%;

        display: grid;
        grid-template-columns:
            auto minmax(0, 1fr);

        align-items: stretch;
        gap: 9px;

        margin: 14px 0 0;
        padding: 15px 0 0;

        border-top:
            1px solid
            var(--color-border, #eaeaea);
    }

    .nav-icon-link {
        width: 46px;
        height: 46px;
    }

    .nav-login-link {
        width: 100%;
        min-height: 46px;

        background:
            rgba(15, 110, 86, 0.05);

        border-color:
            rgba(15, 110, 86, 0.10);
    }

    .navbar-cta {
        grid-column: 1 / -1;

        width: 100%;
        min-height: 48px;

        font-size: 13px;
    }

}


/* ==========================================================
   RESPONSIVE — MOBILE TOP HEADER
   Bottom navigation handles main mobile navigation
========================================================== */

@media (max-width: 767.98px) {

    :root {
        --site-header-height: 70px;
        --mobile-bottom-nav-height: 78px;
    }


    /* Hide announcement bar */

    .site-header .announcement-bar {
        display: none !important;
    }


    /* Header shell */

    .home-navbar,
    .home-navbar > .container {
        min-height: 70px;
    }

    .home-navbar {
        padding: 0;

        background:
            rgba(255, 255, 255, 0.98);

        border-bottom:
            1px solid
            rgba(15, 110, 86, 0.08);

        box-shadow:
            0 5px 18px
            rgba(19, 38, 31, 0.09);
    }

    .home-navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-right: 14px;
        padding-left: 14px;
    }


    /* Logo */

    .navbar-brand {
        flex: 0 1 auto;

        margin: 0;
    }

    .navbar-logo {
        width: auto;
        height: 51px;

        object-fit: contain;
    }


    /*
     * The mobile bottom navigation has a More button,
     * so the top hamburger is no longer required.
     */

    .home-navbar .navbar-toggler {
        display: none !important;
    }


    /*
     * Hide the old collapsed menu on mobile.
     * Tablet users still receive the hamburger menu.
     */

    .home-navbar .navbar-collapse {
        display: none !important;
    }


    /* Prevent page content hiding under bottom navigation */

    body {
        padding-bottom:
            calc(
                var(--mobile-bottom-nav-height)
                + env(safe-area-inset-bottom)
            );
    }

}


/* ==========================================================
   MOBILE TOP ESTIMATE BUTTON
========================================================== */

.mobile-header-estimate {
    display: none;
}

@media (max-width: 767.98px) {

    .mobile-header-estimate {
        min-height: 44px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        flex: 0 0 auto;

        padding: 9px 14px;

        background:
            var(--color-primary, #e07a3f);

        border:
            1px solid
            var(--color-primary, #e07a3f);

        border-radius: 8px;

        color: #ffffff;

        font-size: 12px;
        font-weight: 800;
        line-height: 1.2;

        text-decoration: none;
        white-space: nowrap;

        box-shadow:
            0 7px 17px
            rgba(224, 122, 63, 0.22);

        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
    }

    .mobile-header-estimate:hover,
    .mobile-header-estimate:focus {
        background:
            var(--color-primary-hover, #c96832);

        border-color:
            var(--color-primary-hover, #c96832);

        color: #ffffff;

        transform: translateY(-1px);
    }

    .mobile-header-estimate i {
        font-size: 14px;
    }

}


/* ==========================================================
   RESPONSIVE — SMALL MOBILE
========================================================== */

@media (max-width: 575.98px) {

    :root {
        --site-header-height: 66px;
        --mobile-bottom-nav-height: 76px;
    }

    .home-navbar,
    .home-navbar > .container {
        min-height: 66px;
    }

    .navbar-logo {
        height: 47px;
    }

    .mobile-header-estimate {
        min-height: 42px;

        padding-right: 12px;
        padding-left: 12px;

        font-size: 11px;
    }

}


/* ==========================================================
   RESPONSIVE — VERY SMALL MOBILE
========================================================== */

@media (max-width: 389.98px) {

    .navbar-logo {
        max-width: 145px;
        height: auto;
        max-height: 45px;
    }

    .mobile-header-estimate {
        min-width: 0;

        padding-right: 10px;
        padding-left: 10px;

        font-size: 10px;
    }

    .mobile-header-estimate .mobile-estimate-long-text {
        display: none;
    }

    .mobile-header-estimate .mobile-estimate-short-text {
        display: inline;
    }

}

/* Desktop: hide menu button */

@media (min-width: 1200px) {

    .home-navbar .navbar-toggler {
        display: none !important;
    }

    .home-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

}


/* Tablet: show menu button */

@media
(max-width: 1199.98px)
and
(min-width: 768px) {

    .home-navbar .navbar-toggler {
        display: inline-flex !important;
    }

}


/* Mobile: bottom navigation is used, so hide menu button */

@media (max-width: 767.98px) {

    .home-navbar .navbar-toggler {
        display: none !important;
    }

    .home-navbar .navbar-collapse {
        display: none !important;
    }

}

/* ==========================================================
   AUTHENTICATED DESKTOP HEADER REFINEMENT
   Prevents wrapped Profile / Watchlist / Sign out labels
   and gives the right-side account actions a cleaner layout.
========================================================== */

@media (min-width: 1200px) {

    /*
     * Bootstrap's default desktop container becomes too narrow
     * once the customer account actions are visible.
     */
    .home-navbar > .container {
        width: calc(100% - 44px);
        max-width: 1420px;
        padding-right: 0;
        padding-left: 0;
    }

    .home-navbar .navbar-collapse {
        min-width: 0;
    }

    .home-navbar .navbar-nav {
        flex-wrap: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    .home-navbar .nav-link {
        padding-right: 9px;
        padding-left: 9px;
        white-space: nowrap;
    }

    /*
     * Keep account controls together as one compact premium group.
     */
    .navbar-actions {
        flex: 0 0 auto;
        gap: 6px;
        margin-left: 12px;
        padding-left: 12px;

        border-left:
            1px solid
            rgba(15, 110, 86, 0.10);
    }

    .nav-login-link {
        min-width: 0;
        min-height: 42px;

        flex-direction: row;
        gap: 6px;

        padding: 0 9px;

        background:
            transparent;

        border:
            1px solid
            transparent;

        border-radius: 10px;

        font-size: 12px;
        font-weight: 750;

        white-space: nowrap;
    }

    .nav-login-link,
    .nav-login-link span,
    .nav-login-link strong,
    .nav-login-link small {
        white-space: nowrap;
    }

    .nav-login-link i {
        flex: 0 0 auto;

        color:
            var(--color-brand, #0f6e56);

        font-size: 15px;
    }

    .nav-login-link:hover,
    .nav-login-link:focus,
    .nav-login-link.active,
    .nav-login-link[aria-current="page"] {
        background:
            rgba(15, 110, 86, 0.075);

        border-color:
            rgba(15, 110, 86, 0.12);

        color:
            var(--color-brand, #0f6e56);
    }

    /*
     * Logout should behave like a compact navbar action,
     * not a full-width dropdown button.
     */
    .customer-logout-form {
        width: auto;

        display: inline-flex;
        align-items: center;

        flex: 0 0 auto;
    }

    .customer-logout-button {
        width: auto;
        min-width: 0;
        min-height: 42px;

        justify-content: center;
        gap: 6px;

        padding: 0 9px;

        border:
            1px solid
            transparent;

        border-radius: 10px;

        color:
            #52655f;

        font-size: 12px;
        font-weight: 750;
        line-height: 1;

        white-space: nowrap;

        transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    }

    .customer-logout-button,
    .customer-logout-button span,
    .customer-logout-button strong,
    .customer-logout-button small {
        white-space: nowrap;
    }

    .customer-logout-button i {
        flex: 0 0 auto;

        color:
            #7a8a85;

        font-size: 14px;
    }

    .customer-logout-button:hover,
    .customer-logout-button:focus {
        background:
            rgba(190, 67, 67, 0.07);

        border-color:
            rgba(190, 67, 67, 0.12);

        color:
            #a33e3e;

        transform: translateY(-1px);
    }

    .customer-logout-button:hover i,
    .customer-logout-button:focus i {
        color:
            #a33e3e;
    }

    .navbar-cta {
        min-height: 44px;

        padding-right: 17px;
        padding-left: 17px;

        border-radius: 10px;
    }
}


/* ==========================================================
   COMPACT DESKTOP RANGE
   Covers common 1280px / 1366px / 1440px screens.
========================================================== */

@media
(max-width: 1499.98px)
and
(min-width: 1200px) {

    .home-navbar > .container {
        width: calc(100% - 28px);
    }

    .navbar-brand {
        margin-right: 14px;
    }

    .navbar-logo {
        height: 58px;
    }

    .home-navbar .navbar-nav {
        gap: 0;
    }

    .home-navbar .nav-link {
        padding-right: 7px;
        padding-left: 7px;

        font-size: 12px;
    }

    .navbar-actions {
        gap: 3px;

        margin-left: 7px;
        padding-left: 7px;
    }

    .nav-login-link,
    .customer-logout-button {
        padding-right: 7px;
        padding-left: 7px;

        font-size: 11px;
    }

    .navbar-cta {
        padding-right: 13px;
        padding-left: 13px;

        font-size: 11px;
    }
}


/* ==========================================================
   WIDE DESKTOP POLISH
========================================================== */

@media (min-width: 1500px) {

    .home-navbar > .container {
        max-width: 1480px;
    }

    .navbar-actions {
        gap: 7px;
        margin-left: 16px;
        padding-left: 16px;
    }
}
