/* v1.7.9 sticky header shell: keeps the header fixed at the top and leaves a safe spacer in the page flow. */
body:not(.elementor-editor-active) .elementor-widget-ananda_header {
    min-height: 104px !important;
    position: relative !important;
    z-index: 999999 !important;
    overflow: visible !important;
}

body:not(.elementor-editor-active) .elementor-widget-ananda_header > .elementor-widget-container {
    overflow: visible !important;
}

body.admin-bar:not(.elementor-editor-active) .ananda-header {
    --ananda-header-text-color: #111111;
    --ananda-header-hover-color: #2f8f46;
    --ananda-header-active-color: #ff0000;
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar:not(.elementor-editor-active) .ananda-header {
        top: 46px !important;
    }
}

@media (max-width: 1024px) {
    body:not(.elementor-editor-active) .elementor-widget-ananda_header {
        min-height: 96px !important;
    }
}

@media (max-width: 767px) {
    body:not(.elementor-editor-active) .elementor-widget-ananda_header {
        min-height: 150px !important;
    }
}

.ananda-header {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.18);
    font-family: inherit;
    box-sizing: border-box;
}

body:not(.elementor-editor-active) .ananda-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 999999 !important;
}

.ananda-header *,
.ananda-header *::before,
.ananda-header *::after {
    box-sizing: border-box;
}

.ananda-header__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 104px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ananda-header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    line-height: 0;
}

.ananda-header__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    border: 0;
    outline: 0;
}

.ananda-header__logo img {
    display: block;
    width: 92px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ananda-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex: 1 1 auto;
    min-width: 0;
}

.ananda-header__menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4f555d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.ananda-header__menu-link:hover,
.ananda-header__menu-link:focus {
    color: var(--ananda-header-hover-color, #2f8f46);
    text-decoration: none;
}

.ananda-header__menu-link.is-active,
.ananda-header__menu-link.ananda-is-active,
.ananda-header__menu-link[aria-current="page"],
.ananda-header__menu-link[data-ananda-active="true"] {
    color: var(--ananda-header-active-color, #e31b23) !important;
    text-decoration: none;
}

.ananda-header__menu-link.is-active::after,
.ananda-header__menu-link.ananda-is-active::after,
.ananda-header__menu-link[aria-current="page"]::after,
.ananda-header__menu-link[data-ananda-active="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 82px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--ananda-header-active-color, #e31b23);
    border-radius: 999px;
    pointer-events: none;
}

.ananda-header__button-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.ananda-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 254px;
    padding: 17px 56px;
    border-radius: 3px;
    background: #5acb6e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 0;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ananda-header__button:hover,
.ananda-header__button:focus {
    background: #378d45;
    color: #ffffff;
    text-decoration: none;
}

.ananda-header__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.ananda-header__button-icon i {
    font-size: 1em;
    line-height: 1;
}

.ananda-header__button-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .ananda-header__inner {
        gap: 26px;
        min-height: 96px;
    }

    .ananda-header__nav {
        gap: 24px;
    }

    .ananda-header__menu-link {
        font-size: 15px;
    }

    .ananda-header__button {
        min-width: 190px;
        padding: 15px 32px;
    }
}

@media (max-width: 767px) {
    .ananda-header__inner {
        min-height: auto;
        gap: 16px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .ananda-header--mobile-wrap .ananda-header__inner,
    .ananda-header--mobile-stack .ananda-header__inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ananda-header--mobile-stack .ananda-header__inner {
        flex-direction: column;
    }

    .ananda-header--mobile-wrap .ananda-header__logo {
        order: 1;
        flex: 0 0 auto;
    }

    .ananda-header--mobile-wrap .ananda-header__button-wrap {
        order: 2;
        flex: 0 0 auto;
    }

    .ananda-header--mobile-wrap .ananda-header__nav {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
    }

    .ananda-header--mobile-wrap .ananda-header__nav,
    .ananda-header--mobile-stack .ananda-header__nav {
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .ananda-header--mobile-row .ananda-header__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .ananda-header__logo img {
        width: 72px;
    }

    .ananda-header__menu-link {
        font-size: 14px;
    }

    .ananda-header__menu-link.is-active::after,
.ananda-header__menu-link.ananda-is-active::after,
.ananda-header__menu-link[aria-current="page"]::after,
.ananda-header__menu-link[data-ananda-active="true"]::after {
        bottom: -8px;
        width: 44px;
    }

    .ananda-header__button {
        min-width: 150px;
        padding: 13px 22px;
        font-size: 14px;
    }
}

/* v1.5.8 hardening: keep the header close to the provided reference screenshot. */
.elementor-widget-ananda_header .ananda-header .ananda-header__inner .ananda-header__nav a.ananda-header__menu-link:not(.is-active):not(:hover):not(:focus) {
    color: var(--ananda-header-text-color, #111111) !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__inner .ananda-header__nav a.ananda-header__menu-link:hover,
.elementor-widget-ananda_header .ananda-header .ananda-header__inner .ananda-header__nav a.ananda-header__menu-link:focus {
    color: var(--ananda-header-hover-color, #2f8f46) !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__inner .ananda-header__nav a.ananda-header__menu-link.is-active {
    color: var(--ananda-header-active-color, #ff0000) !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon i,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon svg,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon i,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon svg {
    color: currentColor !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    font-size: 15px !important;
    width: 15px !important;
    height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    line-height: 1 !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon svg path,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon svg * {
    fill: currentColor !important;
    stroke: currentColor !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__button {
    min-height: 0 !important;
    height: auto !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__logo-link {
    font-size: 0 !important;
}


/* v1.5.9 direct hardening - overrides Elementor saved colors and oversized uploaded SVG icons. */
.ananda-header .ananda-header__nav a.ananda-header__menu-link:not(.is-active):not(:hover):not(:focus),
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link:not(.is-active):not(:hover):not(:focus) {
    color: var(--ananda-header-text-color, #111111) !important;
}

.ananda-header .ananda-header__nav a.ananda-header__menu-link:hover,
.ananda-header .ananda-header__nav a.ananda-header__menu-link:focus,
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link:hover,
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link:focus {
    color: var(--ananda-header-hover-color, #2f8f46) !important;
}

.ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active {
    color: var(--ananda-header-active-color, #ff0000) !important;
}

.ananda-header .ananda-header__button,
.elementor-widget-ananda_header .ananda-header .ananda-header__button {
    min-height: 40px !important;
    height: auto !important;
    max-height: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.ananda-header .ananda-header__button-text,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-text {
    display: inline-block !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
}

.ananda-header .ananda-header__button-icon,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon {
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    overflow: hidden !important;
}

.ananda-header .ananda-header__button-icon i,
.ananda-header .ananda-header__button-icon svg,
.ananda-header .ananda-header__button-icon img,
.ananda-header .ananda-header__button-icon .elementor-icon,
.ananda-header .ananda-header__button-icon .elementor-icon i,
.ananda-header .ananda-header__button-icon .elementor-icon svg,
.ananda-header .ananda-header__button-icon .elementor-icon img,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon i,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon svg,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon img,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon i,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon svg,
.elementor-widget-ananda_header .ananda-header .ananda-header__button-icon .elementor-icon img {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    color: currentColor !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* v1.6.0 reference header hard fix: affects only Ananda Header widgets with clean reference style enabled. */
.ananda-header.ananda-header--reference {
    background: #fff !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-shadow: 0 2px 10px rgba(16, 24, 40, .18) !important;
}
.ananda-header.ananda-header--reference .ananda-header__inner {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: 104px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
}
.ananda-header.ananda-header--reference .ananda-header__logo-link {
    width: 92px !important;
    height: 92px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
}
.ananda-header.ananda-header--reference .ananda-header__logo img {
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    min-height: 92px !important;
    max-height: 92px !important;
    object-fit: contain !important;
    display: block !important;
}
.ananda-header.ananda-header--reference .ananda-header__nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
    flex: 1 1 auto !important;
}
.ananda-header.ananda-header--reference .ananda-header__nav a.ananda-header__menu-link {
    color: var(--ananda-header-text-color, #111111) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}
.ananda-header.ananda-header--reference .ananda-header__nav a.ananda-header__menu-link:hover,
.ananda-header.ananda-header--reference .ananda-header__nav a.ananda-header__menu-link:focus {
    color: var(--ananda-header-hover-color, #2f8f46) !important;
    text-decoration: none !important;
}
.ananda-header.ananda-header--reference .ananda-header__nav a.ananda-header__menu-link.is-active {
    color: var(--ananda-header-active-color, #ff0000) !important;
}
.ananda-header.ananda-header--reference .ananda-header__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 254px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 34px !important;
    border-radius: 3px !important;
    background: #5acb6e !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    border: 0 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}
.ananda-header.ananda-header--reference .ananda-header__button:hover,
.ananda-header.ananda-header--reference .ananda-header__button:focus {
    background: #378d45 !important;
    color: #fff !important;
    text-decoration: none !important;
}
.ananda-header.ananda-header--reference .ananda-header__button-text {
    display: inline-block !important;
    color: inherit !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}
.ananda-header.ananda-header--reference .ananda-header__button-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 16px !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    overflow: hidden !important;
    color: inherit !important;
}
.ananda-header.ananda-header--reference .ananda-header__button-icon i,
.ananda-header.ananda-header--reference .ananda-header__button-icon svg,
.ananda-header.ananda-header--reference .ananda-header__button-icon img,
.ananda-header.ananda-header--reference .ananda-header__button-icon .elementor-icon,
.ananda-header.ananda-header--reference .ananda-header__button-icon .elementor-icon i,
.ananda-header.ananda-header--reference .ananda-header__button-icon .elementor-icon svg,
.ananda-header.ananda-header--reference .ananda-header__button-icon .elementor-icon img {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    color: inherit !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* v1.7.9 active page indication hardening */
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"] {
    color: var(--ananda-header-active-color, #ff0000) !important;
}

.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active::after,
.elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"]::after {
    background: var(--ananda-header-active-color, #ff0000) !important;
}

/* v1.8.1 absolute active page menu color fix */
body .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"],
body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"] {
    color: var(--ananda-header-active-color, #ff0000) !important;
}


/* v1.8.2 active menu final hardening */
body .ananda-header .ananda-header__nav a.ananda-header__menu-link.ananda-is-active,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"],
body .ananda-header .ananda-header__nav a.ananda-header__menu-link[data-ananda-active="true"],
html body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.ananda-is-active,
html body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active,
html body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"],
html body .elementor-widget-ananda_header .ananda-header .ananda-header__nav a.ananda-header__menu-link[data-ananda-active="true"] {
    color: var(--ananda-header-active-color, #ff0000) !important;
}

body .ananda-header .ananda-header__nav a.ananda-header__menu-link.ananda-is-active::after,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link.is-active::after,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link[aria-current="page"]::after,
body .ananda-header .ananda-header__nav a.ananda-header__menu-link[data-ananda-active="true"]::after {
    background: var(--ananda-header-active-color, #ff0000) !important;
}


/* v1.8.5 final active menu color lock */
body .ananda-header a.ananda-header__menu-link.is-active,
body .ananda-header a.ananda-header__menu-link.ananda-is-active,
body .ananda-header a.ananda-header__menu-link[aria-current="page"],
body .ananda-header a.ananda-header__menu-link[data-ananda-active="true"],
body .elementor-widget-ananda_header .ananda-header a.ananda-header__menu-link.is-active,
body .elementor-widget-ananda_header .ananda-header a.ananda-header__menu-link.ananda-is-active,
body .elementor-widget-ananda_header .ananda-header a.ananda-header__menu-link[aria-current="page"],
body .elementor-widget-ananda_header .ananda-header a.ananda-header__menu-link[data-ananda-active="true"] {
    color: var(--ananda-header-active-color, #ff0000) !important;
}
