.acs-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #ffffff !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
    border-bottom: 1px solid #eaecf0 !important;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06) !important;
}

.acs-header.is-scrolled {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1) !important;
    border-bottom-color: #ffa400 !important;
}

.acs-header .acs-shell {
    padding-block: 16px !important;
}

.acs-header__bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.acs-header__brand {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.acs-header__logo {
    display: block !important;
    width: 145px !important;
    height: 48px !important;
    object-fit: contain !important;
}

.acs-header__brand-text {
    color: #101828 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.acs-header__desktop {
    display: flex !important;
    align-items: center !important;
}

.acs-header__toggle {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid #d0d5dd !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.acs-header__toggle-line {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #101828 !important;
}

.acs-header__mobile-panel {
    display: none !important;
    padding-top: 16px !important;
}

@media (max-width: 767px) {
    .acs-header__desktop {
        display: none !important;
    }

    .acs-header__toggle {
        display: inline-flex !important;
    }

    .acs-header__mobile-panel.is-open {
        display: block !important;
    }
}
