﻿
        :root {
            /* Soft slate surfaces with a balanced coastal blue accent. */
            --bg: #edf3f8;
            --surface: #ffffff;
            --text: #19324a;
            --muted: #67788c;
            --border: rgba(25, 50, 74, 0.10);
            --shadow: 0 18px 42px rgba(21, 39, 60, 0.10);
            --shadow-soft: 0 12px 26px rgba(21, 39, 60, 0.08);
            --hero-top: #5e8fb8f2;
            --hero-bottom: #16324be8;
            --brand: #4d7ea8;
            --brand-2: #16324b;
            --brand-rgb: 77, 126, 168;
            --radius: 22px;
            --radius-sm: 18px;
            --ring: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
            --safe-top: env(safe-area-inset-top, 0px);
        }

        * {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        *::selection {
            background: transparent;
            color: inherit;
        }

        *::-moz-selection {
            background: transparent;
            color: inherit;
        }

        *:focus,
        *:focus-visible {
            outline: none !important;
            box-shadow: none !important;
        }

        html,
        body {
            height: 100%;
        }

        body {
            margin: 0;
            font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            background: var(--bg);
            color: var(--text);
            position: relative;
            isolation: isolate;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(140% 62% at 0% 0%, rgba(93, 143, 184, 0.18) 0%, rgba(93, 143, 184, 0.10) 24%, transparent 58%),
                radial-gradient(128% 56% at 100% 8%, rgba(194, 214, 230, 0.26) 0%, rgba(194, 214, 230, 0.14) 28%, transparent 60%),
                radial-gradient(120% 34% at 50% 22%, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.12) 30%, transparent 72%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(25, 50, 74, 0.02) 36%, rgba(255, 255, 255, 0.16) 68%, rgba(25, 50, 74, 0.03) 100%);
            background-repeat: no-repeat;
            background-size: 140% 62%, 128% 56%, 120% 34%, 100% 100%;
            background-position: top left, top right, center top, center top;
            transform: translateZ(0);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 18px 16px 40px;
        }

        /* Mobile header (page specific) */
        .mobile-header {
            display: none;
            margin-top: 0;
        }

        @media (max-width: 820px) {
            body.has-mobile-header .topbar {
                display: none;
            }

            body.has-mobile-header .mobile-header {
                display: block;
            }

            body.has-mobile-header .container {
                padding-top: 12px;
            }
        }

        /* Topbar */
        .topbar {
            position: sticky;
            top: 0;
            z-index: 50;
            margin-top: 0;
            padding-top: var(--safe-top);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(237, 243, 248, 0.88);
            border-bottom: 1px solid rgba(25, 50, 74, 0.08);
        }

        .topbar__inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 10px 16px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 12px;
            align-items: center;
        }

        /* Neutralize legacy fixed menu rules inside the modern header shell. */
        .topbar>#menu {
            position: static;
            top: auto;
            left: auto;
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            display: block;
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            z-index: auto;
        }

        .brand-shell {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .brand {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.74);
            border: 1px solid rgba(25, 50, 74, 0.08);
            box-shadow: 0 6px 16px rgba(2, 6, 23, 0.05);
        }

        .brand__img {
            display: block;
            height: 36px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }

        .brand-country,
        .brand-language {
            min-width: 48px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 0 10px;
            border-radius: 14px;
            border: 1px solid rgba(25, 50, 74, 0.08);
            background: rgba(255, 255, 255, 0.82);
            color: rgba(25, 50, 74, 0.82);
            box-shadow: 0 6px 16px rgba(2, 6, 23, 0.05);
            cursor: pointer;
            text-decoration: none;
            transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
        }

        .brand-country:hover,
        .brand-language:hover {
            transform: translateY(-1px);
            border-color: rgba(var(--brand-rgb), 0.24);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 12px 26px rgba(15, 35, 55, 0.10);
        }

        .brand-country__flag {
            width: 32px;
            height: 24px;
            flex: 0 0 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 6px;
            background: rgba(15, 23, 42, 0.06);
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
        }

        .brand-country__flag img,
        .country-modal__flag img,
        .mobile-side-menu__country-flag img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-language {
            min-width: 44px;
            padding-inline: 13px;
            font-size: 12px;
            font-weight: 1000;
            letter-spacing: 0;
        }

        .brand-country {
            min-width: 48px;
            padding-inline: 8px;
        }

        /* Search */
        .search {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.82);
            border: 0;
            border-radius: 999px;
            padding: 10px 12px;
            box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
            transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
        }

        .search:focus-within {
            border-color: transparent;
            box-shadow: var(--ring), 0 16px 34px rgba(2, 6, 23, 0.08);
            transform: translateY(-1px);
        }

        .search__icon {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            opacity: 0.7;
        }

        .search input,
        .search input[type="search"],
        #globalSearch {
            width: 100%;
            border: 0 !important;
            outline: 0 !important;
            background: transparent;
            font-size: 14px;
            color: var(--text);
            box-shadow: none !important;
            background-color: transparent !important;
            -webkit-appearance: none;
            appearance: none;
            border-radius: 0;
        }

        .search input:focus,
        .search input:focus-visible,
        .search input[type="search"]:focus,
        .search input[type="search"]:focus-visible,
        #globalSearch:focus,
        #globalSearch:focus-visible {
            border: 0 !important;
            outline: none !important;
            box-shadow: none !important;
            background-color: transparent !important;
        }

        .search input::placeholder {
            color: rgba(100, 116, 139, 0.9);
        }

        .search__clear {
            border: 0;
            background: rgba(15, 23, 42, 0.06);
            color: rgba(15, 23, 42, 0.65);
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: none;
            cursor: pointer;
            transition: transform .12s ease, background .12s ease;
        }

        .search__clear svg {
            width: 16px;
            height: 16px;
            display: block;
            stroke: currentColor;
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .search__clear:hover {
            transform: scale(1.03);
            background: rgba(15, 23, 42, 0.09);
        }

        .search__clear.is-on {
            display: inline-grid;
            place-items: center;
        }

        .search__suggest {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 10px);
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(15, 23, 42, 0.10);
            border-radius: 16px;
            box-shadow: 0 16px 34px rgba(2, 6, 23, 0.10);
            overflow: hidden;
            display: none;
        }

        .search__suggest.is-on {
            display: block;
        }

        .search__suggest a {
            display: block;
            padding: 10px 12px;
            font-size: 13px;
            font-weight: 800;
            color: rgba(15, 23, 42, 0.92);
            border-top: 1px solid rgba(15, 23, 42, 0.06);
        }

        .search__suggest a:first-child {
            border-top: 0;
        }

        .search__suggest a:hover {
            background: rgba(var(--brand-rgb), 0.08);
        }

        /* Actions */
        .actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .country-modal {
            position: fixed;
            inset: 0;
            z-index: 220;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 18px;
        }

        .country-modal.is-on {
            display: flex;
        }

        .country-modal__backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            background: rgba(15, 23, 42, 0.42);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            cursor: pointer;
        }

        .country-modal__panel {
            position: relative;
            width: min(560px, 100%);
            max-height: min(720px, calc(100vh - 36px));
            overflow: auto;
            padding: 18px;
            border-radius: 22px;
            border: 1px solid rgba(20, 44, 66, 0.10);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 253, 0.98));
            box-shadow: 0 28px 70px rgba(2, 6, 23, 0.26);
            outline: none;
        }

        .country-modal__head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 14px;
        }

        .country-modal__eyebrow {
            margin: 0 0 4px;
            color: rgba(100, 116, 139, 0.96);
            font-size: 11px;
            font-weight: 1000;
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .country-modal__title {
            margin: 0;
            color: rgba(15, 23, 42, 0.94);
            font-size: 22px;
            font-weight: 1000;
            line-height: 1.1;
        }

        .country-modal__hint {
            margin: 6px 0 0;
            color: rgba(100, 116, 139, 0.96);
            font-size: 13px;
            font-weight: 750;
        }

        .country-modal__close {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            border: 1px solid rgba(15, 23, 42, 0.09);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.86);
            color: rgba(15, 23, 42, 0.78);
            display: inline-grid;
            place-items: center;
            cursor: pointer;
        }

        .country-modal__close svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.1;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .country-modal__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }

        .country-modal__option {
            min-height: 52px;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.86);
            color: rgba(15, 23, 42, 0.88);
            text-decoration: none;
            transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
        }

        .country-modal__option:hover,
        .country-modal__option.is-current {
            transform: translateY(-1px);
            border-color: rgba(var(--brand-rgb), 0.28);
            background: rgba(var(--brand-rgb), 0.08);
            box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.10);
        }

        .country-modal__flag {
            width: 34px;
            height: 26px;
            border-radius: 7px;
            display: inline-grid;
            place-items: center;
            background: rgba(15, 23, 42, 0.045);
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
        }

        .country-modal__name {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 13px;
            font-weight: 950;
        }

        .country-modal__code {
            color: rgba(100, 116, 139, 0.96);
            font-size: 10px;
            font-weight: 1000;
            letter-spacing: .06em;
        }

        .country-modal-open {
            overflow: hidden;
        }

        .topbar__subnav {
            display: none;
        }

        .topbar__navlist,
        .topbar__submeta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .topbar__navlink,
        .topbar__meta-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(20, 44, 66, 0.08);
            background: rgba(255, 255, 255, 0.82);
            color: rgba(20, 44, 66, 0.84);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.01em;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
            transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
        }

        .topbar__navlink:hover,
        .topbar__meta-chip:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(15, 35, 55, 0.08);
        }

        .topbar__navlink.is-current {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            box-shadow: 0 18px 34px rgba(var(--brand-rgb), 0.24);
        }

        .topbar__meta-chip {
            min-height: 36px;
            padding: 0 12px;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .topbar__meta-chip.is-current {
            color: rgba(var(--brand-rgb), 0.96);
            border-color: rgba(var(--brand-rgb), 0.22);
            background: rgba(var(--brand-rgb), 0.10);
            box-shadow: 0 12px 26px rgba(var(--brand-rgb), 0.10);
        }

        .topbar__meta-chip--ghost {
            background: linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(239, 245, 249, 0.94));
        }

        .topbar__meta-chip--quiet {
            color: rgba(20, 44, 66, 0.60);
            background: rgba(235, 242, 247, 0.94);
            border-color: rgba(20, 44, 66, 0.06);
            pointer-events: none;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid rgba(25, 50, 74, 0.10);
            background: rgba(255, 255, 255, 0.84);
            box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
            cursor: pointer;
            transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
            user-select: none;
            white-space: nowrap;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(2, 6, 23, 0.08);
        }

        .btn--primary {
            color: #fff;
            border: 0;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
        }

        .iconbtn {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid rgba(25, 50, 74, 0.10);
            background: rgba(255, 255, 255, 0.80);
            box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
            display: inline-grid;
            place-items: center;
            cursor: pointer;
            transition: transform .12s ease, box-shadow .12s ease;
        }

        .iconbtn svg {
            width: 20px;
            height: 20px;
            display: block;
            stroke: currentColor;
            stroke-width: 1.9;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }

        .iconbtn:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(2, 6, 23, 0.08);
        }

        .iconbtn.is-on,
        .mhero__quick.is-on {
            border-color: rgba(var(--brand-rgb), 0.34);
            background: rgba(var(--brand-rgb), 0.16);
            box-shadow: 0 14px 28px rgba(var(--brand-rgb), 0.22);
        }

        .notif-popover {
            position: fixed;
            inset: 0;
            z-index: 176;
            display: none;
        }

        .notif-popover.is-on {
            display: block;
        }

        .notif-popover__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.22);
            opacity: 0;
            transition: opacity .2s ease;
        }

        .notif-popover.is-on .notif-popover__backdrop {
            opacity: 1;
        }

        .notif-popover__panel {
            position: absolute;
            left: max(12px, calc(50vw - 210px));
            top: 92px;
            width: min(420px, calc(100vw - 24px));
            max-height: min(calc(100vh - 116px), 560px);
            border-radius: 18px;
            border: 1px solid rgba(15, 23, 42, 0.12);
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 26px 56px rgba(2, 6, 23, 0.24);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(-8px) scale(0.98);
            transform-origin: top center;
            opacity: 0;
            transition: transform .2s ease, opacity .2s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .notif-popover.is-on .notif-popover__panel {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .notif-popover__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 12px 12px 10px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(244, 249, 254, 0.95));
        }

        .notif-popover__title {
            margin: 0;
            font-size: 14px;
            font-weight: 1000;
            color: rgba(15, 23, 42, 0.92);
        }

        .notif-popover__close {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(15, 23, 42, 0.12);
            background: rgba(255, 255, 255, 0.92);
            color: rgba(15, 23, 42, 0.78);
            display: inline-grid;
            place-items: center;
            cursor: pointer;
            transition: transform .15s ease, background .15s ease;
        }

        .notif-popover__close:hover {
            transform: translateY(-1px);
            background: rgba(241, 245, 249, 0.98);
        }

        .notif-popover__close svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .notif-popover__body {
            flex: 1 1 auto;
            min-height: 0;
            max-height: none;
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            padding: 10px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
        }

        .notif-popover__state {
            min-height: 120px;
            display: grid;
            place-items: center;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            color: rgba(71, 85, 105, 0.96);
            background: rgba(248, 250, 252, 0.9);
            border: 1px dashed rgba(15, 23, 42, 0.14);
            border-radius: 14px;
            padding: 14px;
        }

        .notif-popover__grid {
            display: grid;
            gap: 9px;
        }

        .notif-item {
            width: 100%;
            text-align: start;
            border: 1px solid rgba(15, 23, 42, 0.10);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
            padding: 11px 12px;
            cursor: pointer;
            transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
        }

        .notif-item:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(2, 6, 23, 0.10);
            border-color: rgba(var(--brand-rgb), 0.24);
        }

        .notif-item.is-unread {
            border-color: rgba(37, 99, 235, 0.46);
            background: linear-gradient(180deg, rgba(219, 234, 254, 0.72), rgba(239, 246, 255, 0.86));
            box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
        }

        .notif-item__title {
            display: block;
            margin: 0;
            font-size: 13px;
            font-weight: 1000;
            color: rgba(15, 23, 42, 0.94);
            line-height: 1.35;
            letter-spacing: -0.1px;
        }

        .notif-item__body {
            margin-top: 5px;
            font-size: 12px;
            color: rgba(51, 65, 85, 0.9);
            line-height: 1.45;
        }

        .notif-item__meta {
            margin-top: 7px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(71, 85, 105, 0.92);
        }

        @media (max-width: 1100px) {
            .notif-popover {
                z-index: 182;
            }

            .notif-popover__panel {
                left: 50%;
                width: min(430px, calc(100vw - 18px));
                top: 50%;
                max-height: min(82vh, calc(100vh - 24px));
                transform: translate(-50%, calc(-50% - 8px)) scale(0.98);
                transform-origin: center center;
            }

            .notif-popover.is-on .notif-popover__panel {
                transform: translate(-50%, -50%) scale(1);
            }

            .notif-popover__body {
                max-height: none;
            }
        }

        /* Hero */
        .hero {
            margin-top: 14px;
            border-radius: var(--radius);
            background:
                radial-gradient(140% 120% at 0% 0%, rgba(var(--brand-rgb), 0.18) 0%, rgba(var(--brand-rgb), 0.08) 26%, transparent 62%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.94));
            border: 1px solid rgba(25, 50, 74, 0.08);
            box-shadow: 0 20px 44px rgba(21, 39, 60, 0.10);
            padding: 20px;
        }

        .hero__title {
            font-size: clamp(20px, 2.2vw, 28px);
            letter-spacing: -0.7px;
            margin: 0 0 6px 0;
            color: rgba(15, 23, 42, 0.94);
        }

        .hero__sub {
            margin: 0;
            color: rgba(71, 85, 105, 0.92);
            font-size: 14px;
            line-height: 1.6;
            max-width: 62ch;
        }

        .page-shell {
            width: min(100%, 1180px);
            margin-inline: auto;
        }

        .page-shell--narrow {
            width: min(100%, 980px);
        }

        .page-stack {
            display: grid;
            gap: 16px;
        }

        .stack-list {
            display: grid;
            gap: 12px;
        }

        .hero__headrow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 14px;
        }

        .hero__label {
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            color: rgba(15, 23, 42, 0.72);
        }

        .hero__links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(15, 23, 42, 0.10);
            box-shadow: 0 10px 18px rgba(2, 6, 23, 0.05);
            font-size: 12px;
            font-weight: 800;
            color: rgba(15, 23, 42, 0.78);
            transition: transform .12s ease, box-shadow .12s ease;
        }

        .hero__link:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 26px rgba(2, 6, 23, 0.07);
        }

        /* Mobile hero (matches sc1 layout vibe) */
        .mhero {
            padding: calc(10px + var(--safe-top)) 16px 14px;
            border-radius: 0 0 26px 26px;
            background:
                linear-gradient(180deg, var(--hero-top), var(--hero-bottom));
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .mhero--compact {
            padding: calc(8px + var(--safe-top)) 16px 10px;
            border-radius: 0 0 20px 20px;
        }

        .mhero--compact .mhero__appbar {
            padding: 0;
            margin-bottom: 0;
        }

        .mhero--compact .mhero__divider {
            display: none;
        }

        .mhero::before {
            content: "";
            position: absolute;
            inset: -40px -60px auto -60px;
            height: 220px;
            background: radial-gradient(180px 120px at 20% 40%, rgba(255, 255, 255, 0.18), transparent 60%),
                radial-gradient(220px 140px at 90% 10%, rgba(255, 255, 255, 0.14), transparent 60%);
            pointer-events: none;
        }

        /* Mobile app bar inside hero (matches ss.png) */
        .mhero__appbar {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2px 0 12px;
            margin-bottom: 6px;
        }

        .mhero__brand {
            display: inline-flex;
            align-items: center;
        }

        .mhero__brand-logo {
            display: block;
            height: 38px;
            width: auto;
            max-width: min(240px, 66vw);
            object-fit: contain;
        }

        .mhero__brand-logo--white {
            filter: brightness(0) invert(1);
            opacity: 0.98;
        }

        .mhero__actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mhero__quick,
        .mhero__lang,
        .mhero__menu {
            position: relative;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform .22s ease,
                background .22s ease,
                border-color .22s ease,
                box-shadow .22s ease;
        }

        .mhero__quick {
            width: 44px;
            color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 12px 26px rgba(12, 22, 36, 0.14);
        }

        .mhero__menu {
            width: 44px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 12px 26px rgba(12, 22, 36, 0.14);
            cursor: pointer;
        }

        .mhero__quick svg,
        .mhero__bell svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        .mhero__badge {
            position: absolute;
            top: -4px;
            right: -4px;
            min-width: 18px;
            height: 18px;
            padding: 0 4px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 900;
            line-height: 18px;
            text-align: center;
            background: rgba(239, 68, 68, 0.96);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.96);
            box-shadow: 0 10px 16px rgba(185, 28, 28, 0.30);
            display: none;
        }

        .mhero__lang {
            padding: 0 14px;
            color: rgba(255, 255, 255, 0.98);
            font-size: 12px;
            font-weight: 1000;
            letter-spacing: 0.02em;
            box-shadow: 0 12px 26px rgba(12, 22, 36, 0.12);
        }

        .mhero__quick:hover,
        .mhero__lang:hover,
        .mhero__menu:hover,
        .mhero__bell:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, 0.20);
            border-color: rgba(255, 255, 255, 0.28);
            box-shadow: 0 16px 32px rgba(12, 22, 36, 0.18);
        }

        .mhero__divider {
            position: absolute;
            left: -16px;
            right: -16px;
            bottom: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.10);
        }

        .mhero__top {
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            padding-top: 15px;
        }

        .mhero__hello {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mhero__greet {
            font-size: 13px;
            opacity: 0.92;
            font-weight: 800;
        }

        .mhero__title {
            font-size: 20px;
            font-weight: 1000;
            letter-spacing: -0.4px;
        }

        .mhero__bell {
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.20);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 12px 26px rgba(12, 22, 36, 0.14);
            transition: transform .22s ease,
                background .22s ease,
                border-color .22s ease,
                box-shadow .22s ease;
        }

        .mhero__row {
            position: relative;
            margin-top: 12px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .mhero__pill-shell {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            max-width: 100%;
            padding: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 12px 28px rgba(12, 22, 36, 0.12);
        }

        .mhero__pill {
            min-width: 0;
            flex: 1 1 auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 4px 6px 4px 4px;
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: inherit;
            font: inherit;
            line-height: 1.2;
            text-align: left;
            cursor: pointer;
            font-size: 13px;
            font-weight: 900;
        }

        .mhero__pill:focus-visible,
        .mhero__pill-action:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24);
        }

        .mhero__pill-label {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mhero__pill .dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
        }

        .mhero__pill-action {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            color: rgba(255, 255, 255, 0.96);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform .18s ease,
                background .18s ease,
                box-shadow .18s ease,
                opacity .18s ease;
        }

        .mhero__pill-action:hover {
            background: rgba(255, 255, 255, 0.24);
            box-shadow: 0 10px 18px rgba(12, 22, 36, 0.12);
        }

        .mhero__pill-action-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mhero__pill-action svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .mhero__pill-action-icon--clear {
            display: none;
        }

        .mhero__pill-shell.has-location .mhero__pill-action {
            background: rgba(255, 255, 255, 0.24);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
        }

        .mhero__pill-shell.has-location .mhero__pill-action-icon--open {
            display: none;
        }

        .mhero__pill-shell.has-location .mhero__pill-action-icon--clear {
            display: inline-flex;
        }

        .mhero__search {
            position: relative;
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 12px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(17, 24, 39, 0.10);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
        }

        .mhero__search .ico {
            opacity: 0.65;
            color: rgba(71, 85, 105, 0.92);
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mhero__search .ico svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        .mhero__search input {
            border: 0;
            outline: 0;
            background: transparent;
            flex: 1;
            font-size: 14px;
            font-weight: 800;
            color: rgba(17, 24, 39, 0.92);
        }

        .mhero__search input::placeholder {
            color: rgba(107, 114, 128, 0.95);
            font-weight: 700;
        }

        .mhero__search .flt {
            border: 0;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(148, 163, 184, 0.22);
            color: rgba(71, 85, 105, 0.92);
            font-weight: 900;
            box-shadow: 0 8px 18px rgba(17, 24, 39, 0.10);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
        }

        .mhero__search .flt.is-active {
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            color: #fff;
            box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
        }

        .mhero__search .flt svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        [dir="rtl"] .mhero__search .flt svg {
            transform: rotate(180deg);
        }

        .mobile-side-menu {
            position: fixed;
            inset: 0;
            z-index: 188;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .26s ease, visibility 0s linear .26s;
        }

        .mobile-side-menu.is-on {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: opacity .26s ease, visibility 0s linear 0s;
        }

        .mobile-side-menu__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 6, 23, 0.54);
            opacity: 0;
            transition: opacity .24s ease;
            will-change: opacity;
        }

        .mobile-side-menu.is-on .mobile-side-menu__backdrop {
            opacity: 1;
        }

        .mobile-side-menu__panel {
            position: absolute;
            top: 0;
            bottom: 0;
            width: min(86vw, 360px);
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(241, 247, 252, 0.98));
            border-inline-end: 1px solid rgba(15, 23, 42, 0.10);
            box-shadow: 0 22px 56px rgba(2, 6, 23, 0.28);
            transform: translateX(-102%);
            transition: transform .26s cubic-bezier(.2, .8, .2, 1);
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            will-change: transform;
        }

        [dir="rtl"] .mobile-side-menu__panel {
            right: 0;
            left: auto;
            border-inline-end: 0;
            border-inline-start: 1px solid rgba(15, 23, 42, 0.10);
            transform: translateX(102%);
        }

        [dir="ltr"] .mobile-side-menu__panel {
            left: 0;
            right: auto;
        }

        .mobile-side-menu.is-on .mobile-side-menu__panel {
            transform: translateX(0);
        }

        .mobile-side-menu__head {
            padding: 16px 14px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.84);
            position: sticky;
            top: 0;
            z-index: 2;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .mobile-side-menu__brand {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .mobile-side-menu__logo {
            display: block;
            height: 24px;
            width: auto;
            max-width: 130px;
            object-fit: contain;
        }

        .mobile-side-menu__title {
            margin: 0;
            font-size: 16px;
            font-weight: 1000;
            letter-spacing: -0.2px;
            color: rgba(15, 23, 42, 0.92);
        }

        .mobile-side-menu__user {
            margin: 0;
            font-size: 12px;
            font-weight: 800;
            color: var(--muted);
            max-width: 200px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mobile-side-menu__close {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.12);
            background: rgba(255, 255, 255, 0.92);
            color: rgba(15, 23, 42, 0.86);
            display: inline-grid;
            place-items: center;
            cursor: pointer;
        }

        .mobile-side-menu__close svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2.1;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-side-menu__body {
            padding: 12px;
            display: grid;
            gap: 14px;
        }

        .mobile-side-menu__section {
            display: grid;
            gap: 8px;
        }

        .mobile-side-menu__label {
            margin: 0;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: rgba(100, 116, 139, 0.96);
            padding-inline: 2px;
        }

        .mobile-side-menu__list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 7px;
        }

        .mobile-side-menu__section--country {
            margin-bottom: 2px;
        }

        .mobile-side-menu__country {
            width: 100%;
            min-height: 56px;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border: 1px solid rgba(var(--brand-rgb), 0.18);
            border-radius: 16px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--brand-rgb), 0.06));
            color: rgba(15, 23, 42, 0.90);
            text-align: start;
            cursor: pointer;
            box-shadow: 0 12px 26px rgba(var(--brand-rgb), 0.10);
        }

        .mobile-side-menu__country-flag {
            width: 42px;
            height: 32px;
            border-radius: 8px;
            display: inline-grid;
            place-items: center;
            background: rgba(255, 255, 255, 0.82);
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
        }

        .mobile-side-menu__country-copy {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .mobile-side-menu__country-label {
            color: rgba(100, 116, 139, 0.96);
            font-size: 10px;
            font-weight: 1000;
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .mobile-side-menu__country-name {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 1000;
        }

        .mobile-side-menu__country-tail {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: inline-grid;
            place-items: center;
            background: rgba(255, 255, 255, 0.74);
            color: rgba(100, 116, 139, 0.92);
        }

        .mobile-side-menu__country-tail svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-side-menu__item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            min-height: 42px;
            padding: 9px 11px;
            border-radius: 12px;
            border: 1px solid rgba(15, 23, 42, 0.09);
            background: rgba(255, 255, 255, 0.88);
            color: rgba(15, 23, 42, 0.88);
            font-size: 13px;
            font-weight: 900;
            line-height: 1.2;
            text-decoration: none;
            transition: transform .16s ease, border-color .16s ease, background .16s ease;
        }

        .mobile-side-menu__item:hover {
            transform: translateY(-1px);
            border-color: rgba(var(--brand-rgb), 0.24);
            background: rgba(255, 255, 255, 0.96);
        }

        .mobile-side-menu__item.is-current {
            border-color: rgba(var(--brand-rgb), 0.26);
            background: rgba(var(--brand-rgb), 0.08);
            box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.12);
        }

        .mobile-side-menu__item-main {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            flex: 1;
        }

        .mobile-side-menu__item-icon {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            border-radius: 12px;
            display: inline-grid;
            place-items: center;
            background: rgba(var(--brand-rgb), 0.08);
            color: var(--brand);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
        }

        .mobile-side-menu__item-icon svg {
            width: 18px;
            height: 18px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-side-menu__item-text {
            min-width: 0;
            flex: 1;
        }

        .mobile-side-menu__item-tail {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(100, 116, 139, 0.88);
        }

        .mobile-side-menu__item-tail svg {
            width: 16px;
            height: 16px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-side-menu__item-lock {
            min-height: 24px;
            padding: 0 9px;
            border-radius: 999px;
            background: rgba(245, 158, 11, 0.14);
            color: rgba(146, 64, 14, 0.96);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .05em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-side-menu__item--locked {
            border-style: dashed;
            border-color: rgba(245, 158, 11, 0.22);
            background: linear-gradient(180deg, rgba(255, 251, 235, 0.96), rgba(255, 255, 255, 0.94));
        }

        .mobile-side-menu__item--locked .mobile-side-menu__item-icon {
            background: rgba(245, 158, 11, 0.14);
            color: rgba(146, 64, 14, 0.96);
        }

        .mobile-side-menu__auth {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .mobile-side-menu__auth .btn {
            flex: 1;
            min-height: 38px;
            justify-content: center;
        }

        .mobile-menu-open {
            overflow: hidden;
            touch-action: none;
        }

        @media (min-width: 821px) {
            .mobile-side-menu {
                display: none !important;
            }
        }

        .msection {
            margin-top: 14px;
        }

        .msection__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 8px 0 10px;
        }

        .msection__head h2 {
            margin: 0;
            font-size: 15px;
            font-weight: 1000;
            letter-spacing: -0.2px;
            color: rgba(17, 24, 39, 0.92);
        }

        .msection__link {
            font-size: 13px;
            font-weight: 900;
            color: rgba(var(--brand-rgb), 0.95);
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 12px;
            align-items: stretch;
            margin-bottom: 34px;
        }

        .cat {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(62, 104, 136, 0.10);
            border-radius: 18px;
            padding: 13px 10px 14px;
            box-shadow: 0 12px 28px rgba(42, 76, 102, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 9px;
            text-align: center;
            min-height: 114px;
            transition: transform .28s cubic-bezier(.22, 1, .36, 1),
                box-shadow .28s ease,
                border-color .28s ease,
                background .28s ease;
        }

        .cat__ico {
            width: 48px;
            height: 48px;
            border-radius: 15px;
            display: grid;
            place-items: center;
            background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.07));
            color: rgba(var(--brand-rgb), 0.98);
            border: 1px solid rgba(var(--brand-rgb), 0.10);
            font-size: 20px;
            overflow: hidden;
            transition: transform .28s cubic-bezier(.22, 1, .36, 1),
                border-color .28s ease,
                background .28s ease,
                color .28s ease;
        }

        .cat__ico svg {
            width: 26px;
            height: 26px;
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.1;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cat__ico--blue,
        .cat__ico--emerald,
        .cat__ico--violet,
        .cat__ico--orange,
        .cat__ico--amber,
        .cat__ico--pink,
        .cat__ico--rose,
        .cat__ico--cyan,
        .cat__ico--red,
        .cat__ico--indigo,
        .cat__ico--slate {
            background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.07));
            color: rgba(var(--brand-rgb), 0.98);
        }

        .cat__lbl {
            font-size: 12px;
            font-weight: 900;
            color: rgba(17, 24, 39, 0.84);
            line-height: 1.1;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: color .22s ease;
        }

        @media (hover: hover) {
            .cat:hover {
                transform: translateY(-5px);
                border-color: rgba(var(--brand-rgb), 0.18);
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 252, 0.96));
                box-shadow: 0 20px 38px rgba(42, 76, 102, 0.13), 0 10px 22px rgba(var(--brand-rgb), 0.08);
            }

            .cat:hover .cat__ico {
                transform: translateY(-2px) scale(1.06);
                background: linear-gradient(135deg, var(--brand), var(--brand-2));
                color: #fff;
                border-color: transparent;
            }

            .cat:hover .cat__lbl {
                color: rgba(22, 50, 75, 0.96);
            }

        }

        .cat:active {
            transform: translateY(-1px) scale(0.985);
        }


        @media (max-width: 820px) {
            .hero {
                display: none;
            }

            .cat-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 10px;
            }
        }

        @media (max-width: 420px) {
            .cat-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 8px;
            }
            .cat {
                padding: 10px 8px;
                min-height: 108px;
            }
        }

        /* Pick cards (categories/locations) */
        .pick-scroll {
            margin-top: 12px;
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(190px, 1fr);
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 6px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .pick-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .pick-scroll::-webkit-scrollbar-thumb {
            background: rgba(15, 23, 42, 0.14);
            border-radius: 999px;
        }

        .pick-card {
            scroll-snap-align: start;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 12px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.86);
            border: 1px solid rgba(15, 23, 42, 0.10);
            box-shadow: 0 12px 24px rgba(2, 6, 23, 0.06);
            transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
            min-width: 190px;
        }

        .pick-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.10);
            border-color: rgba(var(--brand-rgb), 0.25);
        }

        .pick-card.is-on {
            border-color: rgba(var(--brand-rgb), 0.35);
            background: rgba(var(--brand-rgb), 0.10);
        }

        .pick-card--more {
            background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.16), rgba(var(--brand-rgb), 0.10));
        }

        .pick-icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            font-size: 18px;
            background: linear-gradient(135deg, var(--brand), var(--brand-2));
            color: #fff;
            flex: 0 0 auto;
            box-shadow: 0 12px 24px rgba(2, 6, 23, 0.12);
        }

        .pick-icon svg,
        .pick-icon__img {
            width: 22px;
            height: 22px;
            display: block;
        }

        .pick-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .pick-text strong {
            font-size: 13px;
            font-weight: 900;
            letter-spacing: -0.2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pick-text span {
            font-size: 11px;
            color: rgba(100, 116, 139, 0.95);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pick-search {
            margin-top: 12px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(15, 23, 42, 0.10);
            border-radius: 999px;
            padding: 0 12px;
            min-height: 54px;
            box-sizing: border-box;
            box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
        }

        .pick-search:focus-within {
            box-shadow: 0 16px 34px rgba(2, 6, 23, 0.08);
            transform: translateY(-1px);
        }

        .pick-search__icon {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            opacity: 0.7;
        }

        .pick-search input {
            width: 100%;
            height: 34px;
            border: 0;
            outline: 0;
            background: transparent;
            font-size: 14px;
            color: var(--text);
        }

        .pick-search__clear {
            border: 0;
            background: rgba(15, 23, 42, 0.06);
            color: rgba(15, 23, 42, 0.65);
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: none;
            cursor: pointer;
            transition: transform .12s ease, background .12s ease;
        }

        .pick-search__clear svg {
            width: 16px;
            height: 16px;
            display: block;
            stroke: currentColor;
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pick-search__clear:hover {
            transform: scale(1.03);
            background: rgba(15, 23, 42, 0.09);
        }

        .pick-search__clear.is-on {
            display: inline-grid;
            place-items: center;
        }

        /* Restore design-intent size; the global 44px touch rule was inflating the container */
        .pick-search .pick-search__clear {
            width: 34px;
            height: 34px;
        }

        .pick-grid {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .pick-grid .pick-card {
            min-width: 0;
        }

        /* Chips */
        .chips {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 14px;
        }

        .chip {
            border: 1px solid rgba(15, 23, 42, 0.10);
            background: rgba(255, 255, 255, 0.75);
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 12px;
            color: rgba(15, 23, 42, 0.78);
            box-shadow: 0 10px 18px rgba(2, 6, 23, 0.05);
            cursor: pointer;
            transition: transform .12s ease, box-shadow .12s ease;
        }

        .chip:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 26px rgba(2, 6, 23, 0.07);
        }

        .chip.is-on {
            border-color: rgba(79, 70, 229, 0.30);
            background: rgba(79, 70, 229, 0.10);
            color: rgba(15, 23, 42, 0.92);
        }

        /* Ads grid */
        .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            margin: 18px 0 12px;
        }

        .section-head h2 {
            margin: 0;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(71, 85, 105, 0.86);
        }

        .section-head .meta {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.86);
            box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
            font-size: 12px;
            font-weight: 800;
            color: rgba(71, 85, 105, 0.88);
        }

        .section-head__tools {
            margin-inline-start: auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .section-head__sort {
            min-height: 44px;
            padding: 8px 12px;
            border-radius: 16px;
            border: 1px solid rgba(15, 23, 42, 0.10);
            background: rgba(255, 255, 255, 0.88);
            color: rgba(15, 23, 42, 0.88);
            font-size: 12px;
            font-weight: 800;
            outline: none;
            box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
        }

        .section-head__sort:focus {
            box-shadow: var(--ring);
            border-color: rgba(var(--brand-rgb), 0.35);
        }

        .section-head__filter {
            min-height: 44px;
            padding: 8px 14px;
            border-radius: 16px;
            border: 1px solid rgba(15, 23, 42, 0.10);
            background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.16), rgba(255, 255, 255, 0.96));
            color: rgba(15, 23, 42, 0.88);
            font-size: 12px;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
        }

        .ads-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            align-items: stretch;
        }

        .ads-grid .ad-card {
            height: 100%;
            align-self: stretch;
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 1400px) {
            .ads-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }

        .ad-card {
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(15, 23, 42, 0.10);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
            transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
        }

        .ad-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 44px rgba(2, 6, 23, 0.10);
            border-color: rgba(var(--brand-rgb), 0.25);
        }

        .chat-preview-box {
            width: 100%;
            display: block;
        }

        .chat-preview-box section {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 14px;
            margin: 0;
            width: 100%;
            cursor: pointer;
            background:
                radial-gradient(120% 120% at 0% 0%, rgba(var(--brand-rgb), 0.10) 0%, transparent 40%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 22px;
            padding: 14px;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
            transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
        }

        .chat-preview-box:hover section {
            transform: translateY(-2px);
            border-color: rgba(var(--brand-rgb), 0.22);
            box-shadow: 0 22px 42px rgba(15, 23, 42, 0.10);
        }

        .chat-preview-box .chat-date {
            flex: none;
            min-width: 62px;
            text-align: end;
            font-size: 12px;
            font-weight: 800;
            line-height: 1.5;
            color: rgba(100, 116, 139, 0.92);
            height: auto;
            padding: 0;
        }

        .rtl .chat-preview-box .chat-date {
            text-align: left;
        }

        .chat-preview-box .chat-contents {
            flex: none;
            min-width: 0;
            padding: 0;
            display: grid;
            gap: 4px;
        }

        .chat-preview-box .chat-images {
            flex: none;
            display: flex;
            max-width: 60px;
            min-width: 60px;
            max-height: 60px;
            min-height: 60px;
            width: 60px;
            height: 60px;
            border-radius: 18px;
            overflow: hidden;
            background-size: cover;
            background-repeat: no-repeat;
            align-items: end;
            justify-content: end;
            background-position: center center;
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
        }

        .rtl .chat-preview-box .chat-images {
            background-position: center center;
        }

        .chat-preview-box img {
            object-fit: cover;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: solid 2px rgba(255, 255, 255, 0.92);
            box-shadow: 0 10px 18px rgba(15, 23, 42, 0.20);
        }

        .chat-preview-box .msg-owner-name {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .chat-preview-box .msg-contents {
            color: rgba(15, 23, 42, 0.94);
            font-weight: 800;
        }

        .ad-media {
            position: relative;
            width: 100%;
            height: 188px;
            aspect-ratio: auto;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
            background-size: cover;
            background-position: center center;
        }

        .ad-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            background-size: cover;
            background-position: center center;
        }

        .ad-media::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.48), transparent);
            pointer-events: none;
        }

        .ad-price-tag {
            position: absolute;
            left: 10px;
            bottom: 10px;
            padding: 7px 10px;
            border-radius: 999px;
            font-weight: 900;
            font-size: 13px;
            color: #fff;
            background: rgba(2, 6, 23, 0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        [dir="rtl"] .ad-price-tag {
            left: auto;
            right: 10px;
        }

        .ad-body {
            padding: 12px 12px 14px;
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
            min-height: 0;
            gap: 6px;
        }

        .ad-title {
            order: 1;
            margin: 0;
            font-size: 14px;
            font-weight: 900;
            letter-spacing: -0.2px;
            line-height: 1.25;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .ad-desc {
            order: 2;
            margin: 0;
            font-size: 12px;
            color: rgba(100, 116, 139, 0.95);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .ad-meta {
            order: 3;
            margin: auto 0 0;
            padding-top: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 11px;
            font-weight: 800;
            color: rgba(100, 116, 139, 0.95);
        }

        .ad-meta-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-width: 0;
            max-width: 100%;
            padding: 4px 9px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.24);
            background: rgba(148, 163, 184, 0.13);
            color: rgba(51, 65, 85, 0.92);
            line-height: 1.2;
        }

        .ad-meta-chip svg {
            width: 13px;
            height: 13px;
            display: block;
            flex: 0 0 auto;
            stroke: currentColor;
            stroke-width: 1.9;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.9;
        }

        .ad-meta-chip__text {
            min-width: 0;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .ad-meta__city,
        .ad-meta__time {
            white-space: nowrap;
        }

        .ad-meta__dot {
            opacity: 0.6;
        }

        .loader {
            --loader-size: 18px;
            --loader-track: rgba(15, 23, 42, 0.16);
            --loader-accent: rgba(var(--brand-rgb), 0.96);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            min-height: 52px;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 14px 18px 10px;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
            font-weight: 800;
            line-height: 1.45;
            white-space: normal;
            word-break: normal;
            overflow-wrap: anywhere;
            background: none !important;
            background-image: none !important;
            border: 0 !important;
            box-shadow: none !important;
            animation: none !important;
            transform: none !important;
            mask: none !important;
            -webkit-mask: none !important;
        }

        .loader:not(.loader--terminal)::before {
            content: "";
            flex: 0 0 auto;
            display: inline-block;
            width: var(--loader-size) !important;
            height: var(--loader-size) !important;
            border-radius: 999px;
            box-sizing: border-box;
            border: 2px solid var(--loader-track) !important;
            border-top-color: var(--loader-accent) !important;
            border-inline-start-color: rgba(var(--brand-rgb), 0.35) !important;
            animation: loader-spin 0.72s linear infinite !important;
            will-change: transform;
            transform-origin: center;
        }

        .loader:not(.loader--terminal)::after {
            content: none !important;
            display: none !important;
        }

        .loader.loader--terminal {
            animation: none !important;
            background-image: none !important;
            background: none !important;
            box-shadow: none !important;
            border: 0 !important;
            mask: none !important;
            -webkit-mask: none !important;
            transform: none !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            min-height: 60px;
            width: min(100%, 560px);
            margin: 0 auto;
            padding: 18px 18px 10px;
            line-height: 1.45;
            white-space: normal;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .loader.loader--terminal.loader--empty-panel {
            width: 100%;
            max-width: 100%;
            min-height: clamp(220px, 42vh, 360px);
            margin: 4px 0 0;
            padding: clamp(20px, 4vw, 28px);
            border-radius: 24px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.90)) !important;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        }

        .loader.loader--terminal.loader--empty-panel .ourood-feed-message {
            max-width: 520px;
            margin: 0 auto;
            padding: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
            font-size: 16px;
        }

        .loader.loader--terminal .feed-terminal-note {
            position: relative;
            isolation: isolate;
            display: grid;
            justify-items: center;
            gap: 10px;
            width: min(100%, 540px);
            margin: 0 auto;
            padding: 18px 20px 17px;
            border-radius: 22px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            background:
                radial-gradient(120% 140% at 0% 0%, rgba(var(--brand-rgb), 0.12) 0%, transparent 46%),
                radial-gradient(110% 120% at 100% 0%, rgba(77, 126, 168, 0.12) 0%, transparent 52%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.94));
            box-shadow:
                0 18px 40px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(8px);
            text-align: center;
        }

        .loader.loader--terminal .feed-terminal-note::before {
            content: "";
            width: 48px;
            height: 5px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand), var(--brand-2));
            box-shadow: 0 8px 18px rgba(var(--brand-rgb), 0.18);
        }

        .loader.loader--terminal .feed-terminal-note__text {
            color: rgba(15, 23, 42, 0.90);
            max-width: 34ch;
            font-size: 15px;
            font-weight: 850;
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        .loader.loader--terminal::before,
        .loader.loader--terminal::after {
            content: none !important;
            display: none !important;
            animation: none !important;
            background: none !important;
            box-shadow: none !important;
            border: 0 !important;
            transform: none !important;
        }

        #infinite_sentinel {
            display: block;
            width: 100%;
            min-height: 2px;
            height: 2px;
            margin-top: 1px;
            opacity: 0;
            pointer-events: none;
        }

        @keyframes loader-spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Skeleton */
        .skeleton {
            position: relative;
            overflow: hidden;
        }

        .skeleton::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0.0),
                    rgba(255, 255, 255, 0.65),
                    rgba(255, 255, 255, 0.0));
            transform: translateX(-100%);
            animation: shimmer 1.2s infinite;
        }

        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }

        .sk-media {
            aspect-ratio: 4/3;
            background: rgba(15, 23, 42, 0.06);
        }

        .sk-line {
            height: 12px;
            margin-top: 10px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.06);
        }

        .sk-line.sm {
            width: 60%;
        }

        .sk-line.md {
            width: 85%;
        }

        @media (min-width: 821px) {
            html {
                scroll-padding-top: 188px;
            }

            body {
                background:
                    radial-gradient(1200px 420px at 50% -6%, rgba(255, 255, 255, 0.56), transparent 68%),
                    linear-gradient(180deg, #eef4f9 0%, #e8f0f6 46%, #edf3f8 100%);
            }

            .container {
                max-width: 1248px;
                padding: 26px 22px 56px;
            }

            main#site-main.container {
                padding-top: 18px;
            }

            .topbar {
                top: 12px;
                z-index: 120;
                padding: 0 18px 16px;
                margin-bottom: 6px;
                background: transparent;
                border-bottom: 0;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                isolation: isolate;
            }

            .topbar__inner {
                position: relative;
                max-width: 1248px;
                min-height: 94px;
                padding: 14px 18px 16px;
                gap: 16px 18px;
                grid-template-columns: auto minmax(360px, 1fr) auto;
                border-radius: 30px;
                border: 1px solid rgba(20, 44, 66, 0.10);
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.90));
                box-shadow:
                    0 24px 54px rgba(15, 35, 55, 0.14),
                    0 10px 18px rgba(15, 35, 55, 0.06),
                    inset 0 1px 0 rgba(255, 255, 255, 0.82);
                backdrop-filter: blur(18px) saturate(150%);
                -webkit-backdrop-filter: blur(18px) saturate(150%);
            }

            .topbar__inner::before {
                content: "";
                position: absolute;
                inset: -1px;
                border-radius: inherit;
                pointer-events: none;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 34%);
                opacity: 0.8;
            }

            .topbar__inner::after {
                content: "";
                position: absolute;
                left: 28px;
                right: 28px;
                bottom: -16px;
                height: 30px;
                border-radius: 999px;
                background: radial-gradient(ellipse at center, rgba(28, 53, 80, 0.18) 0%, rgba(28, 53, 80, 0.06) 42%, transparent 74%);
                filter: blur(12px);
                pointer-events: none;
                z-index: -1;
            }

            .brand {
                position: relative;
                padding: 10px 14px 10px 12px;
                border-radius: 20px;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.88));
                border-color: rgba(20, 44, 66, 0.08);
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.86),
                    0 12px 24px rgba(15, 35, 55, 0.07);
            }

            .brand__img {
                height: 40px;
                max-width: 240px;
            }

            .brand-country,
            .brand-language {
                min-height: 48px;
                border-radius: 18px;
                background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(237, 243, 248, 0.94));
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.86),
                    0 12px 24px rgba(15, 35, 55, 0.07);
            }

            .search {
                min-height: 56px;
                padding: 12px 18px;
                gap: 12px;
                border-radius: 22px;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 253, 0.90));
                border: 0;
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.9),
                    0 12px 28px rgba(15, 35, 55, 0.06);
            }

            .search:focus-within {
                transform: translateY(-2px);
                box-shadow:
                    var(--ring),
                    0 18px 36px rgba(15, 35, 55, 0.10);
            }

            .search__icon {
                width: 19px;
                height: 19px;
            }

            .search input {
                font-size: 14px;
                font-weight: 800;
            }

            .search__suggest {
                top: calc(100% + 12px);
                border-radius: 22px;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.96));
                box-shadow: 0 24px 54px rgba(15, 35, 55, 0.12);
            }

            .actions {
                gap: 12px;
                justify-content: flex-end;
            }

            .topbar__subnav {
                display: flex;
                grid-column: 1 / -1;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                padding: 8px 4px 0;
                border-top: 1px solid rgba(20, 44, 66, 0.08);
                position: relative;
                z-index: 1;
            }

            .topbar__navlist {
                gap: 10px;
            }

            .topbar__submeta {
                justify-content: flex-end;
            }

            .btn {
                min-height: 46px;
                padding: 0 18px;
                font-size: 13px;
                font-weight: 900;
                letter-spacing: 0.01em;
                border-color: rgba(20, 44, 66, 0.08);
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.90));
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.84),
                    0 12px 28px rgba(15, 35, 55, 0.07);
            }

            .btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 18px 34px rgba(15, 35, 55, 0.10);
            }

            .btn--primary {
                padding-inline: 20px;
                background: linear-gradient(135deg, #5c90bc 0%, #315978 48%, #173149 100%);
                box-shadow: 0 16px 36px rgba(25, 66, 102, 0.28);
            }

            .iconbtn {
                width: 46px;
                height: 46px;
                border-radius: 16px;
                border-color: rgba(20, 44, 66, 0.08);
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.90));
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.84),
                    0 12px 28px rgba(15, 35, 55, 0.07);
            }

            .iconbtn:hover {
                transform: translateY(-2px);
                box-shadow: 0 18px 34px rgba(15, 35, 55, 0.10);
            }

            .header-icon-actions {
                gap: 10px;
                padding-inline-start: 2px;
            }

            .header-icon-action {
                width: 46px;
                height: 46px;
                border-radius: 16px;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.90));
                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.84),
                    0 12px 28px rgba(15, 35, 55, 0.07);
            }

            .hero {
                margin-top: 10px;
                padding: 24px 24px 22px;
                border-radius: 28px;
                background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.20), rgba(255, 255, 255, 0.88));
                box-shadow: 0 22px 48px rgba(15, 35, 55, 0.12);
            }

            .section-head {
                margin: 30px 0 16px;
                align-items: flex-end;
            }

            .section-head h2 {
                font-size: 15px;
                letter-spacing: 0.12em;
            }

            .section-head__sort,
            .section-head__filter {
                min-height: 42px;
                padding-inline: 14px;
                border-radius: 14px;
                box-shadow: 0 10px 24px rgba(15, 35, 55, 0.05);
            }

            .pick-scroll {
                gap: 14px;
                padding-bottom: 10px;
            }

            .pick-card,
            .pick-grid .pick-card {
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.90));
                box-shadow: 0 16px 34px rgba(15, 35, 55, 0.08);
            }

            .ads-grid {
                gap: 18px;
            }

            .ad-card {
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.92));
                box-shadow: 0 18px 38px rgba(15, 35, 55, 0.08);
            }

            .ad-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 28px 56px rgba(15, 35, 55, 0.12);
            }

            #page-content-anchor {
                display: block;
                min-height: 10px;
            }
        }

        @media (min-width: 821px) and (max-width: 1100px) {
            html {
                scroll-padding-top: 172px;
            }

            .container {
                padding-inline: 16px;
            }

            main#site-main.container {
                padding-top: 14px;
            }

            .topbar {
                padding: 0 10px 10px;
            }

            .topbar__inner {
                min-height: 82px;
                padding: 12px 14px 14px;
                gap: 12px 14px;
                grid-template-columns: auto minmax(240px, 1fr) auto;
                border-radius: 24px;
            }

            .topbar__inner::after {
                left: 18px;
                right: 18px;
            }

            .brand {
                padding: 9px 12px;
                border-radius: 18px;
            }

            .brand__img {
                height: 36px;
                max-width: 200px;
            }

            .brand-country,
            .brand-language {
                min-height: 44px;
                border-radius: 16px;
            }

            .search {
                min-height: 50px;
                padding: 10px 14px;
                border-radius: 18px;
            }

            .actions {
                gap: 8px;
            }

            .topbar__subnav {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                padding-top: 6px;
            }

            .topbar__navlist,
            .topbar__submeta {
                gap: 6px;
            }

            .topbar__submeta {
                justify-content: flex-start;
            }

            .topbar__navlink,
            .topbar__meta-chip {
                min-height: 34px;
                padding: 0 11px;
                font-size: 11px;
            }

            .btn {
                min-height: 42px;
                padding: 0 14px;
                font-size: 12px;
            }

            .btn--primary {
                padding-inline: 16px;
            }

            .iconbtn,
            .header-icon-action {
                width: 42px;
                height: 42px;
                border-radius: 14px;
            }
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .ads-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .pick-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            .topbar__inner {
                grid-template-columns: auto 1fr;
                grid-template-areas:
                    "brand actions"
                    "search search";
            }

            .brand-shell {
                grid-area: brand;
            }

            .actions {
                grid-area: actions;
                justify-content: flex-end;
            }

            .search {
                grid-area: search;
            }

            .ads-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .section-head__tools {
                width: 100%;
                margin-inline-start: 0;
                justify-content: flex-end;
            }

            .section-head__sort {
                flex: 1;
                min-width: 0;
            }

            .pick-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pick-scroll {
                grid-auto-columns: minmax(170px, 1fr);
            }
        }

        @media (max-width: 480px) {
            .ads-grid {
                grid-template-columns: 1fr;
            }

            .country-modal {
                align-items: flex-end;
                padding: 10px;
            }

            .country-modal__panel {
                width: 100%;
                max-height: min(620px, calc(100vh - 20px));
                border-radius: 22px 22px 18px 18px;
                padding: 16px;
            }

            .country-modal__title {
                font-size: 20px;
            }

            .country-modal__grid {
                grid-template-columns: 1fr;
            }

            .pick-grid {
                grid-template-columns: 1fr;
            }

            .topbar .actions .btn--primary {
                display: none;
            }

            /* keep minimal on tiny screens */
        }


        .fav-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(2, 6, 23, 0.45);
            color: rgba(255, 255, 255, 0.92);
            display: inline-grid;
            place-items: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform .12s ease, background .12s ease;
        }

        .fav-btn svg {
            width: 18px;
            height: 18px;
            display: block;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }

        [dir="rtl"] .fav-btn {
            right: auto;
            left: 10px;
        }

        .fav-btn:hover {
            transform: translateY(-1px) scale(1.02);
        }

        .fav-btn.is-on {
            background: rgba(var(--brand-rgb), 0.92);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .fav-btn.is-on svg {
            fill: currentColor;
        }

        /* Mobile bottom navigation (app-style) */
        .mobile-nav {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 90;
            padding: 12px 14px calc(16px + env(safe-area-inset-bottom));
            display: none;
            pointer-events: none;
            transform: translateY(0);
            transition: transform .42s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-nav--hidden {
            transform: translateY(calc(100% + 20px));
        }

        .mobile-nav__bar {
            position: relative;
            width: min(560px, calc(100vw - 22px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            align-items: end;
            gap: 8px;
            padding: 12px 12px 14px;
            border-radius: 32px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 252, 0.90));
            border: 1px solid rgba(255, 255, 255, 0.78);
            box-shadow: 0 26px 64px rgba(16, 35, 56, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.80);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            overflow: visible;
            pointer-events: auto;
        }

        .mobile-nav__bar::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background:
                radial-gradient(180px 56px at 50% -8%, rgba(var(--brand-rgb), 0.20), transparent 70%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 34%);
            pointer-events: none;
        }

        .mobile-nav__bar::after {
            content: none;
        }

        .mobile-nav__item {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 6px 4px 5px;
            border-radius: 18px;
            color: rgba(103, 120, 140, 0.96);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.01em;
            user-select: none;
            transition: transform .18s ease, color .18s ease;
            min-height: 70px;
        }

        .mobile-nav__item:not(.mobile-nav__sell):hover {
            transform: translateY(-1px);
        }

        .mobile-nav__iconwrap {
            position: relative;
            width: 52px;
            height: 42px;
            display: grid;
            place-items: center;
        }

        .mobile-nav__item .ico {
            width: 42px;
            height: 42px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            position: relative;
            color: currentColor;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(25, 50, 74, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
            transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .mobile-nav__item .ico svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-nav__item .lbl {
            font-size: 11px;
            font-weight: 900;
            line-height: 1;
        }

        .mobile-nav__item.is-on {
            color: rgba(22, 50, 75, 0.98);
            background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.10), rgba(255, 255, 255, 0.24));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
        }

        .mobile-nav__item.is-on::before {
            content: "";
            position: absolute;
            bottom: -2px;
            width: 24px;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.10), rgba(var(--brand-rgb), 0.92), rgba(var(--brand-rgb), 0.10));
            box-shadow: 0 0 16px rgba(var(--brand-rgb), 0.28);
        }

        .mobile-nav__item.is-on .ico {
            background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.24), rgba(255, 255, 255, 0.96));
            border-color: rgba(var(--brand-rgb), 0.24);
            box-shadow: 0 16px 26px rgba(var(--brand-rgb), 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.56);
            transform: translateY(-2px);
        }

        .mobile-nav__sell {
            z-index: 2;
            position: relative;
            justify-content: flex-start;
            padding: 0 4px 5px;
            background: transparent;
            border: 0;
            gap: 0;
            overflow: visible;
        }

        .mobile-nav__sell:hover {
            transform: none;
        }

        .mobile-nav__sell .fab {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translate(-50%, -50%);
            width: 62px;
            height: 62px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(180deg, var(--brand), var(--brand-2));
            box-shadow: 0 22px 42px rgba(18, 35, 56, 0.22), 0 10px 22px rgba(var(--brand-rgb), 0.18);
            border: 4px solid rgba(255, 255, 255, 0.92);
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .mobile-nav__sell:hover .fab {
            transform: translate(-50%, -52%);
            box-shadow: 0 26px 46px rgba(18, 35, 56, 0.24), 0 12px 26px rgba(var(--brand-rgb), 0.20);
        }

        .mobile-nav__sell .fab::before {
            content: "";
            position: absolute;
            inset: -9px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18), transparent 72%);
            z-index: -1;
        }

        .mobile-nav__sell .fab svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .mobile-nav__sell .lbl {
            position: absolute;
            left: 50%;
            top: 41px;
            transform: translateX(-50%);
            z-index: 1;
            font-size: 11px;
            font-weight: 1000;
            color: rgba(22, 50, 75, 0.82);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .mobile-nav__badge {
            position: absolute;
            top: -4px;
            right: -5px;
            min-width: 20px;
            height: 20px;
            padding: 0 5px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 900;
            line-height: 20px;
            text-align: center;
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.98), rgba(214, 57, 57, 0.98));
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.96);
            box-shadow: 0 10px 18px rgba(214, 57, 57, 0.26);
            display: none;
        }

        [dir="rtl"] .mobile-nav__badge {
            right: auto;
            left: -5px;
        }

        @media (max-width: 820px) {
            .mobile-nav {
                display: block;
            }

            body {
                padding-bottom: 0;
            }

            .container {
                padding-bottom: calc(132px + env(safe-area-inset-bottom)) !important;
            }

            body.auth-page {
                padding-bottom: 24px;
            }

            body.auth-page .mobile-nav {
                display: none;
            }

            body.auth-page .container {
                padding-bottom: 40px;
            }
        }

        @media (max-width: 380px) {
            .mobile-nav__bar {
                width: calc(100vw - 18px);
                gap: 4px;
                padding: 10px 8px 12px;
            }

            .mobile-nav__item .lbl,
            .mobile-nav__sell .lbl {
                font-size: 10px;
            }

            .mobile-nav__iconwrap {
                width: 46px;
            }

            .mobile-nav__item .ico {
                width: 38px;
                height: 38px;
            }

            .mobile-nav__sell {
                padding-bottom: 4px;
            }

            .mobile-nav__sell:hover {
                transform: none;
            }

            .mobile-nav__sell .fab {
                width: 56px;
                height: 56px;
            }

            .mobile-nav__sell .lbl {
                top: 37px;
            }
        }

        /* Mobile paint budget */
        @media (max-width: 820px) {
            body::before {
                position: absolute;
                inset: 0 0 auto 0;
                height: 100svh;
                background-size: 126% 56%, 118% 50%, 108% 28%, 100% 100%;
            }

            .topbar,
            .laravel-topbar,
            .mobile-nav__bar,
            .mhero__quick,
            .mhero__lang,
            .mhero__menu,
            .mhero__bell,
            .ad-price-tag {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }

            .topbar {
                background: rgba(237, 243, 248, 0.97);
            }

            .laravel-topbar {
                background: rgba(245, 250, 255, 0.97);
            }

            .ads-grid .ad-card {
                content-visibility: auto;
                contain: layout paint style;
                contain-intrinsic-size: 340px;
            }

            .ad-card,
            .mhero__search,
            .brand,
            .laravel-brand,
            .laravel-top-search {
                box-shadow: 0 8px 18px rgba(2, 6, 23, 0.06);
            }

            .mobile-nav__bar {
                box-shadow: 0 16px 34px rgba(16, 35, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.80);
            }

            .ad-card {
                transition: border-color .12s ease, background-color .12s ease, box-shadow .12s ease;
            }

            .ad-card:hover {
                transform: none;
                box-shadow: 0 10px 22px rgba(2, 6, 23, 0.08);
            }

            .mhero::before {
                inset: -26px -34px auto -34px;
                height: 180px;
            }

            .mhero__quick,
            .mhero__menu,
            .mhero__lang,
            .mhero__bell {
                box-shadow: 0 8px 18px rgba(12, 22, 36, 0.10);
            }

            .mhero__quick:hover,
            .mhero__lang:hover,
            .mhero__menu:hover,
            .mhero__bell:hover {
                transform: none;
                box-shadow: 0 8px 18px rgba(12, 22, 36, 0.10);
            }

            .mhero__search .flt,
            .mhero__search .flt.is-active {
                box-shadow: 0 6px 14px rgba(17, 24, 39, 0.10);
            }
        }

        @media (hover: none), (pointer: coarse) {
            .ad-card,
            .mhero__quick,
            .mhero__lang,
            .mhero__menu,
            .mhero__bell,
            .mhero__search .flt,
            .mobile-nav__sell,
            .mobile-nav__item,
            .hero__link,
            .btn,
            .iconbtn {
                transition-property: background-color, border-color, color, opacity, box-shadow;
                transition-duration: .12s;
            }

            .ad-card:hover,
            .hero__link:hover,
            .btn:hover,
            .iconbtn:hover,
            .mhero__quick:hover,
            .mhero__lang:hover,
            .mhero__menu:hover,
            .mhero__bell:hover,
            .mobile-nav__item:hover,
            .mobile-nav__sell:hover {
                transform: none;
            }
        }
    

@media (min-width: 821px) {
    html {
        scroll-padding-top: 0;
    }

    body::before,
    .topbar::before,
    .topbar::after,
    .topbar>#menu::before,
    .topbar>#menu::after,
    .topbar__inner::before,
    .topbar__inner::after {
        content: none !important;
        display: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    body,
    body.has-mobile-header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    main#site-main.container {
        padding-top: 0;
    }

    .topbar {
        position: sticky;
        top: 0;
        inset-block-start: 0;
        margin: 0 !important;
        padding-top: 0 !important;
        padding: 0;
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.72);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        isolation: auto;
    }

    body>.topbar,
    .mobile-header+.topbar {
        margin-top: 0 !important;
    }

    .topbar>#menu {
        position: static !important;
        top: auto !important;
        margin: 0 !important;
        padding-top: 0 !important;
    }

    .topbar__inner {
        position: static;
        max-width: 1248px;
        min-height: auto;
        padding: 14px 18px;
        gap: 16px;
        grid-template-columns: auto minmax(320px, 1fr) auto;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .topbar__subnav,
    .topbar__navlist,
    .topbar__submeta {
        display: none !important;
        content: none !important;
    }
}

@media (min-width: 821px) and (max-width: 1100px) {
    html {
        scroll-padding-top: 0;
    }

    .topbar {
        padding: 0;
    }

    .topbar__inner {
        padding: 12px 16px;
        gap: 12px;
        grid-template-columns: auto minmax(220px, 1fr) auto;
    }
}

/* ============================================================
   TOUCH-TARGET COMPLIANCE (WCAG 2.5.5 — minimum 44×44 px)
   All interactive controls that were below 44px on touch screens
   now meet the minimum. Visual size is preserved via padding/
   negative-margin tricks so layout is unaffected.
   ============================================================ */

/* Search clear ("×") button — was 34×34 */
.search__clear,
.pick-search__clear {
    width: 44px;
    height: 44px;
}

/* Notification popover close — was 34×34 */
.notif-popover__close {
    width: 44px;
    height: 44px;
}

/* ============================================================
   TABLET TYPOGRAPHY (641px – 899px)
   Fixed px font sizes on mid-range screens were unchanged from
   mobile. This slab adds graduated scaling for the gap range.
   ============================================================ */
@media (min-width: 641px) and (max-width: 899px) {
    /* Ad card body */
    .ad-title  { font-size: 15px; }
    .ad-desc   { font-size: 13px; }
    .ad-meta-chip__text { font-size: 12px; }

    /* Notification / feed items */
    .notif-item__title  { font-size: 14px; }
    .notif-item__body   { font-size: 13px; }

    /* Topbar search input */
    .topbar-search__input { font-size: 15px; }

    /* Section headings */
    .section-head__title { font-size: clamp(15px, 1.8vw, 18px); }

    /* Modal sheet heading */
    .modal__title { font-size: clamp(16px, 2vw, 20px); }

}

/* ============================================================
   PRINT STYLES — prevents blank/broken print output
   ============================================================ */
@media print {
    .topbar,
    .mobile-header,
    .mobile-side-menu,
    .notif-popover__panel,
    .modal__backdrop,
    .modal__sheet,
    .home-modal,
    .ad-price-tag,
    .fav-btn {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #555;
    }

    .ad-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 12pt;
    }
}
