.ppro-y26-c-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    background: transparent;
}

.ppro-y26-c-header--dark {
    color: var(--ppro-foreground);
}

.ppro-y26-c-header--light {
    color: var(--ppro-color-white);
}

.admin-bar .ppro-y26-c-header {
    top: 2rem;
}

@media screen and (max-width: 782px) {
    .admin-bar .ppro-y26-c-header {
        top: 2.875rem;
    }
}

.ppro-y26-c-header .ppro-y26-c-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.ppro-y26-c-header .ppro-y26-c-container__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.ppro-y26-c-header__logo {
    color: inherit;
}

.ppro-y26-c-header__nav {
    display: flex;
    align-items: center;
}

.ppro-y26-c-header__menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ppro-y26-c-header__item {
    position: relative;
    display: flex;
    align-items: center;
}

.ppro-y26-c-header__link,
.ppro-y26-c-header__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--ppro-font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    background: none;
    border: 0;
}

.ppro-y26-c-header__trigger {
    cursor: pointer;
}

.ppro-y26-c-header__caret {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.ppro-y26-c-header__trigger.is-open .ppro-y26-c-header__caret {
    transform: rotate(180deg);
}

.ppro-y26-c-header__actions {
    display: flex;
    align-items: center;
}

.ppro-y26-c-header__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.ppro-y26-c-header__search-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.ppro-y26-c-header__cta {
    display: inline-flex;
    margin-left: 1rem;
}

.ppro-y26-c-header__burger {
    display: none;
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0.0625rem solid var(--ppro-foreground);
    border-radius: 50%;
    cursor: pointer;
}

.ppro-y26-c-header__burger-bar {
    position: absolute;
    left: 0.6875rem;
    right: 0.6875rem;
    top: 50%;
    height: 0.075rem;
    transition: transform 0.2s ease;
}

.ppro-y26-c-header__burger-bar:nth-child(1) {
    transform: translateY(calc(-50% - 0.19375rem));
}

.ppro-y26-c-header__burger-bar:nth-child(2) {
    transform: translateY(calc(-50% + 0.19375rem));
}

.ppro-y26-c-header__burger.is-open .ppro-y26-c-header__burger-bar:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.ppro-y26-c-header__burger.is-open .ppro-y26-c-header__burger-bar:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.ppro-y26-c-header--light .ppro-y26-c-header__burger {
    background: var(--ppro-color-white);
}

.ppro-y26-c-header--light .ppro-y26-c-header__burger-bar {
    background: var(--ppro-foreground);
}

.ppro-y26-c-header--dark .ppro-y26-c-header__burger {
    background: var(--ppro-foreground);
}

.ppro-y26-c-header--dark .ppro-y26-c-header__burger-bar {
    background: var(--ppro-color-white);
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .ppro-y26-c-header__link,
    .ppro-y26-c-header__trigger {
        padding-inline: 0.75rem;
    }
}

.ppro-y26-c-header__mega {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    background: var(--ppro-color-white);
    border-top: 0.125rem solid var(--ppro-foreground);
    border-radius: 0;
    color: var(--ppro-foreground);
    box-shadow: 0 1.25rem 2.5rem rgba(40, 25, 50, 0.12);
}

.ppro-y26-c-header__mega-inner {
    display: flex;
    align-items: flex-start;
}

.ppro-y26-c-header__mega-col {
    display: flex;
    flex-direction: column;
}

.ppro-y26-c-header__mega--single .ppro-y26-c-header__mega-col {
    min-width: 16.875rem;
}

.ppro-y26-c-header__mega--multi .ppro-y26-c-header__mega-col {
    min-width: 13.75rem;
}

.ppro-y26-c-header__mega-title {
    display: flex;
    align-items: center;
    min-height: 3.125rem;
    margin: 0;
    padding: 0 1.875rem;
    background: #f5f5f5;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ppro-foreground);
}

.ppro-y26-c-header__mega-link {
    display: flex;
    align-items: center;
    min-height: 3.125rem;
    padding: 0 1.875rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ppro-foreground);
    text-decoration: none;
}

.ppro-y26-c-header__logo,
.ppro-y26-c-header__link,
.ppro-y26-c-header__trigger,
.ppro-y26-c-header__search,
.ppro-y26-c-header__mega-link,
.ppro-y26-c-header__special {
    transition: opacity 0.15s ease;
}

a.ppro-y26-c-header__link:hover,
.ppro-y26-c-header__logo:hover,
.ppro-y26-c-header__trigger:hover,
.ppro-y26-c-header__search:hover,
a.ppro-y26-c-header__mega-link:hover,
a.ppro-y26-c-header__special:hover {
    opacity: 0.5;
}

.ppro-y26-c-header__mega-special {
    display: flex;
    flex-direction: column;
}

.ppro-y26-c-header__special {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 3.125rem;
    padding: 0.75rem 1.875rem;
    background: #f5f5f5;
    color: var(--ppro-foreground);
    text-decoration: none;
}

.ppro-y26-c-header__special-label {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.ppro-y26-c-header__mobile {
    display: none;
}

@media (max-width: 1023px) {
    .ppro-y26-c-header__nav {
        display: none;
    }

    .ppro-y26-c-header__burger {
        display: block;
    }

    .ppro-y26-c-header__search {
        display: none;
    }

    .ppro-y26-c-header .ppro-y26-c-container {
        position: relative;
        z-index: 2;
    }

    .ppro-y26-c-header .ppro-y26-c-container__inner {
        min-height: 2.75rem;
    }

    .ppro-y26-c-header--mobile-open {
        position: fixed;
        background: var(--ppro-color-white);
        color: var(--ppro-foreground);
    }

    .ppro-y26-c-header--mobile-open .ppro-y26-c-header__search {
        display: inline-flex;
    }

    .ppro-y26-c-header--mobile-open .ppro-y26-c-header__cta {
        display: none;
    }

    .ppro-y26-c-header--mobile-open .ppro-y26-c-header__burger {
        margin-left: 1rem;
        background: var(--ppro-foreground);
    }

    .ppro-y26-c-header--mobile-open .ppro-y26-c-header__burger-bar {
        background: var(--ppro-color-white);
    }

    .ppro-y26-c-header__mobile {
        position: fixed;
        left: 0;
        right: 0;
        top: 3.75rem;
        bottom: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        background: var(--ppro-color-white);
        color: var(--ppro-foreground);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.5rem);
        transition:
            opacity 0.4s ease,
            transform 0.4s ease,
            visibility 0s linear 0.4s;
        pointer-events: none;
    }

    .admin-bar .ppro-y26-c-header__mobile {
        top: 5.75rem;
    }

    .ppro-y26-c-header__mobile.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            opacity 0.4s ease,
            transform 0.4s ease;
        pointer-events: auto;
    }

    .ppro-y26-c-header__mobile-list {
        margin: 0;
        padding: 0.5rem 0;
        list-style: none;
    }

    .ppro-y26-c-header__mobile-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        width: 100%;
        min-height: 4.5rem;
        padding: 0 1rem;
        font-family: var(--ppro-font-body);
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.625rem;
        letter-spacing: -0.02em;
        color: inherit;
        text-align: left;
        text-decoration: none;
        background: none;
        border: 0;
        cursor: pointer;
    }

    .ppro-y26-c-header__mobile-arrow {
        width: 1.5rem;
        height: 1.5rem;
        flex-shrink: 0;
    }

    .ppro-y26-c-header__mobile-cta {
        padding: 1rem;
    }

    .ppro-y26-c-header__mobile-panel {
        position: absolute;
        inset: 0;
        background: var(--ppro-color-white);
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition:
            transform 0.4s ease,
            visibility 0s linear 0.4s;
    }

    .ppro-y26-c-header__mobile-panel.is-active {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.4s ease;
    }

    .ppro-y26-c-header__mobile-back {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        width: 100%;
        min-height: 4.5rem;
        padding: 0 1rem;
        font-family: var(--ppro-font-body);
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.625rem;
        letter-spacing: -0.02em;
        color: inherit;
        text-align: left;
        background: #f5f5f5;
        border: 0;
        cursor: pointer;
    }

    .ppro-y26-c-header__mobile-back-arrow {
        width: 1.5rem;
        height: 1.5rem;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .ppro-y26-c-header__mobile-back:hover .ppro-y26-c-header__mobile-back-arrow {
        transform: translateX(-0.25rem);
    }

    .ppro-y26-c-header__mobile-title {
        display: flex;
        align-items: center;
        min-height: 4.5rem;
        margin: 0;
        padding: 0 1rem;
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 1.625rem;
        letter-spacing: -0.02em;
        background: #f5f5f5;
    }

    .ppro-y26-c-header__mobile-link {
        display: flex;
        align-items: center;
        min-height: 4.5rem;
        padding: 0 1rem;
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.625rem;
        letter-spacing: -0.02em;
        color: inherit;
        text-decoration: none;
    }

    .ppro-y26-c-header__mobile-special {
        display: flex;
        align-items: center;
        min-height: 4.5rem;
        padding: 0 1rem;
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.625rem;
        letter-spacing: -0.02em;
        color: inherit;
        text-decoration: none;
        background: #f5f5f5;
    }

    .ppro-y26-c-header__mobile-special .ppro-y26-c-header__special-label {
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
    }
}

@media (max-width: 782px) {
    .admin-bar .ppro-y26-c-header__mobile {
        top: 6.625rem;
    }
}

@media (max-width: 767px) {
    .ppro-y26-c-header__mobile-item,
    .ppro-y26-c-header__mobile-back,
    .ppro-y26-c-header__mobile-title,
    .ppro-y26-c-header__mobile-link,
    .ppro-y26-c-header__mobile-special {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}
