.elementor-14 .elementor-element.elementor-element-7f150fd{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:5px;--padding-bottom:5px;--padding-left:5px;--padding-right:5px;}.elementor-14 .elementor-element.elementor-element-7f150fd:not(.elementor-motion-effects-element-type-background), .elementor-14 .elementor-element.elementor-element-7f150fd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F8F6F0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-eba90bd *//* ================================
   HERITAGE HUSK PREMIUM HEADER
================================ */

.hh-header {
    width: 100%;
    background: #f8f6f0;
    border-bottom: 1px solid rgba(37, 66, 42, 0.12);
    position: relative;
    z-index: 999;
}

.hh-container {
    max-width: 1500px;
    height: 88px;
    margin: 0 auto;
    padding: 0 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================================
   LOGO
================================ */

.hh-logo {
    display: flex;
    align-items: center;
    min-width: 180px;
}

.hh-logo img {
    width: 155px;
    height: auto;
    display: block;
}


/* ================================
   NAVIGATION
================================ */

.hh-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hh-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    align-items: center;
    gap: 34px;
}

.hh-navigation a {
    color: #25422a;
    text-decoration: none;

    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    position: relative;
    padding: 35px 0;

    transition: all 0.3s ease;
}

.hh-navigation a::after {
    content: "";
    position: absolute;

    width: 0;
    height: 1px;

    background: #b78355;

    bottom: 26px;
    left: 0;

    transition: width 0.3s ease;
}

.hh-navigation a:hover {
    color: #b78355;
}

.hh-navigation a:hover::after,
.hh-navigation .current-menu-item a::after {
    width: 100%;
}


/* ================================
   HEADER ACTIONS
================================ */

.hh-actions {
    min-width: 180px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.hh-icon-btn {
    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #25422a;
    cursor: pointer;

    text-decoration: none;

    position: relative;

    transition: all 0.3s ease;
}

.hh-icon-btn svg {
    width: 21px;
    height: 21px;

    transition: transform 0.3s ease;
}

.hh-icon-btn:hover {
    color: #b78355;
}

.hh-icon-btn:hover svg {
    transform: scale(1.08);
}


/* ================================
   CART COUNT
================================ */

.hh-cart-count {
    position: absolute;

    top: 5px;
    right: 3px;

    width: 16px;
    height: 16px;

    border-radius: 50%;

    background: #b78355;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================================
   SEARCH OVERLAY
================================ */

.hh-search-overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(248, 246, 240, 0.98);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: all 0.4s ease;

    z-index: 99999;
}

.hh-search-overlay.active {
    opacity: 1;
    visibility: visible;
}


.hh-search-box {
    width: 100%;
    max-width: 750px;
    padding: 30px;
    text-align: center;
}

.hh-search-box p {
    color: #b78355;

    font-size: 12px;
    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hh-search-box form {
    display: flex;

    border-bottom: 1px solid #25422a;
}

.hh-search-box input[type="search"] {
    flex: 1;

    border: none;
    outline: none;

    background: transparent;

    font-size: 24px;
    color: #25422a;

    padding: 15px 0;
}

.hh-search-box input::placeholder {
    color: rgba(37, 66, 42, 0.45);
}

.hh-search-box button {
    border: none;
    background: transparent;

    color: #25422a;

    font-size: 12px;
    letter-spacing: 2px;

    cursor: pointer;

    text-transform: uppercase;
}


.hh-search-close {
    position: absolute;

    top: 35px;
    right: 45px;

    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    color: #25422a;

    font-size: 38px;
    font-weight: 200;

    cursor: pointer;
}


/* ================================
   MOBILE MENU BUTTON
================================ */

.hh-mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.hh-mobile-toggle span {
    width: 22px;
    height: 1px;

    background: #25422a;

    display: block;

    margin: 5px auto;

    transition: 0.3s;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {

    .hh-container {
        padding: 0 25px;
    }

    .hh-navigation ul {
        gap: 20px;
    }

    .hh-navigation a {
        font-size: 11px;
    }

}


@media (max-width: 850px) {

    .hh-container {
        height: 75px;
        padding: 0 18px;
    }

    .hh-mobile-toggle {
        display: block;
    }

    .hh-logo {
        min-width: auto;
    }

    .hh-logo img {
        width: 130px;
    }

    .hh-navigation {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #f8f6f0;

        display: none;

        border-top: 1px solid rgba(37, 66, 42, 0.1);
        border-bottom: 1px solid rgba(37, 66, 42, 0.1);
    }

    .hh-navigation.active {
        display: block;
    }

    .hh-navigation ul {
        flex-direction: column;
        gap: 0;

        padding: 20px;
    }

    .hh-navigation li {
        width: 100%;
        text-align: center;
    }

    .hh-navigation a {
        display: block;
        padding: 15px;
    }

    .hh-navigation a::after {
        display: none;
    }

    .hh-actions {
        min-width: auto;
        gap: 2px;
    }

    .hh-icon-btn {
        width: 35px;
    }

    .hh-search-box input[type="search"] {
        font-size: 18px;
    }

    .hh-search-close {
        top: 20px;
        right: 20px;
    }

}


@media (max-width: 480px) {

    .hh-actions .hh-icon-btn:first-child {
        display: none;
    }

    .hh-logo img {
        width: 115px;
    }

    .hh-search-box {
        padding: 20px;
    }

}/* End custom CSS */