/* ÜresÓra CSS split: Final overrides, header polish, provider theme, latest session fixes. Source: app.css lines 18176-21691. */
/* Header navigation alignment + smooth scroll choreography */
.uo-header {
    will-change: transform, background-color, box-shadow, border-color;
    transform: translate3d(0, 0, 0);
    transition:
        transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 360ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 360ms ease,
        box-shadow 420ms ease,
        backdrop-filter 360ms ease,
        -webkit-backdrop-filter 360ms ease;
}

.uo-header-scrolled,
.uo-header-compact {
    background: rgba(9, 10, 14, 0.88) !important;
    border-bottom-color: rgba(255, 255, 255, 0.09);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.uo-header-hidden {
    transform: translate3d(0, -108%, 0);
}

.uo-header-reveal {
    animation: uo-header-reveal-glide 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes uo-header-reveal-glide {
    0% {
        transform: translate3d(0, -22px, 0);
        opacity: 0.78;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.uo-header-compact .uo-header-inner {
    min-height: 58px;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.uo-nav-desktop {
    align-items: center;
    gap: clamp(0px, 0.45vw, 6px);
}

.uo-nav-link {
    white-space: nowrap;
    text-wrap: nowrap;
}

.uo-header-right {
    min-width: 0;
    gap: clamp(10px, 1.3vw, 22px);
}

.uo-header-search {
    min-width: 220px;
}

@media (min-width: 1101px) and (max-width: 1380px) {
    .uo-header-inner {
        gap: 14px;
    }

    .uo-header-search {
        max-width: 300px;
    }

    .uo-nav-link {
        padding-inline: 9px;
        font-size: 13.2px;
    }

    .uo-nav-dropdown-trigger {
        gap: 4px;
    }
}

@media (min-width: 1101px) and (max-width: 1200px) {
    .uo-header-search {
        max-width: 248px;
    }

    .uo-search-trigger {
        padding-inline: 13px;
    }

    .uo-nav-link {
        padding-inline: 7px;
        font-size: 12.8px;
    }
}

@media (max-width: 1100px) {
    .uo-header {
        min-height: 60px;
    }

    .uo-header-inner {
        grid-template-columns: 42px minmax(0, 1fr) 42px !important;
        gap: 10px;
    }

    .uo-mobile-search-btn {
        justify-self: start;
        order: 1;
    }

    .uo-header-left {
        order: 2;
        justify-self: center;
        width: 100%;
        justify-content: center !important;
    }

    .uo-header-right {
        order: 3;
        justify-self: end;
        width: 42px;
        justify-content: flex-end !important;
    }

    .uo-header-actions {
        width: 42px;
        justify-content: flex-end;
    }

    .uo-drawer-nav {
        gap: 4px;
        padding-top: 10px;
    }

    .uo-drawer-nav-item {
        min-height: 58px;
        padding: 9px 4px;
        border-bottom-color: rgba(255, 255, 255, 0.035);
        transition:
            color 220ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
            background-color 220ms ease;
    }

    .uo-drawer-nav-item:hover {
        transform: translateX(2px);
    }

    .uo-drawer-nav-label {
        font-size: 15.5px;
    }

    .uo-drawer-nav-icon {
        width: 42px;
        height: 42px;
    }

    .uo-header-hidden {
        transform: translate3d(0, -104%, 0);
    }
}

@media (max-width: 480px) {
    .uo-header-inner {
        grid-template-columns: 38px minmax(0, 1fr) 38px !important;
        gap: 8px;
    }

    .uo-mobile-search-btn,
    .uo-hamburger {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .uo-header,
    .uo-header-inner,
    .uo-drawer,
    .uo-drawer-nav-item {
        transition-duration: 1ms !important;
        animation: none !important;
    }
}

/* Mobile header request: logo left, large search center, menu right */
@media (max-width: 1100px) {
    .uo-header-inner {
        grid-template-columns: auto minmax(132px, 1fr) auto !important;
        gap: 10px;
        min-height: 62px;
    }

    .uo-mobile-search-btn {
        display: none !important;
    }

    .uo-header-left {
        order: 1;
        justify-self: start;
        width: auto;
        min-width: 0;
        justify-content: flex-start !important;
    }

    .uo-header-search {
        display: block !important;
        order: 2;
        min-width: 0;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .uo-search-trigger {
        width: 100%;
        min-height: 42px;
        padding: 8px 12px;
        border-radius: 15px;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.075);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .uo-search-trigger svg {
        width: 17px;
        height: 17px;
        color: var(--accent, #ff6a00);
    }

    .uo-search-placeholder {
        display: flex !important;
        min-width: 0;
    }

    .uo-search-ph-main {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 13px;
    }

    .uo-search-ph-sub {
        display: none !important;
    }

    .uo-header-right {
        order: 3;
        justify-self: end;
        width: auto;
        min-width: 40px;
        justify-content: flex-end !important;
    }

    .uo-header-actions {
        width: auto;
    }

    .uo-hamburger {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
    }
}

@media (max-width: 520px) {
    .uo-header-inner {
        grid-template-columns: auto minmax(120px, 1fr) auto !important;
        gap: 8px;
    }

    .uo-logo {
        gap: 6px;
    }

    .uo-logo svg {
        width: 27px;
        height: 27px;
    }

    .uo-logo-word {
        font-size: 15.5px;
        max-width: 74px;
    }

    .uo-search-trigger {
        min-height: 40px;
        padding: 7px 10px;
        gap: 8px;
    }

    .uo-search-ph-main {
        font-size: 12.5px;
    }

    .uo-hamburger {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        padding: 10px;
    }
}

@media (max-width: 390px) {
    .uo-header-inner {
        grid-template-columns: auto minmax(104px, 1fr) auto !important;
        gap: 6px;
    }

    .uo-logo-word {
        display: none;
    }

    .uo-search-trigger {
        min-height: 38px;
        border-radius: 13px;
    }

    .uo-search-ph-main {
        font-size: 12px;
    }

    .uo-hamburger {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 13px;
    }
}

/* Mobile header compact correction */
@media (max-width: 1100px) {
    .uo-header-hidden {
        transform: translate3d(0, 0, 0) !important;
    }

    .uo-header-inner {
        grid-template-columns: auto minmax(96px, 1fr) auto !important;
        gap: 8px;
        min-height: 58px;
    }

    .uo-header-compact .uo-header-inner {
        min-height: 54px;
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .uo-logo {
        gap: 6px;
    }

    .uo-logo svg {
        width: 25px;
        height: 25px;
    }

    .uo-logo-word {
        display: inline-flex !important;
        max-width: none;
        overflow: visible;
        font-size: 15px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .uo-search-trigger {
        min-height: 36px;
        padding: 6px 9px;
        border-radius: 13px;
        gap: 7px;
    }

    .uo-search-trigger svg {
        width: 15px;
        height: 15px;
    }

    .uo-search-ph-main {
        font-size: 12px;
    }

    .uo-hamburger {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        padding: 10px;
    }
}

@media (max-width: 430px) {
    .uo-header-inner {
        grid-template-columns: auto minmax(92px, 1fr) auto !important;
        gap: 7px;
    }

    .uo-logo svg {
        width: 24px;
        height: 24px;
    }

    .uo-logo-word {
        font-size: 14px;
    }

    .uo-search-trigger {
        min-height: 35px;
        padding: 6px 8px;
        gap: 6px;
    }

    .uo-search-ph-main {
        font-size: 11.5px;
    }

    .uo-hamburger {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 12px;
    }
}

@media (max-width: 360px) {
    .uo-logo-word {
        font-size: 13px;
    }

    .uo-search-ph-main {
        font-size: 11px;
    }
}

/* Mobile compact search: small center trigger with premium open animation */
@media (max-width: 1100px) {
    .uo-header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto auto !important;
        gap: 8px;
    }

    .uo-header-search {
        order: 3;
        justify-self: end;
        width: 44px;
        max-width: 44px;
        min-width: 44px;
    }

    .uo-header-left {
        order: 1;
        justify-self: start;
    }

    .uo-header-right {
        order: 4;
        justify-self: end;
        width: auto;
        min-width: 0;
    }

    .uo-search-trigger {
        position: relative;
        overflow: hidden;
        width: 42px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 14px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
            rgba(255, 106, 0, 0.08);
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 10px 24px rgba(0, 0, 0, 0.14);
    }

    .uo-search-trigger::before {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.38), transparent 62%);
        opacity: 0;
        transform: scale(0.82);
        transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }

    .uo-header-search.uo-search-open .uo-search-trigger::before,
    .uo-search-trigger:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .uo-header-search.uo-search-open .uo-search-trigger {
        background: var(--accent, #ff6a00);
        border-color: rgba(255, 106, 0, 0.85);
        box-shadow: 0 12px 30px rgba(255, 106, 0, 0.32);
    }

    .uo-header-search.uo-search-open .uo-search-trigger svg {
        color: #fff;
        transform: rotate(-8deg) scale(1.08);
    }

    .uo-search-trigger svg {
        position: relative;
        z-index: 1;
    }

    .uo-hamburger {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
            rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 10px 24px rgba(0, 0, 0, 0.14);
        transition:
            background-color 260ms ease,
            border-color 260ms ease,
            box-shadow 320ms ease,
            transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .uo-hamburger::before {
        content: "";
        position: absolute;
        inset: -45%;
        background: conic-gradient(from 180deg, transparent, rgba(255, 106, 0, 0.55), transparent 38%);
        opacity: 0;
        transform: rotate(-28deg) scale(0.78);
        transition: opacity 280ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }

    .uo-hamburger:hover,
    .uo-hamburger-active {
        transform: translateY(-1px);
        border-color: rgba(255, 106, 0, 0.52);
    }

    .uo-hamburger:hover::before,
    .uo-hamburger-active::before {
        opacity: 1;
        transform: rotate(28deg) scale(1);
    }

    .uo-hamburger span {
        position: relative;
        z-index: 1;
    }

    .uo-search-placeholder {
        display: none !important;
    }

    body.uo-search-active > .uo-search-dropdown {
        top: 68px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100dvh - 86px);
        transform-origin: 50% 0%;
        animation: uo-mobile-search-pop 520ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.34),
            0 0 0 1px rgba(255, 255, 255, 0.68) inset;
    }

    body.uo-search-active > .uo-search-dropdown.uo-search-closing {
        pointer-events: none;
        animation: uo-mobile-search-close 380ms cubic-bezier(0.55, 0, 0.1, 1) both !important;
    }

    body.uo-search-active > .uo-search-dropdown::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.13), transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 34%);
        pointer-events: none;
    }

    body.uo-search-active > .uo-search-dropdown .uo-search-form {
        position: relative;
        z-index: 1;
    }
}

.uo-search-backdrop-closing {
    pointer-events: none;
    animation: uo-search-backdrop-out 320ms ease both;
}

.uo-header-search.uo-search-closing .uo-search-dropdown {
    pointer-events: none;
    animation: uo-search-desktop-close 260ms cubic-bezier(0.55, 0, 0.1, 1) both;
}

@keyframes uo-search-backdrop-out {
    from {
        opacity: 1;
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0) saturate(100%);
        -webkit-backdrop-filter: blur(0) saturate(100%);
    }
}

@keyframes uo-search-desktop-close {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.985);
        filter: blur(5px);
    }
}

@keyframes uo-mobile-search-pop {
    0% {
        opacity: 0;
        transform: translateY(-14px) scale(0.92);
        filter: blur(10px);
        clip-path: inset(0 44% 88% 44% round 18px);
    }
    58% {
        opacity: 1;
        transform: translateY(2px) scale(1.012);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
}

@keyframes uo-mobile-search-close {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
    42% {
        opacity: 0.92;
        transform: translateY(-2px) scale(0.986);
        filter: blur(1px);
        clip-path: inset(0 0 0 0 round 18px);
    }
    100% {
        opacity: 0;
        transform: translateY(-12px) scale(0.92);
        filter: blur(10px);
        clip-path: inset(0 44% 88% 44% round 18px);
    }
}

/* Header final polish: stronger mobile logo, desktop motion, account emphasis, drawer categories */
@media (max-width: 1100px) {
    .uo-header .container.uo-header-inner {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .uo-logo svg {
        width: 31px;
        height: 31px;
    }

    .uo-logo-word {
        font-size: 16.5px;
        letter-spacing: 0;
    }

    .uo-header-left {
        margin-left: 2px;
    }
}

@media (max-width: 390px) {
    .uo-logo svg {
        width: 29px;
        height: 29px;
    }

    .uo-logo-word {
        font-size: 15px;
    }
}

.uo-drawer {
    overflow: hidden;
}

.uo-drawer-scroll {
    position: relative;
}

.uo-drawer-scroll > .uo-drawer-user,
.uo-drawer-scroll > .uo-drawer-auth,
.uo-drawer-scroll > .uo-drawer-nav,
.uo-drawer-scroll > .uo-drawer-referral,
.uo-drawer-scroll > .uo-drawer-bottom {
    transition:
        transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 280ms ease,
        filter 320ms ease;
}

.uo-drawer-cats-open .uo-drawer-scroll > .uo-drawer-user,
.uo-drawer-cats-open .uo-drawer-scroll > .uo-drawer-auth,
.uo-drawer-cats-open .uo-drawer-scroll > .uo-drawer-nav,
.uo-drawer-cats-open .uo-drawer-scroll > .uo-drawer-referral,
.uo-drawer-cats-open .uo-drawer-scroll > .uo-drawer-bottom {
    transform: translateX(-34px);
    opacity: 0;
    filter: blur(6px);
    pointer-events: none;
}

.uo-drawer-cat-panel {
    position: absolute;
    inset: 16px 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateX(44px) scale(0.985);
    filter: blur(8px);
    pointer-events: none;
    transition:
        transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 320ms ease,
        filter 380ms ease;
}

.uo-drawer-cats-open .uo-drawer-cat-panel {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.uo-drawer-cat-back {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 6px;
    background: transparent;
    border: 0;
    color: #aab1bb;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.uo-drawer-cat-back:hover {
    color: #fff;
    transform: translateX(-2px);
}

.uo-drawer-cat-head {
    display: grid;
    gap: 4px;
    padding: 4px 0 8px;
}

.uo-drawer-cat-head span {
    color: var(--accent, #ff6a00);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.uo-drawer-cat-head strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.uo-drawer-cat-all,
.uo-drawer-cat-item {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    text-decoration: none;
    min-height: 58px;
    border-radius: 15px;
    transition:
        transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
        background-color 220ms ease,
        color 220ms ease;
}

.uo-drawer-cat-all {
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 106, 0, 0.22);
}

.uo-drawer-cat-all span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.uo-drawer-cat-all b {
    font-size: 15px;
}

.uo-drawer-cat-all em {
    color: #8f96a3;
    font-style: normal;
    font-size: 12px;
}

.uo-drawer-cat-list {
    display: grid;
    gap: 4px;
    overflow-y: auto;
    padding-bottom: 20px;
}

.uo-drawer-cat-item {
    padding: 8px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.uo-drawer-cat-item span:nth-child(2) {
    flex: 1;
    font-weight: 700;
}

.uo-drawer-cat-all:hover,
.uo-drawer-cat-item:hover {
    transform: translateX(3px);
    color: var(--accent, #ff6a00);
}

@media (min-width: 1101px) {
    .uo-header {
        transition:
            background-color 360ms cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 420ms ease,
            border-color 320ms ease,
            transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .uo-logo:hover svg {
        animation: uo-logo-orbit 720ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .uo-nav-link {
        transition:
            color 240ms ease,
            background-color 240ms ease,
            transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .uo-nav-link:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.075);
    }

    .uo-nav-dropdown-panel {
        transform-origin: 50% 0%;
        transition:
            opacity 230ms ease,
            transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
            filter 260ms ease;
        filter: blur(8px);
    }

    .uo-nav-dropdown:hover .uo-nav-dropdown-panel,
    .uo-nav-dropdown:focus-within .uo-nav-dropdown-panel {
        filter: blur(0);
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .uo-nav-dropdown-panel {
        transform: translateX(-50%) translateY(-10px) scale(0.975);
    }

    .uo-search-trigger {
        transition:
            background-color 260ms ease,
            border-color 260ms ease,
            box-shadow 340ms ease,
            transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .uo-search-trigger:hover {
        transform: translateY(-2px);
    }

    .uo-header-actions > [data-auth-open].uo-header-icon-btn,
    .uo-user-trigger {
        width: 44px;
        height: 44px;
        background:
            linear-gradient(180deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.08)),
            rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 106, 0, 0.38);
        box-shadow:
            0 12px 32px rgba(255, 106, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        position: relative;
        overflow: visible;
    }

    .uo-header-actions > [data-auth-open].uo-header-icon-btn::after,
    .uo-user-trigger::after {
        content: "";
        position: absolute;
        inset: -5px;
        width: auto;
        height: auto;
        border-radius: inherit;
        border: 1px solid rgba(255, 106, 0, 0.24);
        opacity: 0;
        transform: scale(0.86);
        transition: opacity 280ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        animation: none;
    }

    .uo-header-actions > [data-auth-open].uo-header-icon-btn:hover,
    .uo-user-trigger:hover {
        transform: translateY(-2px);
        color: #fff;
        background: var(--accent, #ff6a00);
        box-shadow: 0 18px 42px rgba(255, 106, 0, 0.32);
    }

    .uo-header-actions > [data-auth-open].uo-header-icon-btn:hover::after,
    .uo-user-trigger:hover::after {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes uo-logo-orbit {
    0% { transform: rotate(0) scale(1); }
    45% { transform: rotate(12deg) scale(1.08); }
    100% { transform: rotate(0) scale(1); }
}

/* Header search final pass: richer open/close motion, no hover lift, no mobile double scroll */
@media (min-width: 1101px) {
    .uo-header-search.uo-search-open .uo-search-dropdown {
        animation: uo-desktop-search-pop 430ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
        transform-origin: 50% 0%;
        transition: none;
    }

    .uo-header-search.uo-search-closing .uo-search-dropdown {
        animation: uo-desktop-search-close-pop 260ms cubic-bezier(0.55, 0, 0.1, 1) both !important;
        transform-origin: 50% 0%;
        transition: none;
    }

    .uo-nav-link:hover,
    .uo-search-trigger:hover,
    .uo-search-submit:hover,
    .uo-header-icon-btn:hover,
    .uo-header-actions > [data-auth-open].uo-header-icon-btn:hover,
    .uo-user-trigger:hover {
        transform: none !important;
    }
}

@media (max-width: 1100px) {
    html:has(body.uo-search-active),
    html:has(body.uo-drawer-active) {
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    body.uo-search-active,
    body.uo-drawer-active {
        height: 100dvh;
        min-height: 100dvh;
        overflow: hidden !important;
        touch-action: none;
        overscroll-behavior: none;
        position: relative;
    }

    body.uo-search-active > .uo-search-dropdown {
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: none;
    }

    body.uo-search-active > .uo-search-dropdown::-webkit-scrollbar,
    .uo-drawer-panel::-webkit-scrollbar,
    .uo-drawer-cat-list::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .uo-hamburger:hover,
    .uo-hamburger-active {
        transform: none !important;
    }

    .uo-hamburger:hover:not(.uo-hamburger-active) span:nth-child(1),
    .uo-hamburger:hover:not(.uo-hamburger-active) span:nth-child(3) {
        transform: none !important;
    }
}

@keyframes uo-desktop-search-pop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-16px) scale(0.94);
        filter: blur(10px);
        clip-path: inset(0 42% 84% 42% round 18px);
    }
    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(2px) scale(1.008);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
}

@keyframes uo-desktop-search-close-pop {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 18px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px) scale(0.96);
        filter: blur(8px);
        clip-path: inset(0 42% 82% 42% round 18px);
    }
}

/* Header + auth final polish: minimalist mobile controls and smart sticky motion */
:root {
    --uo-header-offset: 71px;
}

body {
    padding-top: var(--uo-header-offset) !important;
}

.uo-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    will-change: transform, opacity, background-color, box-shadow;
    transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 360ms ease,
        background-color 340ms ease,
        border-color 300ms ease,
        box-shadow 380ms ease,
        backdrop-filter 340ms ease,
        -webkit-backdrop-filter 340ms ease !important;
}

.uo-header-hidden {
    transform: translate3d(0, -112%, 0) !important;
    opacity: 0.02;
    pointer-events: none;
}

.uo-header-soft-return,
.uo-header-reveal {
    opacity: 1;
    animation: uo-header-soft-return 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes uo-header-soft-return {
    0% {
        transform: translate3d(0, -28px, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.uo-header-actions > [data-auth-open].uo-header-icon-btn {
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 280ms ease,
        transform 150ms ease !important;
}

.uo-header-actions > [data-auth-open].uo-header-icon-btn:active {
    transform: scale(0.96) !important;
}

.auth-modal.closing {
    display: flex;
}

.auth-modal.open .auth-modal-backdrop {
    animation: auth-backdrop-in 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.auth-modal.closing .auth-modal-backdrop {
    animation: auth-backdrop-out 260ms ease both;
}

.auth-modal.open .auth-modal-sheet {
    animation: auth-sheet-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.auth-modal.closing .auth-modal-sheet {
    animation: auth-sheet-out 280ms cubic-bezier(0.55, 0, 0.1, 1) both;
}

@keyframes auth-backdrop-in {
    from {
        opacity: 0;
        backdrop-filter: blur(0) saturate(100%);
        -webkit-backdrop-filter: blur(0) saturate(100%);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
    }
}

@keyframes auth-backdrop-out {
    from {
        opacity: 1;
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0) saturate(100%);
        -webkit-backdrop-filter: blur(0) saturate(100%);
    }
}

@keyframes auth-sheet-in {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.965);
        filter: blur(8px);
    }
    62% {
        opacity: 1;
        transform: translateY(-2px) scale(1.006);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes auth-sheet-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
        filter: blur(8px);
    }
}

@media (max-width: 767px) {
    .auth-modal.open .auth-modal-sheet {
        animation-name: auth-sheet-mobile-in;
    }

    .auth-modal.closing .auth-modal-sheet {
        animation-name: auth-sheet-mobile-out;
    }
}

@keyframes auth-sheet-mobile-in {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.98);
        filter: blur(8px);
    }
    72% {
        opacity: 1;
        transform: translateY(-4px) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes auth-sheet-mobile-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%) scale(0.98);
        filter: blur(7px);
    }
}

@media (max-width: 1100px) {
    :root {
        --uo-header-offset: 60px;
    }

    .uo-header {
        background: rgba(10, 11, 15, 0.78) !important;
        border-bottom-color: rgba(255, 255, 255, 0.055);
        box-shadow: none;
    }

    .uo-header-scrolled,
    .uo-header-compact {
        background: rgba(10, 11, 15, 0.86) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    }

    .uo-header .container.uo-header-inner {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .uo-header-search {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
    }

    .uo-search-trigger {
        width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.035) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .uo-search-trigger::before {
        display: none !important;
    }

    .uo-search-trigger svg {
        width: 17px !important;
        height: 17px !important;
        color: rgba(255, 255, 255, 0.78) !important;
        transform: none !important;
        transition: color 180ms ease, transform 180ms ease;
    }

    .uo-search-trigger:hover,
    .uo-search-trigger:active,
    .uo-header-search.uo-search-open .uo-search-trigger {
        background: rgba(255, 106, 0, 0.09) !important;
        border-color: rgba(255, 106, 0, 0.28) !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .uo-header-search.uo-search-open .uo-search-trigger svg {
        color: #ff7a1a !important;
        transform: scale(1.03) !important;
    }

    .uo-hamburger {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
        padding: 10px !important;
        gap: 4px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.025) !important;
        border: 1px solid rgba(255, 255, 255, 0.09) !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .uo-hamburger::before {
        display: none !important;
    }

    .uo-hamburger span {
        height: 1.7px !important;
        background: rgba(255, 255, 255, 0.82) !important;
        border-radius: 999px;
        transition:
            transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 180ms ease,
            background-color 180ms ease !important;
    }

    .uo-hamburger:hover,
    .uo-hamburger:active,
    .uo-hamburger-active {
        background: rgba(255, 106, 0, 0.08) !important;
        border-color: rgba(255, 106, 0, 0.26) !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .uo-hamburger-active span {
        background: #ff7a1a !important;
    }
}

/* Final motion refinement: softer header return and account-origin modal opening */
:root {
    --auth-open-x: 50vw;
    --auth-open-y: 36px;
}

.uo-header {
    overflow: visible;
}

.uo-header::after {
    content: "";
    position: absolute;
    left: clamp(18px, 7vw, 120px);
    right: clamp(18px, 7vw, 120px);
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.44), rgba(255, 255, 255, 0.28), transparent);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: 50% 50%;
    pointer-events: none;
}

.uo-header-hidden {
    transform: translate3d(0, -118%, 0) scale(0.992) !important;
    opacity: 0;
}

.uo-header-reveal,
.uo-header-soft-return {
    animation: uo-header-lux-return 860ms cubic-bezier(0.19, 1, 0.22, 1) both !important;
}

.uo-header-reveal::after,
.uo-header-soft-return::after {
    animation: uo-header-line-sweep 980ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.uo-header-reveal .uo-header-inner,
.uo-header-soft-return .uo-header-inner {
    animation: uo-header-inner-settle 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes uo-header-lux-return {
    0% {
        opacity: 0;
        transform: translate3d(0, -92%, 0) scale(0.988);
        filter: blur(10px);
    }
    52% {
        opacity: 1;
        transform: translate3d(0, 4px, 0) scale(1.002);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes uo-header-inner-settle {
    0% {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
    }
    58% {
        opacity: 1;
        transform: translate3d(0, 1px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes uo-header-line-sweep {
    0% {
        opacity: 0;
        transform: scaleX(0.18);
        filter: blur(8px);
    }
    48% {
        opacity: 0.82;
        transform: scaleX(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scaleX(1);
        filter: blur(0);
    }
}

.uo-auth-trigger-active {
    animation: uo-auth-trigger-tap 560ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.uo-auth-trigger-active::after {
    opacity: 1 !important;
    transform: scale(1.08) !important;
    border-color: rgba(255, 106, 0, 0.44) !important;
}

@keyframes uo-auth-trigger-tap {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 32px rgba(255, 106, 0, 0.18);
    }
    38% {
        transform: scale(0.94);
        box-shadow: 0 8px 24px rgba(255, 106, 0, 0.22);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 18px 48px rgba(255, 106, 0, 0.28);
    }
}

.auth-modal-backdrop {
    overflow: hidden;
}

.auth-modal-backdrop::before {
    content: "";
    position: absolute;
    left: var(--auth-open-x);
    top: var(--auth-open-y);
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 106, 0, 0.34), rgba(255, 106, 0, 0.13) 34%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.16);
    opacity: 0;
    pointer-events: none;
}

.auth-modal.open .auth-modal-backdrop::before {
    animation: auth-origin-bloom 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.auth-modal.open .auth-modal-backdrop {
    animation: auth-backdrop-lux-in 360ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.auth-modal.closing .auth-modal-backdrop {
    animation: auth-backdrop-lux-out 320ms ease both;
}

.auth-modal.open .auth-modal-sheet {
    animation: auth-sheet-lux-in 560ms cubic-bezier(0.19, 1, 0.22, 1) both;
    transform-origin: 50% 6%;
}

.auth-modal.closing .auth-modal-sheet {
    animation: auth-sheet-lux-out 340ms cubic-bezier(0.55, 0, 0.1, 1) both;
}

@keyframes auth-origin-bloom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.12);
        filter: blur(10px);
    }
    45% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2.8);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(4.2);
        filter: blur(12px);
    }
}

@keyframes auth-backdrop-lux-in {
    from {
        opacity: 0;
        backdrop-filter: blur(0) saturate(100%);
        -webkit-backdrop-filter: blur(0) saturate(100%);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(16px) saturate(155%);
        -webkit-backdrop-filter: blur(16px) saturate(155%);
    }
}

@keyframes auth-backdrop-lux-out {
    from {
        opacity: 1;
        backdrop-filter: blur(16px) saturate(155%);
        -webkit-backdrop-filter: blur(16px) saturate(155%);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0) saturate(100%);
        -webkit-backdrop-filter: blur(0) saturate(100%);
    }
}

@keyframes auth-sheet-lux-in {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
        filter: blur(10px);
        clip-path: inset(8% 10% 10% 10% round 24px);
    }
    60% {
        opacity: 1;
        transform: translateY(-3px) scale(1.006);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 24px);
    }
}

@keyframes auth-sheet-lux-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 24px);
    }
    to {
        opacity: 0;
        transform: translateY(18px) scale(0.965);
        filter: blur(8px);
        clip-path: inset(5% 8% 8% 8% round 24px);
    }
}

.uo-user-menu.uo-user-menu-open .uo-user-trigger {
    animation: uo-auth-trigger-tap 520ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.uo-user-dropdown {
    transform-origin: 92% 0%;
}

.uo-user-menu.uo-user-menu-open .uo-user-dropdown {
    animation: uo-user-popover-in 420ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes uo-user-popover-in {
    0% {
        opacity: 0;
        transform: translateY(-14px) scale(0.94);
        filter: blur(8px);
        clip-path: inset(0 38% 82% 38% round 14px);
    }
    62% {
        opacity: 1;
        transform: translateY(2px) scale(1.006);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 14px);
    }
}

@media (max-width: 767px) {
    .auth-modal.open .auth-modal-sheet {
        animation: auth-sheet-mobile-lux-in 620ms cubic-bezier(0.19, 1, 0.22, 1) both;
    }

    .auth-modal.closing .auth-modal-sheet {
        animation: auth-sheet-mobile-lux-out 360ms cubic-bezier(0.55, 0, 0.1, 1) both;
    }
}

@keyframes auth-sheet-mobile-lux-in {
    0% {
        opacity: 0;
        transform: translateY(104%) scale(0.985);
        filter: blur(10px);
        clip-path: inset(18% 8% 0 8% round 24px 24px 0 0);
    }
    68% {
        opacity: 1;
        transform: translateY(-6px) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 24px 24px 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        clip-path: inset(0 0 0 0 round 24px 24px 0 0);
    }
}

@keyframes auth-sheet-mobile-lux-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: translateY(104%) scale(0.985);
        filter: blur(9px);
    }
}

/* Smooth live header scroll fix: transition-only, no restarted keyframes. */
.uo-header {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: none !important;
    overflow: visible !important;
    transition:
        transform 280ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 260ms ease,
        backdrop-filter 220ms ease,
        -webkit-backdrop-filter 220ms ease !important;
}

.uo-header-hidden {
    opacity: 1 !important;
    transform: translate3d(0, calc(-100% - 10px), 0) !important;
    pointer-events: none;
}

.uo-header-reveal,
.uo-header-soft-return,
.uo-header-reveal .uo-header-inner,
.uo-header-soft-return .uo-header-inner,
.uo-header-reveal::after,
.uo-header-soft-return::after {
    animation: none !important;
    filter: none !important;
}

.uo-header-reveal,
.uo-header-soft-return {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

.uo-header::after {
    display: none;
}

/* Provider page header theme: business surface uses green instead of orange. */
.uo-header {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    pointer-events: none;
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
}

.uo-header-hidden {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    pointer-events: none;
}

.uo-header .container.uo-header-inner {
    pointer-events: auto;
    width: min(calc(100% - 32px), 1480px);
    max-width: 1480px;
    margin: 12px auto 0;
    padding: 10px 14px !important;
    min-height: 64px;
    border: 1px solid transparent;
    border-radius: 28px;
    background: rgba(8, 10, 14, 0);
    box-shadow: none;
    backdrop-filter: blur(0) saturate(100%);
    -webkit-backdrop-filter: blur(0) saturate(100%);
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 50% 0%;
    transition:
        width 520ms cubic-bezier(0.19, 1, 0.22, 1),
        max-width 520ms cubic-bezier(0.19, 1, 0.22, 1),
        margin-top 520ms cubic-bezier(0.19, 1, 0.22, 1),
        min-height 420ms cubic-bezier(0.19, 1, 0.22, 1),
        padding 420ms cubic-bezier(0.19, 1, 0.22, 1),
        border-radius 520ms cubic-bezier(0.19, 1, 0.22, 1),
        background-color 360ms ease,
        border-color 360ms ease,
        box-shadow 420ms ease,
        backdrop-filter 420ms ease,
        -webkit-backdrop-filter 420ms ease,
        transform 520ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.uo-header .container.uo-header-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 48%, rgba(255, 106, 0, 0.09));
    pointer-events: none;
    transition: opacity 420ms ease;
}

.uo-header-scrolled .container.uo-header-inner,
.uo-header-compact .container.uo-header-inner,
.uo-search-active .uo-header .container.uo-header-inner,
.uo-drawer-active .uo-header .container.uo-header-inner {
    width: min(calc(100% - 56px), 1220px);
    max-width: 1220px;
    margin-top: 14px;
    min-height: 58px;
    padding: 8px 12px !important;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(8, 10, 14, 0.68);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(28px) saturate(165%);
    -webkit-backdrop-filter: blur(28px) saturate(165%);
    transform: translate3d(0, 0, 0) scale(0.992);
}

.uo-header-scrolled .container.uo-header-inner::before,
.uo-header-compact .container.uo-header-inner::before,
.uo-search-active .uo-header .container.uo-header-inner::before,
.uo-drawer-active .uo-header .container.uo-header-inner::before {
    opacity: 1;
}

.uo-header .uo-logo,
.uo-header .uo-search-trigger,
.uo-header .uo-nav-link,
.uo-header .uo-header-icon-btn,
.uo-header .uo-hamburger,
.uo-header .uo-mobile-search-btn {
    transition:
        color 260ms ease,
        background-color 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 260ms ease !important;
}

.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .uo-search-trigger,
.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .uo-header-icon-btn,
.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .uo-hamburger,
.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .uo-mobile-search-btn {
    background: rgba(8, 10, 14, 0.20) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.uo-header-scrolled .uo-search-trigger,
.uo-header-compact .uo-search-trigger {
    min-height: 42px !important;
}

.uo-header-scrolled .uo-logo svg,
.uo-header-compact .uo-logo svg {
    transform: scale(0.94);
}

@media (max-width: 1100px) {
    .uo-header {
        background: transparent !important;
    }

    .uo-header .container.uo-header-inner {
        width: min(calc(100% - 20px), 760px);
        margin-top: 8px;
        min-height: 54px;
        padding: 8px 10px !important;
        border-radius: 22px;
    }

    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: min(calc(100% - 22px), 720px);
        margin-top: 8px;
        min-height: 52px;
        border-radius: 999px;
        background: rgba(8, 10, 14, 0.74) !important;
    }
}

@media (max-width: 640px) {
    .uo-header .container.uo-header-inner {
        width: calc(100% - 16px);
        margin-top: 7px;
        padding-inline: 8px !important;
    }

    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: calc(100% - 16px);
        border-radius: 26px;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .uo-header,
    .uo-header .container.uo-header-inner,
    .uo-header .container.uo-header-inner::before {
        transition-duration: 1ms !important;
    }
}

/* 2026-05-22: header glass is constrained to the pill only. */
.uo-header {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.uo-header::before,
.uo-header::after {
    display: none !important;
}

.uo-header .container.uo-header-inner {
    width: min(calc(100% - 56px), 1220px);
    max-width: 1220px;
    transition:
        margin-top 680ms cubic-bezier(0.19, 1, 0.22, 1),
        min-height 620ms cubic-bezier(0.19, 1, 0.22, 1),
        padding 620ms cubic-bezier(0.19, 1, 0.22, 1),
        border-radius 760ms cubic-bezier(0.19, 1, 0.22, 1),
        background-color 620ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 620ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 720ms cubic-bezier(0.19, 1, 0.22, 1),
        backdrop-filter 760ms cubic-bezier(0.19, 1, 0.22, 1),
        -webkit-backdrop-filter 760ms cubic-bezier(0.19, 1, 0.22, 1),
        transform 760ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner {
    width: min(calc(100% - 56px), 1220px);
    max-width: 1220px;
    background: rgba(8, 10, 14, 0) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: blur(0) saturate(100%) !important;
    -webkit-backdrop-filter: blur(0) saturate(100%) !important;
}

.uo-header-scrolled .container.uo-header-inner,
.uo-header-compact .container.uo-header-inner,
.uo-search-active .uo-header .container.uo-header-inner,
.uo-drawer-active .uo-header .container.uo-header-inner {
    width: min(calc(100% - 56px), 1220px);
    max-width: 1220px;
    background: rgba(8, 10, 14, 0.72) !important;
    backdrop-filter: blur(30px) saturate(168%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(168%) !important;
}

@media (max-width: 1100px) {
    .uo-header .container.uo-header-inner,
    .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner,
    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: min(calc(100% - 22px), 720px);
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .uo-header .container.uo-header-inner,
    .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner,
    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: calc(100% - 16px);
        max-width: none;
    }
}

/* 2026-05-22: restore smooth shrink while keeping blur inside the pill. */
.uo-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: blur(0px) saturate(100%) !important;
    -webkit-backdrop-filter: blur(0px) saturate(100%) !important;
}

.uo-header .container.uo-header-inner {
    position: relative;
    overflow: visible !important;
    isolation: isolate;
    width: min(calc(100% - 32px), 1480px);
    max-width: 1480px;
    background: rgba(8, 10, 14, 0) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: blur(0) saturate(100%) !important;
    -webkit-backdrop-filter: blur(0) saturate(100%) !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    transition:
        width 920ms cubic-bezier(0.16, 1, 0.3, 1),
        max-width 920ms cubic-bezier(0.16, 1, 0.3, 1),
        margin-top 760ms cubic-bezier(0.16, 1, 0.3, 1),
        min-height 760ms cubic-bezier(0.16, 1, 0.3, 1),
        padding 760ms cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 940ms cubic-bezier(0.16, 1, 0.3, 1),
        background-color 720ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 720ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 840ms cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 840ms cubic-bezier(0.16, 1, 0.3, 1),
        -webkit-backdrop-filter 840ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 920ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.uo-header .uo-nav-dropdown,
.uo-header .uo-user-menu,
.uo-header .uo-header-search,
.uo-header .uo-header-right,
.uo-header .uo-header-actions {
    position: relative;
    z-index: 3;
}

.uo-header .uo-nav-dropdown-panel,
.uo-header .uo-user-dropdown,
.uo-header .uo-search-dropdown {
    z-index: 250;
}

.uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner {
    width: min(calc(100% - 32px), 1480px);
    max-width: 1480px;
    margin-top: 12px;
    min-height: 64px;
    border-radius: 28px;
    background: rgba(8, 10, 14, 0) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: blur(0) saturate(100%) !important;
    -webkit-backdrop-filter: blur(0) saturate(100%) !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.uo-header-scrolled .container.uo-header-inner,
.uo-header-compact .container.uo-header-inner,
.uo-search-active .uo-header .container.uo-header-inner,
.uo-drawer-active .uo-header .container.uo-header-inner {
    width: min(calc(100% - 64px), 1200px);
    max-width: 1200px;
    margin-top: 14px;
    min-height: 58px;
    border-radius: 999px;
    background: rgba(8, 10, 14, 0.76) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow:
        0 24px 76px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        inset 0 -1px 0 rgba(255, 255, 255, 0.045) !important;
    backdrop-filter: blur(34px) saturate(175%) !important;
    -webkit-backdrop-filter: blur(34px) saturate(175%) !important;
    transform: translate3d(0, 0, 0) scale(0.992) !important;
}

.uo-header-scrolled .container.uo-header-inner::before,
.uo-header-compact .container.uo-header-inner::before,
.uo-search-active .uo-header .container.uo-header-inner::before,
.uo-drawer-active .uo-header .container.uo-header-inner::before {
    opacity: 1 !important;
}

@media (max-width: 1100px) {
    .uo-header .container.uo-header-inner,
    .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner {
        width: min(calc(100% - 18px), 760px);
        max-width: 760px;
    }

    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: min(calc(100% - 28px), 704px);
        max-width: 704px;
        transform: translate3d(0, 0, 0) scale(0.996) !important;
    }
}

@media (max-width: 640px) {
    .uo-header .container.uo-header-inner,
    .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner {
        width: calc(100% - 14px);
        max-width: none;
    }

    .uo-header-scrolled .container.uo-header-inner,
    .uo-header-compact .container.uo-header-inner,
    .uo-search-active .uo-header .container.uo-header-inner,
    .uo-drawer-active .uo-header .container.uo-header-inner {
        width: calc(100% - 22px);
        max-width: none;
        transform: translate3d(0, 0, 0) scale(1) !important;
    }
}

/* Hero-under-header composition: backgrounds start behind the transparent header. */
body.page-home,
body.page-offers,
body.page-blog,
body.page-how,
body.page-provider {
    padding-top: 0 !important;
}

body.page-home .home-hero-new {
    padding-top: calc(var(--uo-header-offset, 71px) + clamp(48px, 6vw, 92px)) !important;
}

body.page-offers .ajanlatok-hero,
body.page-blog .blog-hero,
body.page-blog .blog-all-hero,
body.page-blog .blog-detail-hero,
body.page-how .how-hero {
    margin-top: 0 !important;
    padding-top: calc(var(--uo-header-offset, 71px) + clamp(36px, 5vw, 72px)) !important;
}

body.page-provider .biz-hero,
body.page-provider .provider-hero,
body.page-provider .sz-hero {
    margin-top: 0 !important;
    padding-top: calc(var(--uo-header-offset, 71px) + clamp(36px, 5vw, 72px)) !important;
}

/* 2026-05-22: light offer pages need contrast before the scroll blur state starts. */
body.page-offers .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner {
    background: rgba(8, 10, 14, 0.74) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    box-shadow:
        0 22px 64px rgba(12, 15, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        inset 0 -1px 0 rgba(255, 255, 255, 0.045) !important;
    backdrop-filter: blur(28px) saturate(168%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(168%) !important;
}

body.page-offers .uo-header:not(.uo-header-scrolled):not(.uo-header-compact) .container.uo-header-inner::before {
    opacity: 1 !important;
}

@media (max-width: 640px) {
    body.page-home .home-hero-new {
        padding-top: calc(var(--uo-header-offset, 60px) + 34px) !important;
    }

    body.page-offers .ajanlatok-hero,
    body.page-blog .blog-hero,
    body.page-blog .blog-all-hero,
    body.page-blog .blog-detail-hero,
    body.page-how .how-hero,
    body.page-provider .biz-hero,
    body.page-provider .provider-hero,
    body.page-provider .sz-hero {
        padding-top: calc(var(--uo-header-offset, 60px) + 28px) !important;
    }
}

.page-provider .uo-header {
    --accent: #10b981;
    --accent-2: #2bd4a4;
}

.page-provider .uo-header .uo-logo-w2,
.page-provider .uo-header .uo-search-trigger svg,
.page-provider .uo-header .uo-nav-link-active,
.page-provider .uo-header .uo-nav-dropdown-caret {
    color: #10b981 !important;
}

.page-provider .uo-header .uo-logo svg [fill="#ff6a00"],
.page-provider .uo-drawer .uo-logo svg [fill="#ff6a00"] {
    fill: #10b981 !important;
}

.page-provider .uo-header .uo-logo svg [stroke="#ff6a00"],
.page-provider .uo-drawer .uo-logo svg [stroke="#ff6a00"] {
    stroke: #10b981 !important;
}

.page-provider .uo-header .uo-nav-link-active::after,
.page-provider .uo-header .uo-nav-dropdown-panel::before,
.page-provider .uo-search-submit,
.page-provider .uo-header .uo-user-avatar {
    background: linear-gradient(135deg, #10b981 0%, #2bd4a4 100%) !important;
}

.page-provider .uo-header-actions > [data-auth-open].uo-header-icon-btn,
.page-provider .uo-user-trigger {
    border-color: rgba(16, 185, 129, 0.38) !important;
    box-shadow:
        0 12px 32px rgba(16, 185, 129, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    background:
        linear-gradient(180deg, rgba(16, 185, 129, 0.22), rgba(16, 185, 129, 0.08)),
        rgba(255, 255, 255, 0.06) !important;
}

.page-provider .uo-header-actions > [data-auth-open].uo-header-icon-btn:hover,
.page-provider .uo-user-trigger:hover,
.page-provider .uo-header-search.uo-search-open .uo-search-trigger {
    background: #10b981 !important;
    border-color: rgba(16, 185, 129, 0.7) !important;
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.26) !important;
}

@media (max-width: 1100px) {
    .page-provider .uo-header-search.uo-search-open .uo-search-trigger,
    .page-provider .uo-hamburger:hover,
    .page-provider .uo-hamburger:active,
    .page-provider .uo-hamburger-active {
        background: rgba(16, 185, 129, 0.09) !important;
        border-color: rgba(16, 185, 129, 0.28) !important;
    }

    .page-provider .uo-header-search.uo-search-open .uo-search-trigger svg,
    .page-provider .uo-hamburger-active span {
        color: #10b981 !important;
        background: #10b981 !important;
    }
}

/* Hogyan mukodik premium image + motion pass */
.page-how .how-hero {
    isolation: isolate;
}

.page-how .how-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 106, 0, 0.18), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(255, 138, 61, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
    pointer-events: none;
    z-index: 0;
}

.page-how .how-hero .container,
.page-how .how-section .container {
    position: relative;
    z-index: 1;
}

.page-how .how-hero-phone {
    width: min(44%, 236px);
    padding: 8px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
        #10131a;
    overflow: visible;
}

.page-how .how-hero-phone::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.24), rgba(255, 255, 255, 0.05), rgba(255, 106, 0, 0.08));
    z-index: -1;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.52),
        0 0 64px rgba(255, 106, 0, 0.18);
}

.page-how .how-hero-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 26px;
    background: #080a0f;
}

.page-how .how-s2-visual {
    aspect-ratio: 4 / 3;
    max-width: 560px;
    padding: 12px;
    border-radius: 26px;
    overflow: visible;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #2a1f15 0%, #15100a 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.page-how .how-s2-image {
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.18), transparent 42%),
        #0b0d12;
}

.page-how .how-s2-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0d12;
}

.page-how .how-s3-step-card img {
    position: relative;
    z-index: 2;
    display: block;
}

.page-how .how-s3-step-card-fallback {
    z-index: 1;
}

.page-how .how-s3-step-card img[style*="display: none"] + .how-s3-step-card-fallback {
    z-index: 3;
}

.page-how .how-s3-card-3 {
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 106, 0, 0.32), transparent 32%),
        linear-gradient(135deg, #22170f 0%, #0c0e13 100%);
}

.page-how .how-s3-step-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-how .how-s4-grid {
    gap: 20px;
}

.page-how .how-s4-card {
    border-radius: 20px;
    padding: 6px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
        #fff;
    border-color: rgba(20, 23, 31, 0.07);
    box-shadow: 0 18px 48px rgba(20, 23, 31, 0.07);
}

.page-how .how-s4-card-img {
    border-radius: 15px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.page-how .how-s4-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.36)),
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 28%);
    pointer-events: none;
}

.page-how .how-s4-card-img img {
    display: block;
    min-height: 100%;
}

.page-how .how-s4-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(255, 106, 0, 0.18);
    box-shadow:
        0 24px 64px rgba(20, 23, 31, 0.12),
        0 14px 34px rgba(255, 106, 0, 0.08);
}

.page-how .how-hero-btn,
.page-how .how-pill-btn,
.page-how .how-s8-cta-btn {
    transition:
        transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 260ms ease;
}

.page-how .how-hero-btn:active,
.page-how .how-pill-btn:active,
.page-how .how-s8-cta-btn:active,
.page-how .how-s4-card:active {
    transform: scale(0.985);
}

.page-how [data-reveal] {
    transition:
        opacity 900ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 900ms cubic-bezier(0.23, 1, 0.32, 1);
}

.page-how [data-stagger] > * {
    transition:
        opacity 760ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 760ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 768px) {
    .page-how .how-hero-phone {
        width: min(44%, 168px);
        padding: 6px;
        border-radius: 26px;
    }

    .page-how .how-hero-phone::before {
        inset: -6px;
        border-radius: 32px;
    }

    .page-how .how-s2-visual {
        width: min(100%, 360px);
        aspect-ratio: 4 / 3;
        padding: 9px;
    }

    .page-how .how-s4-grid {
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-dark[data-footer-reveal],
    .footer-dark[data-footer-reveal] .footer-dark-brand,
    .footer-dark[data-footer-reveal] .footer-dark-col,
    .footer-dark[data-footer-reveal] .footer-dark-trust-item,
    .footer-dark[data-footer-reveal] .footer-dark-bottom {
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 1ms !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-how .how-hero-orbit-svg,
    .page-how .how-hero-phone,
    .page-how .how-hero-dot,
    .page-how [data-reveal],
    .page-how [data-stagger] > * {
        animation: none !important;
        transition-duration: 1ms !important;
    }

    .footer-dark[data-footer-reveal],
    .footer-dark[data-footer-reveal] .footer-dark-brand,
    .footer-dark[data-footer-reveal] .footer-dark-col,
    .footer-dark[data-footer-reveal] .footer-dark-trust-item,
    .footer-dark[data-footer-reveal] .footer-dark-bottom {
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 1ms !important;
    }
}

/* Hogyan page visual correction: assets are already composed mockups. */
.page-how .how-hero-phone {
    width: min(50%, 292px);
    aspect-ratio: 1023 / 1537;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.page-how .how-hero-phone::before {
    inset: 8% -10% 5%;
    border-radius: 42%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.26), transparent 58%);
    box-shadow: none;
    filter: blur(22px);
}

.page-how .how-hero-phone img {
    width: 100%;
    height: auto;
    aspect-ratio: 1023 / 1537;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.46),
        0 0 64px rgba(255, 106, 0, 0.13);
}

.page-how .how-hero-phone-mock {
    display: none;
}

.page-how .how-s2-visual {
    aspect-ratio: 1535 / 1024;
    max-width: 620px;
    padding: 8px;
    border-radius: 24px;
}

.page-how .how-s2-image {
    border-radius: 17px;
}

.page-how .how-s2-image img {
    object-fit: contain;
    aspect-ratio: 1535 / 1024;
}

@media (max-width: 1100px) {
    .page-how .how-hero-phone {
        width: min(48%, 230px);
    }
}

@media (max-width: 768px) {
    .page-how .how-hero-phone {
        width: min(46%, 168px);
        padding: 0;
        border-radius: 0;
    }

    .page-how .how-hero-phone::before {
        inset: 6% -8% 6%;
    }

    .page-how .how-s2-visual {
        width: min(100%, 380px);
        aspect-ratio: 1535 / 1024;
    }
}

/* Hogyan page final visual polish: remove boxed assets and restore image geometry. */
.page-how .how-hero-visual {
    max-width: 570px;
}

.page-how .how-hero-phone {
    width: min(56%, 330px);
    filter: drop-shadow(0 38px 84px rgba(0, 0, 0, 0.58));
}

.page-how .how-hero-phone::before {
    inset: 13% -18% 10%;
    background:
        radial-gradient(ellipse at 50% 48%, rgba(255, 106, 0, 0.34) 0%, rgba(255, 106, 0, 0.18) 38%, transparent 70%);
    filter: blur(28px);
    opacity: 0.9;
}

.page-how .how-hero-phone img {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    box-shadow: none;
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse at 52% 51%, #000 0%, #000 57%, rgba(0, 0, 0, 0.84) 67%, transparent 82%);
    mask-image: radial-gradient(ellipse at 52% 51%, #000 0%, #000 57%, rgba(0, 0, 0, 0.84) 67%, transparent 82%);
    transform: translateZ(0);
}

.page-how .how-s2-visual {
    width: 100%;
    max-width: 620px;
    justify-self: end;
    aspect-ratio: 1535 / 1024;
    min-height: 0;
    padding: 8px;
    border-radius: 24px;
}

.page-how .how-s2-image {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.page-how .how-s2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
}

.page-how .how-s3-step-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        #11141a;
}

.page-how .how-s3-step-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .page-how .how-hero-phone {
        width: min(54%, 270px);
    }

    .page-how .how-s2-visual {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .page-how .how-hero-visual {
        max-width: min(100%, 420px);
    }

    .page-how .how-hero-phone {
        width: min(54%, 210px);
    }

    .page-how .how-s2-visual {
        width: min(100%, 420px);
        max-width: none;
    }
}


/* ═════════════════════════════════════════════════════════════════════════
   FOOTER SCROLL FIX — Mac trackpad smoothness
   A will-change állandó GPU layer-promotion miatt smooth scrolling lag-elt.
   Megoldás: csak fade-in, NINCS transform mozgás → nincs GPU stress.
   ═════════════════════════════════════════════════════════════════════════ */
.footer-dark[data-footer-reveal] {
    opacity: 0;
    transform: none;  /* override a 44px translate3d-t */
    transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1);
    will-change: auto;  /* override will-change-t — nincs GPU layer promotion */
}
.footer-dark[data-footer-reveal].is-footer-revealed {
    opacity: 1;
    transform: none;
}
.footer-dark[data-footer-reveal] .footer-dark-brand,
.footer-dark[data-footer-reveal] .footer-dark-col,
.footer-dark[data-footer-reveal] .footer-dark-trust-item,
.footer-dark[data-footer-reveal] .footer-dark-bottom {
    opacity: 0;
    transform: none;  /* override a 18px translate3d-t */
    transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1);
}
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-brand,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-col,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-trust-item,
.footer-dark[data-footer-reveal].is-footer-revealed .footer-dark-bottom {
    opacity: 1;
    transform: none;
}


/* ═════════════════════════════════════════════════════════════════════════
   AJÁNLATOK · v2 — drawer alapú szűrő (asztal + mobil egyforma) + térkép
   + 4 oszlopos grid asztalin
   ═════════════════════════════════════════════════════════════════════════ */

/* Layout — sidebar már nincs (drawer-ből nyílik), így a content full-width */
.ajanlatok-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

/* Asztalin a sidebar drawer-ré válik (alapból elrejtve, balról csúszik be) */
.ajanlatok-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 380px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ajanlatok-sidebar.open {
    transform: translateX(0);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}
.ajanlatok-sidebar .filter-drawer-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #e8eaee;
    background: #ffffff;
    flex-shrink: 0;
}
.ajanlatok-sidebar .filter-drawer-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #14171f;
    letter-spacing: -0.01em;
}
.ajanlatok-sidebar .filter-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e8eaee;
    background: #f5f6f8;
    color: #14171f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease;
}
.ajanlatok-sidebar .filter-drawer-close:hover { background: #e8eaee; }
.ajanlatok-sidebar .ajanlatok-filters {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 22px 32px;
    border: none;
    border-radius: 0;
    background: transparent;
}

/* Backdrop */
.filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 24, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 260ms ease, visibility 260ms ease;
}
.filter-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock (asztali + mobil egyforma) */
body.filter-drawer-open {
    overflow: hidden !important;
    /* iOS-fix: a fixed body trick + position:fixed JS-ből */
}

/* Asztali: a szűrő gomb mindig látható, sidebar megjelenít CSS rejtett */
.ajanlatok-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    color: #14171f;
    border: 1px solid #e8eaee;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 200ms ease, background 200ms ease;
}
.ajanlatok-filter-toggle:hover {
    border-color: #c8ccd2;
    background: #f5f6f8;
}
.ajanlatok-filter-toggle svg {
    width: 16px;
    height: 16px;
    color: #ff6a00;
}

/* Aktív szűrők chip-rendszer maradhat */

/* Ajánlat grid — asztalin 4 oszlop */
.ajanlatok-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
@media (max-width: 1280px) {
    .ajanlatok-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 960px) {
    .ajanlatok-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 560px) {
    .ajanlatok-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hover lift kivéve az ajánlat kártyákról is (consistency a blog-gal) */
.aj-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(20, 23, 31, 0.08) !important;
    border-color: #d8dce2;
}

/* Térkép nézet konténer */
.ajanlatok-map-wrap {
    width: 100%;
    height: 70vh;
    min-height: 480px;
    max-height: 800px;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f6f8;
    border: 1px solid #e8eaee;
}
#offers-map {
    width: 100%;
    height: 100%;
}

/* Térkép alatti kis sub-text */
.ajanlatok-map-helper {
    margin-top: 14px;
    text-align: center;
    color: #6a7180;
    font-size: 13px;
}

/* View toggle gombok — már léteznek, csak finomítás a térkép aktívra */
.view-toggle-btn[data-view="map"] svg { color: #ff6a00; }

/* Mobil belső scroll lock különös eset — a drawer önállóan scrollozik */
.ajanlatok-sidebar .ajanlatok-filters {
    overscroll-behavior: contain;
    touch-action: pan-y;
}


/* ═════════════════════════════════════════════════════════════════════════
   MOBIL DRAWER FIX — régi @media (max-width: 1024px) szabály override
   A régi mobil CSS `left: -340px` + `left: 0` rendszert használt,
   ami felülírta az új transform-alapú rendszerünket. Itt visszatérítjük.
   Pont ugyanazon a break-pointon vagyunk mint a régi szabály, hogy
   100%-osan felülírjuk (későbbi forrás-pozíció = nyer).
   ═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ajanlatok-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;      /* override a régi -340px-t */
        width: min(380px, 92vw) !important;
        max-width: 92vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        z-index: 1000 !important;
        background: #ffffff !important;
        transform: translateX(-100%) !important;   /* fontos: NEM left-tel mozgunk */
        transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow: hidden !important;               /* a content scrollozik, nem a panel */
        padding: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: none !important;
    }
    .ajanlatok-sidebar.open {
        left: 0 !important;
        transform: translateX(0) !important;       /* override a régi left:0-t */
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.18) !important;
    }
    /* A drawer head sticky a tetején — a régi szabályban nem volt flex-shrink */
    .ajanlatok-sidebar .filter-drawer-head {
        display: flex !important;
        flex-shrink: 0 !important;
    }
    /* A filter form belül scrollozik, nem maga a panel */
    .ajanlatok-sidebar .ajanlatok-filters {
        flex: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
        padding: 16px 20px 32px !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
}


/* ═════════════════════════════════════════════════════════════════════════
    AJÁNLAT.PHP · Sticky bal sidebar + mobile bottom sheet (v2)
   ═════════════════════════════════════════════════════════════════════════ */

/* A grid most: bal = booking sidebar (sticky), jobb = content (asztalon) */
@media (min-width: 1025px) {
    .aj-detail-grid {
        display: grid !important;
        grid-template-columns: 380px 1fr !important;
        gap: 32px !important;
        align-items: start !important;
    }
    .aj-detail-booking {
        grid-column: 1 !important;
        grid-row: 1 !important;
        position: sticky !important;
        top: 96px !important;
        align-self: start !important;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 4px;
    }
    .aj-detail-content {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0;
    }
    /* Scrollbar finomítás a sidebar-on (csak ha touch-device-nem) */
    .aj-detail-booking::-webkit-scrollbar { width: 8px; }
    .aj-detail-booking::-webkit-scrollbar-track { background: transparent; }
    .aj-detail-booking::-webkit-scrollbar-thumb { background: #d8dce2; border-radius: 4px; }
    .aj-detail-booking::-webkit-scrollbar-thumb:hover { background: #b8bcc2; }
}

/* Day tabs counter + small text */
.aj-booking-section-counter {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6a7180;
}
.aj-booking-day-tab {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e8eaee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 200ms ease;
    min-width: 70px;
}
.aj-booking-day-tab:hover { border-color: #c8ccd2; }
.aj-booking-day-tab b {
    font-size: 13px;
    font-weight: 700;
    color: #14171f;
    text-transform: capitalize;
}
.aj-booking-day-tab span {
    font-size: 12px;
    color: #6a7180;
}
.aj-booking-day-tab small {
    font-size: 10px;
    color: #9aa3b1;
    margin-top: 2px;
}
.aj-booking-day-tab-active {
    background: #14171f;
    border-color: #14171f;
}
.aj-booking-day-tab-active b,
.aj-booking-day-tab-active span,
.aj-booking-day-tab-active small {
    color: #fff;
}
.aj-booking-day-tabs {
    display: flex;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px;
}
.aj-booking-day-tabs::-webkit-scrollbar { display: none; }

/* Slot grid — naponta váltakozó */
.aj-booking-times {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0;
}
.aj-booking-times-active {
    display: grid;
}
.aj-booking-time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 8px;
    background: #fff;
    border: 1.5px solid #e8eaee;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #14171f;
    cursor: pointer;
    transition: all 180ms ease;
}
.aj-booking-time-slot:hover {
    border-color: #ff6a00;
    background: #fff8f2;
}
.aj-booking-time-slot-active {
    background: #ff6a00;
    border-color: #ff6a00;
    color: #fff;
}
.aj-booking-time-slot-special {
    border-color: #ff6a00;
    background: #fff8f2;
}
.aj-booking-time-slot-special small {
    font-size: 10px;
    color: #ff6a00;
    font-weight: 700;
    margin-top: 2px;
}
.aj-booking-time-slot-active small { color: #fff; }

/* Empty state */
.aj-booking-no-slots {
    text-align: center;
    padding: 28px 16px;
    color: #6a7180;
}
.aj-booking-no-slots svg { color: #c8ccd2; margin-bottom: 10px; }
.aj-booking-no-slots p { margin: 6px 0; font-size: 14px; }
.aj-booking-no-slots .muted { color: #9aa3b1; font-size: 13px; }

/* Google Places kártya a foglalás alatt */
.aj-booking-place-card {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #e8eaee;
    border-radius: 16px;
    padding: 22px;
}
.aj-place-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.aj-place-stars {
    display: inline-flex;
    gap: 1px;
}
.aj-place-star.star-full { color: #fbbf24; }
.aj-place-star.star-half { color: #fbbf24; opacity: 0.5; }
.aj-place-star.star-empty { color: #e8eaee; }
.aj-place-rating span { font-size: 13px; color: #14171f; }
.aj-place-address,
.aj-place-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
    color: #14171f;
    line-height: 1.4;
}
.aj-place-address svg,
.aj-place-row svg {
    flex-shrink: 0;
    color: #ff6a00;
    margin-top: 2px;
}
.aj-place-row a {
    color: #14171f;
    text-decoration: none;
    border-bottom: 1px dotted #c8ccd2;
}
.aj-place-row a:hover { color: #ff6a00; border-color: #ff6a00; }
.aj-place-hours {
    margin: 12px 0;
}
.aj-place-hours summary {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    color: #14171f;
    padding: 8px 0;
}
.aj-place-hours summary::-webkit-details-marker { display: none; }
.aj-place-hours summary svg:first-child { color: #ff6a00; }
.aj-place-hours-chevron {
    margin-left: auto;
    transition: transform 200ms ease;
}
.aj-place-hours[open] .aj-place-hours-chevron {
    transform: rotate(180deg);
}
.aj-place-hours-list {
    list-style: none;
    padding: 8px 0 0 26px;
    margin: 0;
    font-size: 13px;
    color: #6a7180;
}
.aj-place-hours-list li {
    padding: 4px 0;
}
.aj-place-gmaps-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #f5f6f8;
    color: #14171f;
    border: 1px solid #e8eaee;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 200ms ease;
}
.aj-place-gmaps-btn:hover {
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
}
.aj-place-gmaps-btn svg { color: inherit; }


/* ═════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM SHEET (ajanlat.php)
   ═════════════════════════════════════════════════════════════════════════ */
.aj-mobile-sheet { display: none; }
.aj-mobile-sheet-backdrop { display: none; }

@media (max-width: 1024px) {
    /* A desktop sidebar elrejtett mobilon */
    .aj-detail-booking {
        display: none !important;
    }
    .aj-detail-grid {
        display: block !important;
    }

    /* Bottom sheet — collapsed (kis sáv lent) */
    .aj-mobile-sheet {
        display: block !important;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 998;
        background: #fff;
        border-top: 1px solid #e8eaee;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
        max-height: 80px;
        transition: max-height 360ms cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
    }
    .aj-mobile-sheet.open {
        max-height: 95vh;
        max-height: 95dvh;
        border-radius: 20px 20px 0 0;
    }
    .aj-mobile-sheet-collapsed {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 18px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    .aj-mobile-sheet.open .aj-mobile-sheet-collapsed {
        display: none;
    }
    .aj-mobile-sheet-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }
    .aj-mobile-sheet-price-old {
        font-size: 13px;
        color: #9aa3b1;
        text-decoration: line-through;
    }
    .aj-mobile-sheet-price-now {
        font-size: 19px;
        font-weight: 700;
        color: #14171f;
    }
    .aj-mobile-sheet-badge {
        background: #ff6a00;
        color: #fff;
        padding: 3px 8px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
    }
    .aj-mobile-sheet-expand {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 12px 18px;
        background: #ff6a00;
        color: #fff;
        border: 0;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    /* Expanded sheet */
    .aj-mobile-sheet-expanded {
        display: none;
        flex-direction: column;
        height: 95vh;
        height: 95dvh;
    }
    .aj-mobile-sheet.open .aj-mobile-sheet-expanded {
        display: flex;
    }
    .aj-mobile-sheet-header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 2;
        padding: 12px 16px 8px;
        border-bottom: 1px solid #e8eaee;
        display: grid;
        grid-template-columns: 1fr 36px;
        grid-template-rows: 8px auto;
        align-items: center;
        gap: 4px;
    }
    .aj-mobile-sheet-handle {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 40px;
        height: 4px;
        background: #e8eaee;
        border-radius: 2px;
        margin: 0 auto;
    }
    .aj-mobile-sheet-header h3 {
        grid-column: 1;
        grid-row: 2;
        margin: 0;
        font-size: 17px;
        font-weight: 700;
        color: #14171f;
    }
    .aj-mobile-sheet-close {
        grid-column: 2;
        grid-row: 2;
        width: 36px;
        height: 36px;
        background: #f5f6f8;
        border: 0;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #14171f;
    }
    .aj-mobile-sheet-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 16px;
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
    .aj-mobile-sheet-body .aj-booking-card {
        margin: 0;
        border: 0;
        padding: 0;
        background: transparent;
    }
    .aj-mobile-sheet-body .aj-booking-place-card {
        margin-top: 20px;
    }

    /* Backdrop */
    .aj-mobile-sheet-backdrop {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(15, 18, 24, 0.45);
        z-index: 997;
        opacity: 0;
        visibility: hidden;
        transition: opacity 260ms ease, visibility 260ms ease;
    }
    .aj-mobile-sheet-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    /* Tartalom alatt extra padding hogy a sheet ne takarjon */
    .aj-detail-body { padding-bottom: 100px !important; }
}
/* Account drawer extension: premium mobile account sub-menu */
.uo-drawer-user-status-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-left: 6px;
    border-radius: 50%;
    background: #35d06f;
    box-shadow: 0 0 0 4px rgba(53, 208, 111, 0.1);
}

button.uo-drawer-nav-item {
    width: 100%;
    border: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.uo-drawer-account-panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(9, 12, 13, 0.98), rgba(7, 10, 11, 0.98));
    transform: translateX(108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 360ms cubic-bezier(0.32, 0.72, 0, 1), opacity 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-user,
.uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-auth,
.uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-nav,
.uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-referral,
.uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-bottom {
    transform: translateX(-24px);
    opacity: 0;
    pointer-events: none;
}

.uo-drawer-account-open .uo-drawer-account-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.uo-drawer-account-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 106, 0, 0.24);
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 106, 0, 0.24), transparent 12rem),
        linear-gradient(145deg, rgba(35, 23, 12, 0.92), rgba(14, 16, 16, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 55px rgba(0, 0, 0, 0.28);
}

.uo-drawer-account-tier {
    width: fit-content;
    padding: 6px 9px;
    border-radius: 9px;
    color: #ffb15f;
    background: rgba(255, 106, 0, 0.12);
    font-size: 12px;
    font-weight: 850;
}

.uo-drawer-account-card b {
    font-size: 28px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.uo-drawer-account-card em {
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
    .uo-drawer-account-panel,
    .uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-user,
    .uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-auth,
    .uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-nav,
    .uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-referral,
    .uo-drawer-account-open .uo-drawer-scroll > .uo-drawer-bottom {
        transition-duration: 0.01ms !important;
    }
}

/* Final interaction tuning: remove hover lift while preserving color, depth and image feedback. */
.btn-primary:hover,
.btn-ghost:hover,
.offer-card:hover,
.cat-card:hover,
.trust-card:hover,
.step-card:hover,
.chip:hover,
.light-section-link:hover,
.light-cat-card:hover,
.light-offer-card:hover,
.review-card:hover,
.biz-cta-btn-primary:hover,
.biz-cta-btn-ghost:hover,
.footer-cta-btn-primary:hover,
.footer-cta-btn-ghost:hover,
.footer-dark-social-link:hover,
.ajanlatok-hero-btn-primary:hover,
.ajanlatok-hero-btn-ghost:hover,
.filter-apply-btn:hover,
.ajanlatok-chip:hover,
.aj-card:hover,
.load-more-btn:hover:not(:disabled),
.newsletter-btn:hover,
.filter-mobile-toggle:hover,
.aj-detail-thumb:hover,
.aj-review-write-btn:hover,
.aj-reviews-all-btn:hover,
.aj-booking-cta:hover,
.aj-mobile-booking-cta:hover,
.aj-sticky-mobile-cta-btn:hover,
.how-pill-btn:hover,
.how-hero-feature:hover,
.how-hero-btn-primary:hover,
.how-hero-btn-ghost:hover,
.how-s4-card:hover,
.how-s6-card:hover,
.how-s5-card:hover,
.how-s8-card:hover,
.auth-btn:hover,
.auth-social-btn:hover,
.auth-social-btn-light:hover,
.am-btn:hover,
.am-social-btn:hover,
.uo-search-submit:hover,
.uo-search-trigger:hover,
.uo-header-icon-btn:hover,
.uo-header-actions > [data-auth-open].uo-header-icon-btn:hover,
.uo-user-trigger:hover,
.uo-nav-link:hover,
.uo-hamburger:hover,
.uo-drawer-auth-btn-primary:hover,
.uo-mobile-search-btn:hover {
    transform: none !important;
}

.reviews-arrow:hover,
.light-offers-arrow:hover,
.home-popular-arrow:hover {
    transform: translateY(-50%) !important;
}

body.uo-offers-map-view .uo-map-topbar {
    display: none !important;
}

body.uo-offers-map-view .uo-discovery-shell .ajanlatok-map-wrap {
    height: min(82dvh, 880px);
}

/* Stable map markers: hover should highlight, never jump or disappear. */
.uo-map-marker {
    z-index: 2;
    backface-visibility: hidden;
    overflow: visible;
    transform-origin: center bottom;
}

.uo-map-marker span {
    position: relative;
    z-index: 1;
    transform: none !important;
}

.uo-map-marker::after {
    z-index: 0;
}

.uo-map-marker:hover,
.uo-map-marker.is-active {
    filter: saturate(1.08);
    box-shadow:
        0 18px 46px rgba(255, 106, 0, 0.46),
        0 0 0 10px rgba(255, 106, 0, 0.16);
}

.uo-map-card-overlay {
    z-index: 5;
}

.uo-map-marker.is-cluster {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.94);
    box-shadow:
        0 16px 40px rgba(255, 106, 0, 0.36),
        0 0 0 9px rgba(255, 106, 0, 0.13);
}
