:root {
    --zemyna-header-height: 104px; /* Increased to accommodate larger logo */
    --zemyna-header-bg: #ffffff;
    --zemyna-header-text: #222222;
    --zemyna-header-text-hover: #0056b3; /* Premium primary accent color */
    --zemyna-header-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    --zemyna-header-border: 1px solid rgba(0, 0, 0, 0.05);
    --zemyna-header-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Typography */
    --zemyna-font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --zemyna-font-size-nav: 0.95rem;
    --zemyna-font-weight-nav: 500;
}

.zemyna-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: var(--zemyna-header-bg);
    box-shadow: var(--zemyna-header-shadow);
    border-bottom: var(--zemyna-header-border);
    font-family: var(--zemyna-font-main);
    transition: var(--zemyna-header-transition);
}

.zemyna-header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    height: var(--zemyna-header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Polish */
.zemyna-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 3rem;
}

.zemyna-header__logo img {
    max-height: 86px; /* Increased visual prominence on desktop */
    width: auto;
    display: block;
    transition: var(--zemyna-header-transition);
}

.zemyna-header__logo:hover img {
    opacity: 0.9;
}

.zemyna-header__logo-text {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--zemyna-header-text);
    text-decoration: none;
    letter-spacing: -0.03em;
}

/* Main Navigation */
.zemyna-header__nav {
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    justify-content: flex-end;
}

.zemyna-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.75rem; /* Increased spacing */
    height: 100%;
}

.zemyna-header__menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.zemyna-header__menu-item > a {
    text-decoration: none;
    color: var(--zemyna-header-text);
    font-weight: var(--zemyna-font-weight-nav);
    font-size: var(--zemyna-font-size-nav);
    letter-spacing: 0.01em;
    transition: var(--zemyna-header-transition);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Premium Hover Underline Animation */
.zemyna-header__menu-item > a::before {
    content: '';
    position: absolute;
    bottom: calc(50% - 14px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4a5c51;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.zemyna-header__menu-item > a:hover {
    color: #4a5c51;
}

.zemyna-header__menu-item > a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Subtle dropdown indicator */
.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.has-dropdown:hover > a::after {
    transform: translateY(1px) rotate(45deg);
}

/* Dropdown Polish */
.zemyna-header__dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% - 5px);
    left: -2rem;
    background: var(--zemyna-header-bg);
    min-width: 280px; /* Wider for corporate feel */
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    list-style: none;
    padding: 1.25rem 0;
    margin: 0;
    border-radius: 6px;
    transition: var(--zemyna-header-transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.has-dropdown:hover .zemyna-header__dropdown,
.has-dropdown:focus-within .zemyna-header__dropdown {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.zemyna-header__dropdown li a {
    display: block;
    padding: 0.85rem 2rem;
    color: #444444; /* Softer text for dropdown */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--zemyna-header-transition);
}

.zemyna-header__dropdown li a:hover {
    color: #4a5c51;
    background: rgba(0, 86, 179, 0.03); /* Subtle tint on hover */
    padding-left: 2.25rem; /* Indent animation */
}

/* Mega Menu Polish */
.has-mega-menu {
    position: static; /* Required so the mega menu can span the full container */
}

.zemyna-header__mega-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    width: 100%;
    background: var(--zemyna-header-bg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    padding: 2.5rem 0;
    border-radius: 0 0 6px 6px;
    transition: var(--zemyna-header-transition);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
}

.has-mega-menu:hover .zemyna-header__mega-menu,
.has-mega-menu:focus-within .zemyna-header__mega-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.zemyna-header__mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    max-width: var(--zemyna-max-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--zemyna-container-padding, 20px);
}

.zemyna-header__mega-title {
    font-family: var(--zemyna-font-primary, "Inter", sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a0a0a0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zemyna-header__mega-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zemyna-header__mega-title a:hover {
    color: #4a5c51;
}

.zemyna-header__mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zemyna-header__mega-list li {
    margin-bottom: 0.5rem;
}

.zemyna-header__mega-list li a {
    display: block;
    color: #444444;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--zemyna-header-transition);
    padding: 0.25rem 0;
}

.zemyna-header__mega-list li a:hover {
    color: #4a5c51;
    transform: translateX(4px);
}

/* ===== Premium Language Switcher ===== */
#zemyna-lang-container {
    position: relative;
    display: flex;
    align-items: center;
    /* Don't stretch to full header height — wrap the button tightly */
    height: auto;
    align-self: center;
    margin-left: 1.5rem; /* Increased margin for better separation */
}

#zemyna-lang-container::before {
    display: none; /* Removed line, moved it to search container */
}

#zemyna-header .lang-switcher__trigger {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px;
    padding: 6px 12px 6px 9px;
    background: transparent !important;
    background-color: transparent !important;
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--zemyna-font-main);
    color: var(--zemyna-header-text) !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}

#zemyna-header .lang-switcher__trigger:hover,
#zemyna-header #zemyna-lang-container.is-open .lang-switcher__trigger {
    background: #4a5c51 !important;
    background-color: #4a5c51 !important;
    border-color: #4a5c51 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(74, 92, 81, 0.25) !important;
}

.lang-switcher__globe {
    display: block;
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.2s ease;
    vertical-align: middle;
}

.lang-switcher__trigger:hover .lang-switcher__globe,
#zemyna-lang-container.is-open .lang-switcher__globe {
    opacity: 1;
}

.lang-switcher__label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lang-switcher__caret {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.7;
}

#zemyna-lang-container.is-open .lang-switcher__caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===== Desktop CTA ===== */
.zemyna-header__menu-item > .zemyna-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4a5c51; /* Zemyna green */
    color: #ffffff !important;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.25s ease;
    margin-left: 2rem;
    height: auto; /* Fix giant button issue */
}

.zemyna-header__menu-item > .zemyna-header__cta::before {
    display: none; /* Remove underline animation */
}

.zemyna-header__cta svg {
    margin-left: 0.5rem;
    transition: transform 0.25s ease;
}

.zemyna-header__menu-item > .zemyna-header__cta:hover {
    background-color: #3b4940;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 92, 81, 0.25);
}

.zemyna-header__cta:hover svg {
    transform: translateX(2px);
}

/* Dropdown Panel */
.lang-switcher__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 190px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;

    /* Hidden state */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition:
        opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0s 0.25s;
}

#zemyna-lang-container.is-open .lang-switcher__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lang-switcher__panel-inner {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Individual options */
#zemyna-header .lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--zemyna-font-main);
    transition: background 0.18s ease, color 0.18s ease;
    text-align: left;
    outline: none !important;
}

#zemyna-header .lang-switcher__option:hover,
#zemyna-header .lang-switcher__option.is-active {
    background: #4a5c51 !important;
    background-color: #4a5c51 !important;
    color: #ffffff !important;
}

.lang-switcher__option-code {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zemyna-header-text);
    min-width: 26px;
    transition: color 0.18s ease;
}

.lang-switcher__option-name {
    flex-grow: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: #555;
    transition: color 0.18s ease;
}

.lang-switcher__option:hover .lang-switcher__option-name,
.lang-switcher__option:hover .lang-switcher__option-code,
.lang-switcher__option:hover .lang-switcher__option-check,
.lang-switcher__option.is-active .lang-switcher__option-name,
.lang-switcher__option.is-active .lang-switcher__option-code,
.lang-switcher__option.is-active .lang-switcher__option-check {
    color: #ffffff;
}

.lang-switcher__option-check {
    display: none !important; /* Removed as requested */
}



/* Mobile Toggle */
.zemyna-header__mobile-toggle {
    display: none;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.zemyna-header__mobile-toggle:hover,
.zemyna-header__mobile-toggle:active,
.zemyna-header__mobile-toggle:focus,
.zemyna-header__mobile-toggle.is-active {
    background-color: transparent !important;
}

.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zemyna-header-text);
    position: relative;
    transition: var(--zemyna-header-transition);
    border-radius: 2px;
}

.hamburger-icon::before { content: ''; top: -7px; left: 0; position: absolute; }
.hamburger-icon::after { content: ''; top: 7px; left: 0; position: absolute; }

.is-active .hamburger-icon { background: transparent; }
.is-active .hamburger-icon::before { top: 0; transform: rotate(45deg); }
.is-active .hamburger-icon::after { top: 0; transform: rotate(-45deg); }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .zemyna-header__container {
        padding: 0 2.5rem;
    }
    .zemyna-header__menu {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .zemyna-header__container {
        padding: 0 2rem;
    }
    .zemyna-header__menu {
        gap: 1.5rem;
    }
    .lang-switcher {
        margin-left: 0.5rem;
    }
    .lang-switcher::before {
        left: -1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --zemyna-header-height: 96px;
    }

    .zemyna-header__container {
        padding: 0.75rem 1.5rem; /* Enough vertical breathing room above and below logo */
    }

    /* Larger logo on mobile for better visibility */
    .zemyna-header__logo img {
        max-height: 82px;
    }

    .zemyna-header__logo {
        margin-right: 0;
    }

    /* Show hamburger, hide desktop nav items */
    .zemyna-header__mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        outline: none;
        border-radius: 8px;
    }

    .zemyna-header__mobile-toggle:focus-visible {
        outline: 2px solid #4a5c51;
        outline-offset: 2px;
    }

    .zemyna-header__menu,
    #zemyna-lang-container {
        display: none;
    }

    /* ========================================
       BACKDROP
       ======================================== */
    .zemyna-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 15, 25, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 10000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .zemyna-drawer-backdrop.is-active {
        opacity: 1;
        pointer-events: all;
    }

    /* ========================================
       DRAWER SHELL
       ======================================== */
    .zemyna-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 88vw);
        height: 100%;
        height: 100dvh;
        background: #fafafa;
        z-index: 10001;
        display: flex;
        flex-direction: column;
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.14);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.32, 0, 0.15, 1);
        will-change: transform;
        overflow: hidden;
    }

    .zemyna-drawer.is-open {
        transform: translateX(0);
    }

    /* ========================================
       DRAWER TOP
       ======================================== */
    .zemyna-drawer__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
        height: 64px;
        min-height: 64px;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        flex-shrink: 0;
    }

    /* Close button */
    .zemyna-drawer__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px; /* Increased size */
        height: 48px; /* Increased size */
        background: rgba(0, 0, 0, 0.05);
        border: none;
        outline: none;
        border-radius: 50%;
        cursor: pointer;
        color: #444;
        transition: background 0.2s ease, color 0.2s ease;
        flex-shrink: 0;
    }

    .zemyna-drawer__close svg {
        width: 22px;
        height: 22px;
    }

    .zemyna-drawer__close:hover,
    .zemyna-drawer__close:active,
    .zemyna-drawer__close:focus {
        background: rgba(0, 0, 0, 0.1) !important;
        color: #111 !important;
    }

    .zemyna-drawer__close:focus-visible {
        outline: 2px solid #4a5c51;
        outline-offset: 2px;
    }

    /* ========================================
       DRAWER LANG SWITCHER
       ======================================== */
    .zemyna-drawer__lang {
        position: relative;
    }

    #zemyna-drawer .zemyna-drawer__lang-btn {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px;
        padding: 7px 12px 7px 10px;
        background: rgba(0, 0, 0, 0.05) !important;
        background-color: rgba(0, 0, 0, 0.05) !important;
        border: none !important;
        outline: none;
        border-radius: 100px;
        cursor: pointer;
        font-family: var(--zemyna-font-main);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #333 !important;
        transition: background 0.2s ease;
        white-space: nowrap;
        line-height: 1;
    }

    #zemyna-drawer .zemyna-drawer__lang-btn:hover,
    #zemyna-drawer .zemyna-drawer__lang-btn:active,
    #zemyna-drawer .zemyna-drawer__lang-btn:focus {
        background: rgba(0, 0, 0, 0.09) !important;
        background-color: rgba(0, 0, 0, 0.09) !important;
        color: #333 !important;
    }

    #zemyna-drawer .zemyna-drawer__lang-btn:focus-visible {
        outline: 2px solid #4a5c51 !important;
        outline-offset: 2px;
    }

    .zemyna-drawer__lang-caret {
        transition: transform 0.25s ease;
        opacity: 0.5;
    }

    #zemyna-drawer .zemyna-drawer__lang-btn[aria-expanded="true"],
    #zemyna-drawer .zemyna-drawer__lang-btn.is-active {
        background: #4a5c51 !important;
        background-color: #4a5c51 !important;
        color: #ffffff !important;
    }

    .zemyna-drawer__lang-btn[aria-expanded="true"] .zemyna-drawer__lang-caret {
        transform: rotate(180deg);
        opacity: 1;
        color: #ffffff !important;
    }

    /* Lang panel dropdown */
    .zemyna-drawer__lang-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.05);
        min-width: 175px;
        padding: 6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        z-index: 10;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px) scale(0.97);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
    }

    .zemyna-drawer__lang-panel.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    #zemyna-drawer .zemyna-drawer__lang-option {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 12px;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        outline: none;
        border-radius: 9px;
        cursor: pointer;
        font-family: var(--zemyna-font-main);
        transition: background 0.15s ease;
        text-align: left;
    }

    #zemyna-drawer .zemyna-drawer__lang-option:hover { 
        background: rgba(0, 0, 0, 0.04) !important;
        background-color: rgba(0, 0, 0, 0.04) !important;
    }
    #zemyna-drawer .zemyna-drawer__lang-option.is-active { 
        background: rgba(0, 0, 0, 0.05) !important; 
        background-color: rgba(0, 0, 0, 0.05) !important;
    }

    #zemyna-drawer .zemyna-drawer__lang-option:focus-visible {
        outline: 2px solid #4a5c51 !important;
        outline-offset: -2px;
    }

    .zemyna-drawer__lang-option span:first-child {
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: #222;
        min-width: 24px;
    }

    .zemyna-drawer__lang-option span:last-of-type {
        flex-grow: 1;
        font-size: 0.88rem;
        font-weight: 500;
        color: #666;
    }

    .zemyna-drawer__lang-check {
        color: #4a5c51;
        opacity: 0;
        transform: scale(0.6);
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .zemyna-drawer__lang-option.is-active .zemyna-drawer__lang-check {
        opacity: 1;
        transform: scale(1);
    }

    /* ========================================
       DRAWER NAV — Middle
       ======================================== */
    .zemyna-drawer__nav {
        flex: 1;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0.5rem 0 1rem;
        background: #fafafa;
    }

    /* Custom scrollbar */
    .zemyna-drawer__nav::-webkit-scrollbar { width: 3px; }
    .zemyna-drawer__nav::-webkit-scrollbar-track { background: transparent; }
    .zemyna-drawer__nav::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }

    .zemyna-drawer__menu {
        list-style: none;
        margin: 0;
        padding: 0.25rem 0;
    }

    .zemyna-drawer__item {
        margin: 0 0.75rem 2px;
        border-radius: 12px;
    }

    /* Parent leaf links */
    #zemyna-drawer .zemyna-drawer__link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        min-height: 52px;
        background: #ffffff !important;
        background-color: #ffffff !important;
        border: none !important;
        outline: none !important;
        cursor: pointer;
        font-family: var(--zemyna-font-main);
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a2e !important;
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
        letter-spacing: 0.01em;
        border-radius: 12px;
    }

    #zemyna-drawer .zemyna-drawer__link:hover,
    #zemyna-drawer .zemyna-drawer__link:active,
    #zemyna-drawer .zemyna-drawer__link:focus {
        background: rgba(0, 0, 0, 0.03) !important;
        background-color: rgba(0, 0, 0, 0.03) !important;
        color: #4a5c51 !important;
    }

    #zemyna-drawer .zemyna-drawer__link:focus-visible {
        outline: 2px solid #4a5c51 !important;
        outline-offset: 3px;
    }

    #zemyna-drawer .zemyna-drawer__link.is-active,
    #zemyna-drawer .current-menu-item > .zemyna-drawer__link,
    .current-menu-item > #zemyna-drawer .zemyna-drawer__link { 
        color: #4a5c51 !important; 
        background: rgba(0,0,0,0.03) !important;
        background-color: rgba(0,0,0,0.03) !important;
        border: none !important;
    }

    /* Parent buttons (with submenu) */
    #zemyna-drawer .zemyna-drawer__parent-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 1rem;
        min-height: 52px;
        background: #ffffff !important;
        background-color: #ffffff !important;
        border: none !important;
        outline: none !important;
        cursor: pointer;
        font-family: var(--zemyna-font-main);
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a2e !important;
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
        letter-spacing: 0.01em;
        text-align: left;
        border-radius: 12px 12px 0 0;
    }

    #zemyna-drawer .zemyna-drawer__parent-btn:hover,
    #zemyna-drawer .zemyna-drawer__parent-btn:active,
    #zemyna-drawer .zemyna-drawer__parent-btn:focus {
        background: rgba(0, 0, 0, 0.03) !important;
        background-color: rgba(0, 0, 0, 0.03) !important;
        color: #1a1a2e !important;
    }

    #zemyna-drawer .zemyna-drawer__parent-btn:focus-visible {
        outline: 2px solid #4a5c51 !important;
        outline-offset: 3px;
        border-radius: 12px;
    }

    #zemyna-drawer .zemyna-drawer__parent-btn[aria-expanded="true"] {
        color: #ffffff !important;
        background: #4a5c51 !important;
        background-color: #4a5c51 !important; /* Button green color */
        border-radius: 12px 12px 0 0;
    }

    /* Chevron */
    .zemyna-drawer__chevron {
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        color: #bbb;
    }

    .zemyna-drawer__parent-btn[aria-expanded="true"] .zemyna-drawer__chevron {
        transform: rotate(180deg);
        color: #ffffff !important;
    }

    /* Submenu accordion */
    .zemyna-drawer__submenu {
        list-style: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        background: #ffffff; /* Clean white background */
        border-radius: 0 0 12px 12px;
        box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.02);
    }

    .zemyna-drawer__submenu:not([hidden]) { max-height: 700px; }
    .zemyna-drawer__submenu[hidden] { display: block !important; max-height: 0; }

    .zemyna-drawer__submenu li {
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    .zemyna-drawer__category-label {
        font-family: var(--zemyna-font-primary, "Inter", sans-serif);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(0,0,0,0.4);
        padding: 1.5rem 2rem 0.5rem 2.5rem;
        border-bottom: none !important;
    }

    .zemyna-drawer__submenu li:last-child {
        border-bottom: none;
    }

    .zemyna-drawer__sub-link {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        min-height: 50px;
        font-family: var(--zemyna-font-main);
        font-size: 0.95rem;
        font-weight: 500;
        color: #444;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }

    .zemyna-drawer__sub-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: transparent;
        transition: background 0.2s ease;
    }

    .zemyna-drawer__sub-link:hover {
        color: #4a5c51;
        background: rgba(0, 0, 0, 0.015);
        padding-left: 1.8rem; /* Subtle indentation on hover */
    }

    .zemyna-drawer__sub-link:hover::before {
        background: #4a5c51;
    }

    .zemyna-drawer__sub-link:focus-visible {
        outline: 2px solid #4a5c51;
        outline-offset: -2px;
    }

    /* ========================================
       DRAWER BOTTOM — Search & CTA
       ======================================== */
    .zemyna-drawer__bottom {
        flex-shrink: 0;
        padding: 1.5rem;
        background: #fdfdfc;
        border-top: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }


    .zemyna-drawer__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #4a5c51;
        color: #ffffff !important;
        padding: 0.9rem 1.5rem;
        border-radius: 100px;
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none !important;
        transition: background 0.2s ease;
        width: 100%;
        text-align: center;
    }

    .zemyna-drawer__cta svg {
        margin-left: 0.5rem;
        transition: transform 0.2s ease;
    }

    .zemyna-drawer__cta:hover {
        background-color: #3b4940;
        color: #ffffff !important;
    }
    
    .zemyna-drawer__cta:hover svg {
        transform: translateX(2px);
    }
}

/* Desktop: never render drawer elements */
@media (min-width: 769px) {
    .zemyna-drawer,
    .zemyna-drawer-backdrop {
        display: none !important;
    }
}

/* Hide Default GTranslate Widget & Google Frame */
#gtranslate_wrapper, 
.gtranslate_wrapper, 
.goog-te-banner-frame.skiptranslate, 
#goog-gt-tt {
    display: none !important;
}
body {
    top: 0 !important;
}
