/* ========================================
   KAVO HEADER - Premium Minimalista
   Inspirado em Kavak/Apple/Fintech
   ======================================== */

.kavo-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    --kavo-blue: #0F766E;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.kavo-header .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: visible;
}

/* ========================================
   KAVO TOPBAR — New unified desktop header
   Layout: [Logo Nav Tabs] [Search] [Country Notif Profile]
   ======================================== */
.kavo-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    width: 100%;
}

.kavo-topbar__left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.kavo-topbar__logo {
    flex-shrink: 0;
    margin: 0 2px 0 0;
}
.kavo-topbar__logo img {
    height: 28px;
    width: auto;
}

.kavo-topbar__tabs {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.94);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 8px 22px rgba(15, 23, 42, 0.05);
}

.kavo-topbar__tab,
.kavo-topbar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.kavo-topbar__tab i,
.kavo-topbar__link i {
    font-size: 0.82rem;
    line-height: 1;
}

.kavo-topbar__tab .bi-journal-text {
    transform: translateY(1px);
}

.kavo-topbar__tab:hover,
.kavo-topbar__tab:focus-visible,
.kavo-topbar__link:hover,
.kavo-topbar__link:focus-visible {
    color: #0F766E;
    background: #ffffff;
    border-color: rgba(15, 118, 110, 0.18);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
    outline: none;
    transform: translateY(-1px);
}

.kavo-topbar__link.is-active {
    color: #0F766E;
    font-weight: 600;
}

.kavo-topbar__tab--home {
    animation: kavoTopbarTabEnter 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes kavoTopbarTabEnter {
    from {
        opacity: 0;
        transform: translateX(-8px) scale(0.96);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.kavo-topbar__sell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #065f46 0%, #009E6B 100%);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 14px 28px rgba(0, 135, 90, .24);
    white-space: nowrap;
    line-height: 1.2;
}
.kavo-topbar__sell-btn:hover {
    background: linear-gradient(135deg, #064E3B 0%, #065f46 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 135, 90, .3);
    transform: translateY(-1px);
}

.kavo-topbar__sell-btn.kavo-topbar__tab {
    min-height: 30px;
    padding: 0 12px;
    background: linear-gradient(135deg, #065f46 0%, #009E6B 100%);
    border-color: #065f46;
    box-shadow: 0 14px 28px rgba(0, 135, 90, .18);
    color: #fff;
}

.kavo-topbar__sell-btn.kavo-topbar__tab:hover,
.kavo-topbar__sell-btn.kavo-topbar__tab:focus-visible {
    background: linear-gradient(135deg, #064E3B 0%, #065f46 100%);
    border-color: #064E3B;
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 135, 90, .24);
}

.kavo-topbar__raiox-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 32px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.35);
    background: rgba(15, 118, 110, 0.08);
    color: #0f766e;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.kavo-topbar__raiox-btn.kavo-topbar__tab {
    min-height: 30px;
    padding: 0 11px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: #334155;
}

.kavo-topbar__raiox-btn.kavo-topbar__tab:hover,
.kavo-topbar__raiox-btn.kavo-topbar__tab:focus-visible {
    background: #ffffff;
    border-color: rgba(15, 118, 110, 0.18);
    color: #0F766E;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.kavo-topbar__tab--ai {
    color: #0f766e;
}

.kavo-topbar__ai-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kavo-topbar__raiox-btn:hover,
.kavo-topbar__raiox-btn:focus-visible {
    background: rgba(15, 118, 110, 0.13);
    border-color: rgba(15, 118, 110, 0.55);
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.18);
    color: #065f46;
    outline: none;
    transform: translateY(-1px);
}

.kavo-topbar__btn--central {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569 !important;
    font-weight: 400;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
    align-self: center;
    vertical-align: middle;
    margin: 0;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.kavo-topbar__btn--central:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b !important;
    transform: none;
    box-shadow: none;
    text-decoration: none;
}

.kavo-topbar__btn--central i {
    font-size: 0.9rem;
    line-height: 1;
    display: block;
}

.kavo-topbar__btn--central span {
    display: none;
}

/* Center — Search */
.kavo-topbar__center {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}
.kavo-topbar__search-form {
    width: 100%;
    max-width: 420px;
}
.kavo-topbar__search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 14px 0 36px;
    height: 40px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.kavo-topbar__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}
.kavo-topbar__search:focus-within {
    border-color: #0F766E;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15,118,110,.08);
}
.kavo-topbar__search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    color: #1f2937;
    outline: none;
    padding: 0;
    height: 100%;
}
.kavo-topbar__search-input::placeholder {
    color: #94a3b8;
}
.kavo-topbar__search-ai {
    display: none;
}

/* Right — Country / Notification / User / Auth buttons */
.kv-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.kv-topbar__right > * {
    flex: 0 0 auto;
    align-self: center;
}

/* notification-bell badge overflows right by 2px; compensate so it doesn't
   visually bleed into the next sibling. Agora o grid do .kv-topbar__right
   cuida do gap uniformemente, então zeramos este margin. */
.kv-topbar__right .notification-bell {
    margin-right: 0;
}

.kavo-topbar__country,
.kv-topbar__notification,
.kavo-topbar__user {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.kavo-topbar__country .kavo-country-switcher__label {
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 5px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
}
.kavo-topbar__country .kavo-country-switcher__flag {
    width: 18px;
    height: 18px;
    border-radius: 999px;
}
.kavo-topbar__country .kavo-country-switcher__menu {
    top: calc(100% + 6px);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
}

.kavo-topbar__user {
    position: relative;
}
.kavo-topbar__user-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: auto;
    min-height: 36px;
    padding: 4px 4px 4px 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 999px;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    overflow: visible;
}
.kavo-topbar__user-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.kavo-topbar__user-icon {
    font-size: 1.1rem;
    color: #64748b;
}
.kavo-topbar__user-btn .kavo-header__user-name {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.kavo-topbar__user-btn .kavo-header__user-avatar {
    width: 34px; height: 34px;
    border-radius: 999px;
    background: rgba(20,160,122,0.15);
    border: none;
    color: #14A07A;
    font-weight: 700;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}
.kavo-topbar__user-btn .kavo-header__user-avatar-img {
    border-radius: 999px;
    width: 34px; height: 34px;
    object-fit: cover;
}

.kavo-topbar__user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 300px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15,23,42,.12);
    background: #fff;
    z-index: 200;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: #475569;
    gap: 10px;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item:hover {
    background: #f8fafc;
    color: #1e293b;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item i {
    width: 16px;
    font-size: 0.95rem;
    color: #a0aec0;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--danger { color: #ef4444; }
.kavo-topbar__user-dropdown .kavo-dropdown-item--danger:hover { background: #fef2f2; }
.kavo-topbar__user-dropdown .kavo-dropdown-item--upgrade {
    background: #14A07A;
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--upgrade:hover {
    background: #0d8f6c !important;
    color: #fff !important;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--upgrade i {
    color: rgba(255,255,255,.8) !important;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--plan-top {
    background: rgba(20,160,122,.08);
    color: #0d7a5e !important;
    font-weight: 600;
    border-radius: 10px;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--plan-top:hover {
    background: rgba(20,160,122,.14) !important;
    color: #0d7a5e !important;
}
.kavo-topbar__user-dropdown .kavo-dropdown-item--plan-top i {
    color: #14A07A !important;
}

.kv-topbar__user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s;
    position: relative;
    flex: 0 0 auto;
    -webkit-tap-highlight-color: transparent;
}

.kv-topbar__user:hover {
    background: #f8fafc;
}

.kv-topbar__user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(20,160,122,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14A07A;
    font-family: var(--kv-font-display, inherit);
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
    flex-shrink: 0;
}

.kv-topbar__user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.kv-topbar__user-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1e293b;
}

.kv-topbar__user-name span:last-child {
    font-size: 0.65rem;
    line-height: 1;
    color: #475569;
}

.kv-topbar__user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 236px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 14px;
    box-shadow: 0 2px 4px rgba(15,23,42,.04), 0 18px 48px -12px rgba(15,23,42,.16);
    padding: 6px;
    z-index: 200;
    transform-origin: top right;
}

.kv-topbar__user-dropdown a,
.kv-topbar__user-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: #334155;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    text-decoration: none;
}

.kv-topbar__user-dropdown a:hover,
.kv-topbar__user-dropdown button:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.kv-topbar__user-dropdown a:hover i,
.kv-topbar__user-dropdown button:hover i {
    color: #0F766E;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu,
.kavo-dropdown-menu.kv-topbar__user-dropdown.kv-dealer-profile-menu {
    min-width: 248px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .14), 0 6px 18px rgba(15, 23, 42, .07);
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu a,
.kv-topbar__user-dropdown.kv-dealer-profile-menu button {
    min-height: 38px;
    padding: 9px 10px;
    border-radius: 11px;
    color: #334155;
    font-size: .8125rem;
    font-weight: 650;
    gap: 10px;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu a:hover,
.kv-topbar__user-dropdown.kv-dealer-profile-menu button:hover {
    background: #f6faf8;
    color: #0f172a;
    transform: translateX(1px);
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu i {
    width: 18px;
    color: #64748b;
    text-align: center;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .divider {
    height: 1px;
    margin: 7px 2px;
    background: rgba(148, 163, 184, .24);
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--enterprise {
    background: linear-gradient(135deg, #007f5f 0%, #0a6c55 100%);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(0, 127, 95, .22);
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--enterprise:hover {
    background: linear-gradient(135deg, #008a68 0%, #075f4b 100%);
    color: #fff !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--enterprise i {
    color: rgba(255, 255, 255, .9) !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--plan-current {
    align-items: center;
    background: rgba(0, 127, 95, .08);
    color: #0f766e !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--plan-current:hover {
    background: rgba(0, 127, 95, .13);
    color: #0f766e !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link--plan-current i {
    color: #0f766e !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
    line-height: 1.15;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .kv-menu-link__content small {
    overflow: hidden;
    color: rgba(15, 118, 110, .72);
    font-size: .68rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .danger {
    color: #dc2626 !important;
}

.kv-topbar__user-dropdown.kv-dealer-profile-menu .danger:hover {
    background: #fef2f2;
    color: #b91c1c !important;
}

html.raiox-popup-open,
html.raiox-popup-open body {
    overflow: hidden;
}

.raiox-popup {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.raiox-popup[hidden] {
    display: none !important;
}

.raiox-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(8px);
    animation: raioxBackdropIn 0.24s ease both;
}

.raiox-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, calc(100vw - 32px));
    outline: none;
    animation: raioxDialogIn 0.34s cubic-bezier(0.2, 0.85, 0.24, 1) both;
    transform-origin: center;
}

.raiox-popup__close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.raiox-popup__close:hover,
.raiox-popup__close:focus-visible {
    color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
    outline: none;
}

.raiox-popup .raiox-banner {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    min-height: auto;
    max-height: calc(100vh - 48px);
    aspect-ratio: auto;
    padding: 30px;
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.14) 0 110px, transparent 112px),
        radial-gradient(circle at 10% 104%, rgba(255, 255, 255, 0.10) 0 130px, transparent 132px),
        linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
    border: 1px solid rgba(209, 250, 229, 0.22);
    box-shadow: 0 28px 70px rgba(4, 120, 87, 0.32);
}

.raiox-popup .raiox-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 38%, rgba(255,255,255,0.08));
    opacity: 0.65;
}

.raiox-popup .raiox-left,
.raiox-popup .raiox-pills,
.raiox-popup .raiox-details,
.raiox-popup .raiox-trust,
.raiox-popup .raiox-cta {
    position: relative;
    z-index: 1;
}

.raiox-popup .raiox-left {
    display: grid;
    align-items: start;
    justify-items: start;
    gap: 14px;
    min-width: 0;
}

.raiox-popup .raiox-icon-wrap {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #bbf7d0;
}

.raiox-popup .raiox-icon-wrap svg {
    width: 27px;
    height: 27px;
}

.raiox-popup .raiox-copy {
    min-width: 0;
}

.raiox-popup .raiox-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.32);
    color: #d1fae5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.raiox-popup .raiox-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.68rem;
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: 0;
}

.raiox-popup .raiox-sub {
    margin: 10px 0 0;
    max-width: 440px;
    color: rgba(236, 253, 245, 0.86);
    font-size: 0.93rem;
    line-height: 1.42;
}

.raiox-popup .raiox-note {
    margin: 8px 0 0;
    max-width: 460px;
    color: rgba(236, 253, 245, 0.72);
    font-size: 0.82rem;
    line-height: 1.42;
}

.raiox-popup .raiox-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 7px;
    width: 100%;
    justify-content: stretch;
}

.raiox-popup .raiox-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: normal;
}

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

.raiox-popup .raiox-detail {
    min-height: 76px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.raiox-popup .raiox-detail strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.15;
}

.raiox-popup .raiox-detail span {
    display: block;
    color: rgba(236, 253, 245, 0.76);
    font-size: 0.76rem;
    line-height: 1.32;
}

.raiox-popup .raiox-trust {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 13px;
    background: rgba(6, 78, 59, 0.30);
    color: rgba(236, 253, 245, 0.84);
    font-size: 0.79rem;
    font-weight: 650;
    line-height: 1.3;
}

.raiox-popup .raiox-trust i {
    flex: 0 0 auto;
    color: #bbf7d0;
    font-size: 1rem;
}

.raiox-popup .raiox-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.raiox-popup .raiox-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.raiox-popup .raiox-price {
    text-align: left;
    white-space: nowrap;
}

.raiox-popup .raiox-price__label {
    display: block;
    color: rgba(236, 253, 245, 0.7);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.raiox-popup .raiox-price__value {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.raiox-popup .raiox-btn-primary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 14px;
    background: #ffffff;
    color: #064e3b;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(4, 120, 87, 0.28);
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.raiox-popup .raiox-btn-primary:hover,
.raiox-popup .raiox-btn-primary:focus-visible {
    color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(4, 120, 87, 0.36);
    outline: none;
}

@keyframes raioxBackdropIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes raioxDialogIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.965);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .raiox-popup .raiox-banner {
        gap: 18px;
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .raiox-popup {
        align-items: end;
        padding: 12px;
    }

    .raiox-popup__dialog {
        width: 100%;
    }

    .raiox-popup__close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .raiox-popup .raiox-banner {
        min-height: auto;
        aspect-ratio: auto;
        border-radius: 20px;
        padding: 24px 18px 18px;
    }

    .raiox-popup .raiox-left {
        align-items: flex-start;
        gap: 14px;
        padding-right: 34px;
    }

    .raiox-popup .raiox-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .raiox-popup .raiox-title {
        font-size: 1.18rem;
    }

    .raiox-popup .raiox-sub {
        font-size: 0.86rem;
    }

    .raiox-popup .raiox-pills {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .raiox-popup .raiox-details {
        grid-template-columns: 1fr;
    }

    .raiox-popup .raiox-detail {
        min-height: auto;
    }

    .raiox-popup .raiox-pill {
        justify-content: center;
        width: 100%;
    }

    .raiox-popup .raiox-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .raiox-popup .raiox-btn-primary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kavo-topbar__tab--home {
        animation: none;
    }

    .kavo-topbar__tab,
    .kavo-topbar__link,
    .kavo-topbar__sell-btn,
    .kavo-topbar__raiox-btn {
        transition: none;
    }

    .raiox-popup__backdrop,
    .raiox-popup__dialog {
        animation: none;
    }
}

.kv-topbar__user-dropdown i {
    width: 16px;
    font-size: 0.95rem;
    color: #94a3b8;
    transition: color .15s ease;
}

.kv-topbar__user-dropdown .divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 2px;
}

.kv-topbar__user-dropdown .danger {
    color: #ef4444;
}

.kv-topbar__user-dropdown .danger:hover {
    background: #fef2f2;
}

.kv-topbar__user-dropdown .accent {
    color: #0F766E;
    font-weight: 600;
}

.kv-topbar__user-dropdown .accent:hover {
    background: #f0fdf4;
}

.kv-topbar__user-dropdown .kv-upgrade-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff !important;
    background: #14A07A !important;
    width: 100%;
    border: none;
    text-align: left;
    text-decoration: none;
    transition: background 0.15s;
}

.kv-topbar__user-dropdown .kv-upgrade-btn:hover {
    background: #0d8f6c !important;
    color: #fff !important;
}

.kv-topbar__user-dropdown .kv-upgrade-btn i {
    color: rgba(255,255,255,.8) !important;
}

.kv-topbar__user-dropdown .kv-upgrade-btn--top {
    background: rgba(20,160,122,.12) !important;
    color: #0d7a5e !important;
    font-weight: 600;
}

.kv-topbar__user-dropdown .kv-upgrade-btn--top:hover {
    background: rgba(20,160,122,.2) !important;
    color: #0b6b52 !important;
}

.kv-topbar__user-dropdown .kv-upgrade-btn--top i {
    color: #14A07A !important;
}

.kv-menu-avatar-chip {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(13,107,82,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0F766E;
    font-family: var(--kv-font-display, inherit);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
    overflow: hidden;
}

.kv-menu-avatar-chip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.kv-menu-avatar-chip span {
    line-height: 1;
}

.kavo-dropdown-avatar {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,160,122,0.15);
}
.kavo-dropdown-avatar__img {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    object-fit: cover;
}
.kavo-dropdown-avatar__initials {
    font-size: 0.65rem;
    font-weight: 700;
    color: #14A07A;
    line-height: 1;
}

/* Auth buttons — outline + solid pill */
.kavo-topbar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
    line-height: 1.2;
}
.kavo-topbar__btn--outline {
    background: transparent;
    color: #0F766E;
    border: 1.5px solid #0F766E;
}
.kavo-topbar__btn--outline:hover {
    background: rgba(15,118,110,.06);
    color: #0F766E;
}
.kavo-topbar__btn--solid {
    background: linear-gradient(135deg, #0F766E 0%, #065f46 100%);
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: 0 2px 10px rgba(15,118,110,.3);
}
.kavo-topbar__btn--solid:hover {
    background: linear-gradient(135deg, #0d9488 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(15,118,110,.45);
    transform: translateY(-1px);
}

/* Responsive — topbar shrinks */
@media (max-width: 1399.98px) {
    .kavo-topbar__search-form { max-width: 340px; }
    .kavo-topbar__user-btn .kavo-header__user-name { max-width: 120px; }
    .kavo-topbar { gap: 10px; }
    .kavo-topbar__tab,
    .kavo-topbar__link,
    .kavo-topbar__sell-btn.kavo-topbar__tab,
    .kavo-topbar__raiox-btn.kavo-topbar__tab {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 1199.98px) {
    .kavo-topbar { display: none; }
}

.kavo-header__nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1.25rem;
    width: 100%;
}

.kavo-header__left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    justify-content: flex-start;
    min-width: 0;
}

.kavo-header__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Logo */
.kavo-header__logo {
    flex-shrink: 0;
}
.kavo-header__logo img {
    height: 34px;
    width: auto;
}

/* Menu Principal */
.kavo-header__nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-left: 1rem;
}
.kavo-header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 0;
}
.kavo-header__nav-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1;
}
.kavo-header__nav-link:hover {
    color: #0F766E;
}
.kavo-header__nav-link.is-active {
    color: #0F766E;
    font-weight: 600;
}
.kavo-header__btn-sell {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: #0F766E;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
}
.kavo-header__btn-sell:hover {
    background: #0d665f;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
    transform: translateY(-1px);
}
.kavo-header__nav-caret {
    font-size: 0.9rem;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
}
.kavo-header__nav-item:hover .kavo-header__nav-caret {
    color: #0F766E;
    transform: rotate(180deg);
}
.kavo-header__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    pointer-events: none;
    z-index: 50;
}
.kavo-header__dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}
.kavo-header__dropdown a {
    display: block;
    padding: 0.65rem 1rem;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.kavo-header__dropdown a:hover {
    background: #F9FAFB;
    color: #0F766E;
}
.kavo-header__nav-item:hover .kavo-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
}
.kavo-header__nav-item:focus-within .kavo-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
}
.kavo-header__sell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.35rem;
    border-radius: 999px;
    border: none;
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #065f46 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 16px rgba(15,118,110,.5), inset 0 1px 0 rgba(255,255,255,.15);
    letter-spacing: -.01em;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.kavo-header__sell-btn:hover {
    background: linear-gradient(135deg, #0d9488 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(15,118,110,.65);
    transform: translateY(-1px);
}
.kavo-header__sell-btn.is-active {
    background: #0F766E;
    color: #fff;
}

.kavo-header__actions a.kavo-header__register,
.kavo-offcanvas-actions a.kavo-header__register {
    background: linear-gradient(135deg, #0F766E 0%, #065f46 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 14px rgba(15,118,110,.4) !important;
}
.kavo-header__actions a.kavo-header__login,
.kavo-offcanvas-actions a.kavo-header__login {
    background: transparent !important;
    color: #0F766E !important;
    border: 1.5px solid #0F766E !important;
}

/* Buscador Central - Ultra Modern Pill */
.kavo-header__center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
.kavo-header__search {
    width: 100%;
    max-width: 440px;
    position: relative;
}
.search-input-group {
    position: relative;
    width: 100%;
}
.search-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translate(50%, -50%);
    display: none;
}
.kavo-header__badge--compare {
    background: #0F766E;
    width: 12px;
    min-width: 12px;
    height: 12px;
    padding: 0;
    font-size: 0;
    line-height: 1;
}
.search-ai-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #0F766E;
    pointer-events: none;
    animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}
.search-input {
    width: 100%;
    padding: 10px 44px 10px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.875rem;
    color: #1f2937;
    transition: all 0.25s ease;
    background: #f7f9fc;
}
.search-input::placeholder { color: #94a3b8; }
.search-input:focus {
    outline: none;
    border-color: #0F766E;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15,118,110,.1);
}
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(15, 118, 110, 0.12);
    padding: 8px;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
}
.search-suggestions.show { display: block; }
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s;
}
.suggestion-item:hover {
    background: #f7fafc;
}
.suggestion-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e6f4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F766E;
}
.suggestion-item .info .name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}
.suggestion-item .info .type {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* AI Scanning Animation */
.ai-scanning {
    padding: 20px;
    text-align: center;
}
.ai-scanning__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.ai-scanning__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0F766E 0%, #0d665f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    animation: aiPulse 1.5s ease-in-out infinite;
}
@keyframes aiPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(15, 118, 110, 0); }
}
.ai-scanning__text {
    text-align: left;
    flex: 1;
}
.ai-scanning__title {
    font-weight: 600;
    color: #0f3460;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.ai-scanning__subtitle {
    font-size: 0.8rem;
    color: #0F766E;
}
.ai-scanning__progress {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}
.ai-scanning__bar {
    height: 100%;
    background: linear-gradient(90deg, #0F766E 0%, #0d665f 100%);
    animation: aiProgress 2s ease-in-out;
}
@keyframes aiProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
.ai-scanning__lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ai-scanning__line {
    height: 32px;
    background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: aiScan 1.5s ease-in-out infinite;
}
.ai-scanning__line:nth-child(1) { animation-delay: 0s; width: 100%; }
.ai-scanning__line:nth-child(2) { animation-delay: 0.1s; width: 85%; }
.ai-scanning__line:nth-child(3) { animation-delay: 0.2s; width: 95%; }
.ai-scanning__line:nth-child(4) { animation-delay: 0.3s; width: 75%; }
.ai-scanning__line:nth-child(5) { animation-delay: 0.4s; width: 90%; }
@keyframes aiScan {
    0% { background-position: 200% 0; opacity: 0.3; }
    50% { opacity: 1; }
    100% { background-position: -200% 0; opacity: 0.3; }
}

.kavo-search-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.1rem;
    background: #f7f9fc;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    transition: all 0.25s ease;
}
.kavo-search-pill:focus-within {
    background: #fff;
    border-color: #0F766E;
    box-shadow: 0 0 0 3px rgba(15,118,110,.1);
}
.kavo-search-pill__icon {
    color: #94a3b8;
    font-size: 1rem;
    flex-shrink: 0;
}
.kavo-search-pill__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: #1f2937;
    outline: none;
}
.kavo-search-pill__input::placeholder {
    color: #94a3b8;
}
.kavo-search-pill__btn {
    display: none;
}
.kavo-search-pill__ai {
    display: none;
}

/* Autocomplete */
.kavo-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}
.kavo-search-suggestions.show { display: block; }
.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f7fafc;
    transition: background 0.15s;
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: #f7fafc; }
.suggestion-item .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
}
.suggestion-item .info { flex: 1; }
.suggestion-item .name { font-weight: 600; font-size: 0.875rem; color: #2d3748; }
.suggestion-item .type { font-size: 0.75rem; color: #a0aec0; }

/* Geo Location Button */
.kavo-geo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 24px;
    border: none;
    background: linear-gradient(135deg, #065f46 0%, #009E6B 100%);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.kavo-geo-btn:hover {
    background: linear-gradient(135deg, #064E3B 0%, #065f46 100%);
    box-shadow: 0 10px 22px rgba(0, 135, 90, .24);
    transform: translateY(-1px);
}
.kavo-geo-btn__icon {
    font-size: 1rem;
    flex-shrink: 0;
}
.kavo-geo-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}
.kavo-geo-btn__label {
    font-size: 0.625rem;
    font-weight: 400;
    opacity: 0.85;
}
.kavo-geo-btn__city {
    font-size: 0.8125rem;
    font-weight: 700;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.kavo-geo-btn--mobile {
    padding: 4px 10px;
    border-radius: 20px;
    gap: 4px;
}
.kavo-geo-btn--mobile .kavo-geo-btn__icon {
    font-size: 0.875rem;
}
.kavo-geo-btn--mobile .kavo-geo-btn__city {
    font-size: 0.6875rem;
    max-width: 80px;
}
/* Geo Dropdown */
.kavo-geo-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2100;
    padding: 16px;
    animation: geoDropIn 0.15s ease-out;
}
.kavo-geo-dropdown--mobile {
    position: static;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    animation: none;
}
@keyframes geoDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.kavo-geo-dropdown__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.kavo-geo-dropdown__search {
    position: relative;
    margin-bottom: 10px;
}
.kavo-geo-dropdown__search input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}
.kavo-geo-dropdown__search input:focus {
    border-color: #0F766E;
}
.kavo-geo-dropdown__search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.875rem;
    pointer-events: none;
}
.kavo-geo-dropdown__results {
    max-height: 220px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}
.kavo-geo-dropdown__results::-webkit-scrollbar { width: 4px; }
.kavo-geo-dropdown__results::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
.kavo-geo-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.875rem;
    color: #374151;
}
.kavo-geo-dropdown__item:hover {
    background: #e6f4f1;
}
.kavo-geo-dropdown__item i {
    color: #0F766E;
    font-size: 1rem;
    flex-shrink: 0;
}
.kavo-geo-dropdown__item-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.kavo-geo-dropdown__item-city {
    font-weight: 600;
    color: #111827;
}
.kavo-geo-dropdown__item-dept {
    font-size: 0.75rem;
    color: #6b7280;
}
.kavo-geo-dropdown__current {
    display: block;
    padding: 10px 8px;
    border-radius: 8px;
    background: #e6f4f1;
    margin-bottom: 10px;
    font-size: 0.8125rem;
}
.kavo-geo-dropdown__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.kavo-geo-dropdown__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: #0F766E;
    border: 1px solid rgba(15, 118, 110, 0.2);
    max-width: 100%;
}
.kavo-geo-dropdown__chip-label {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kavo-geo-dropdown__chip-remove {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.kavo-geo-dropdown__chip-remove:hover {
    color: #ef4444;
}
.kavo-geo-dropdown__current-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0F766E;
    font-weight: 600;
    min-width: 0;
}
.kavo-geo-dropdown__current-info i {
    font-size: 1.1rem;
    flex-shrink: 0;
}
.kavo-geo-dropdown__current-info span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.kavo-geo-dropdown__clear {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.15s;
}
.kavo-geo-dropdown__clear:hover { color: #ef4444; }
.kavo-geo-dropdown__actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}
.kavo-geo-dropdown__btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
}
.kavo-geo-dropdown__btn:hover { background: #f9fafb; }
.kavo-geo-dropdown__btn--primary {
    background: linear-gradient(135deg, #0F766E, #0D6560);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}
.kavo-geo-dropdown__btn--primary:hover { background: linear-gradient(135deg, #0D6560, #0b5752); }
.kavo-geo-dropdown__empty {
    text-align: center;
    padding: 16px 8px;
    color: #9ca3af;
    font-size: 0.8125rem;
}

/* Área de Ações */
.kavo-header__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.kavo-header__nav--public-topbar {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.625rem 0;
}

.kavo-public-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    width: 100%;
}

.kavo-public-topbar__menu {
    position: relative;
    flex-shrink: 0;
}

.kavo-public-topbar__hamburger {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.kavo-public-topbar__hamburger:hover {
    background: #f8fafc;
    color: #1e293b;
}

.kavo-public-topbar__hamburger i {
    font-size: 1.05rem;
}

.kavo-public-topbar__menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.kavo-public-topbar__menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kavo-public-topbar__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
}

.kavo-public-topbar__menu-item:hover {
    background: #f8fafc;
    color: #1e293b;
}

.kavo-public-topbar__menu-item i {
    font-size: 1rem;
    color: #94a3b8;
}

.kavo-public-topbar__menu-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.kavo-public-topbar__menu-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
}

.kavo-public-topbar__menu-desc {
    font-size: 0.6875rem;
    color: #94a3b8;
}

.kavo-public-topbar__search {
    flex: 1;
    min-width: 220px;
    max-width: 480px;
    margin-right: auto;
}

.kavo-public-topbar__search-shell {
    position: relative;
}

.kavo-public-topbar__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
}

.kavo-public-topbar__search-input {
    width: 100%;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 40px 0 36px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kavo-public-topbar__search-input:focus {
    border-color: #14A07A;
    box-shadow: 0 0 0 3px rgba(20,160,122,0.1);
    background: #ffffff;
}

.kavo-public-topbar__search-input::placeholder {
    color: #94a3b8;
}

.kavo-public-topbar__search-kbd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6875rem;
    color: #94a3b8;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.kavo-public-topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.kavo-public-topbar__icon-btn,
.kavo-public-topbar__notification .notification-bell__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.kavo-public-topbar__icon-btn:hover,
.kavo-public-topbar__notification .notification-bell__btn:hover {
    background: #f8fafc;
    color: #1e293b;
}

.kavo-public-topbar__icon-btn i,
.kavo-public-topbar__notification .notification-bell__icon {
    font-size: 1.05rem;
    width: 18px;
    height: 18px;
}

.kavo-public-topbar__publish-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #0D6B52;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.kavo-public-topbar__publish-btn:hover {
    background: #0A5A44;
    color: #ffffff;
    transform: scale(1.05);
}

.kavo-public-topbar__publish-btn i {
    font-size: 1.1rem;
}

.kavo-public-topbar__notification .notification-bell {
    position: relative;
}

.kavo-public-topbar__notification .notification-bell__badge {
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    background: #F97316;
    border: 2px solid #ffffff;
}

.kavo-public-topbar__notification .notification-bell__dropdown {
    top: calc(100% + 8px);
    right: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.kavo-public-topbar__user {
    position: relative;
}

.kavo-public-topbar__user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 4px 12px;
    border: none;
    background: transparent;
    border-radius: 999px;
    color: #1e293b;
    transition: background 0.2s ease;
}

.kavo-public-topbar__user-btn:hover {
    background: #f8fafc;
}

.kavo-public-topbar__user-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kavo-public-topbar__user-summary .kavo-header__user-name {
    order: 2;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1e293b;
    max-width: 190px;
}

.kavo-public-topbar__user-summary .kavo-header__user-avatar {
    order: 1;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(20,160,122,0.15);
    border: none;
    color: #14A07A;
    font-weight: 700;
    font-size: 13px;
}

.kavo-public-topbar__user-summary .kavo-header__user-avatar i {
    font-size: 0.95rem;
}

.kavo-public-topbar__user-summary .kavo-header__user-avatar-img {
    border-radius: 999px;
}

.kavo-public-topbar__user-caret {
    color: #475569;
    font-size: 0.85rem;
}

.kavo-public-topbar__user-dropdown {
    min-width: 340px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-item {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    color: #475569;
    gap: 12px;
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-item:hover {
    background: #f8fafc;
    color: #1e293b;
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-item i {
    width: 18px;
    font-size: 1rem;
    color: #a0aec0;
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-divider {
    margin: 8px 2px;
    background: #e2e8f0;
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-item--danger {
    color: #ef4444;
}

.kavo-public-topbar__user-dropdown .kavo-dropdown-item--danger:hover {
    background: #FEF2F2;
}

.kavo-public-topbar__country .kavo-country-switcher__label {
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    gap: 6px;
}

.kavo-public-topbar__country .kavo-country-switcher__flag {
    width: 20px;
    height: 20px;
    border-radius: 999px;
}

.kavo-public-topbar__country .kavo-country-switcher__menu {
    top: calc(100% + 8px);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.kavo-public-topbar__country .kavo-country-switcher__item {
    font-size: 0.8125rem;
}

.kavo-country-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.kavo-country-switcher__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 10px;
    height: 36px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.75rem;
    color: #334155;
    line-height: 1;
    user-select: none;
}
.kavo-country-switcher__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}
.kavo-country-switcher__flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kavo-country-switcher__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 100;
}
.kavo-country-switcher.is-open .kavo-country-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.kavo-country-switcher__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}
.kavo-country-switcher__item:hover,
.kavo-country-switcher__item.is-active {
    background: #e6f4f3;
    color: #0f766e;
}
.kavo-header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #64748b;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
    border: none;
    background: transparent;
}
.kavo-header__icon-btn:hover {
    background: #e6f4f3;
    color: #0F766E;
}
.kavo-header__icon-btn i {
    font-size: 1.2rem;
    font-weight: 400;
}
.kavo-header__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botões de Autenticação — menores que Vender */
.kavo-header__btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.38rem 1rem;
    border: 1.5px solid #0F766E;
    color: #0F766E;
    background: transparent;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0;
    white-space: nowrap;
    min-width: 0;
}
.kavo-header__btn-login:hover {
    background: rgba(15,118,110,.06);
    color: #0F766E;
    border-color: #0F766E;
}

.kavo-header__btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 1.1rem;
    background: linear-gradient(135deg, #0F766E 0%, #065f46 100%);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 0.35rem;
    letter-spacing: -.01em;
    white-space: nowrap;
    min-width: 0;
    box-shadow: 0 2px 14px rgba(15,118,110,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.kavo-header__btn-register:hover {
    background: linear-gradient(135deg, #0d9488 0%, #047857 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(15,118,110,.55);
    transform: translateY(-1px);
}

/* User Dropdown */
.kavo-header__user {
    position: relative;
}
.kavo-header__user-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.25rem;
    border: none;
    background: transparent;
    color: #4a5568;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.2s;
}
.kavo-header__user-btn:hover {
    background: #edf2f7;
}
.kavo-header__user-name {
    font-size: 0.85rem;
    font-weight: 300;
    color: #4a5568;
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kavo-header__user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #d4d4d8 100%);
    border: 1px solid #cfe7e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 0.875rem;
    overflow: hidden;
    flex-shrink: 0;
}
.kavo-header__user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Dropdown Menu */
.kavo-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 236px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 4px rgba(15,23,42,.04), 0 18px 48px -12px rgba(15,23,42,.16);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(.97);
    transform-origin: top right;
    transition: opacity .18s ease, transform .22s cubic-bezier(.16,1,.3,1), visibility 0s linear .22s;
    z-index: 1000;
    will-change: transform, opacity;
}
.kavo-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity .2s ease, transform .22s cubic-bezier(.16,1,.3,1), visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
    .kavo-dropdown-menu { transition: opacity .12s linear, visibility 0s linear .12s; transform: none; }
    .kavo-dropdown-menu.show { transform: none; transition: opacity .12s linear, visibility 0s; }
}
.kavo-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.kavo-dropdown-item:hover {
    background: #f7fafc;
    color: #2d3748;
}
.kavo-dropdown-item i {
    font-size: 1rem;
    color: #a0aec0;
}
.kavo-dropdown-divider {
    height: 1px;
    background: #edf2f7;
    margin: 6px 0;
}
.kavo-dropdown-item--danger {
    color: #e53e3e;
}
.kavo-dropdown-item--danger:hover {
    background: #fff5f5;
}
.kavo-dropdown-item--highlight {
    background: linear-gradient(135deg, #e6f4f3 0%, #d2f0ed 100%);
}

@media (max-width: 1399.98px) {
    .kavo-public-topbar__search {
        max-width: 380px;
    }

    .kavo-public-topbar__user-summary .kavo-header__user-name {
        max-width: 140px;
    }

    .kavo-public-topbar__right .kavo-header__btn-login,
    .kavo-public-topbar__right .kavo-header__btn-register {
        padding: 0.38rem 0.85rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 1279.98px) {
    .kavo-public-topbar__search {
        max-width: 320px;
    }

    .kavo-public-topbar__right .kavo-public-topbar__icon-btn:first-child {
        display: none;
    }
}

/* Mobile Header — hidden by default, shown < 1200px */
.kavo-header--mobile {
    display: none;
}

@media (max-width: 1199.98px) {
    .kavo-header--desktop {
        display: none !important;
    }
    .kavo-header--mobile {
        display: block !important;
    }

    /* ========================================
       Mobile Header — 3-line unified layout
       Line 1: Logo + Icons
       Line 2: Pill Search
       Line 3: Geo Locator
       ======================================== */
    .kavo-mh {
        padding: 12px 16px 0;
    }

    /* Line 1 — Logo + Action Icons */
    .kavo-mh__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    .kavo-mh__actions {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .kavo-mh__profile-link {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border-radius: 999px;
        overflow: hidden;
        border: 1px solid #d1d5db;
        background: #f7f8fa;
        -webkit-tap-highlight-color: transparent;
    }
    .kavo-mh__profile-link .kavo-header__user-name {
        display: none;
    }
    .kavo-mh__profile-link .kavo-header__user-avatar {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #111111;
        background: #f3f4f6;
    }
    .kavo-mh__profile-link .kavo-header__user-avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .kavo-mh__profile-link .kavo-header__user-avatar i {
        font-size: 1rem;
    }
    .kavo-mh__profile-link:active,
    .kavo-mh__profile-link:hover {
        background: #eef0f3;
        border-color: #9ca3af;
    }
    .kavo-mh__icon-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        border-radius: 50%;
        color: #0F766E;
        text-decoration: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.15s;
    }
    .kavo-mh__icon-btn:hover,
    .kavo-mh__icon-btn:active {
        background: rgba(15, 118, 110, 0.08);
    }
    .kavo-mh__icon-btn i {
        font-size: 1.5rem;
    }

    .kavo-mh__central-btn {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid #dbe2ea;
        background: #ffffff;
        color: #111827;
        text-decoration: none;
        cursor: pointer;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }
    .kavo-mh__central-btn:hover,
    .kavo-mh__central-btn:active {
        background: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-1px);
    }
    .kavo-mh__central-btn svg {
        width: 17px;
        height: 17px;
        display: block;
    }

    /* Line 2 — Pill Search Bar */
    .kavo-mh__search {
        margin-bottom: 12px;
    }
    .kavo-mh__search .search-autocomplete {
        position: relative;
        width: 100%;
    }
    .kavo-mh__search-pill {
        display: flex;
        align-items: center;
        width: 100%;
        border: 1.5px solid #0F766E;
        border-radius: 50px;
        background: #fff;
        overflow: hidden;
        transition: box-shadow 0.2s ease;
    }
    .kavo-mh__search-pill:focus-within {
        box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
    }
    .kavo-mh__search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 16px;
        font-size: 0.9375rem;
        color: #1f2937;
        outline: none;
        font-family: inherit;
    }
    .kavo-mh__search-input::placeholder {
        color: #9ca3af;
    }
    .kavo-mh__search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: none;
        background: transparent;
        color: #0F766E;
        cursor: pointer;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }
    .kavo-mh__search-btn i {
        font-size: 1.125rem;
    }
    .kavo-mh__search .search-suggestions {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Line 3 — Geo + Quick Links bar */
    .kavo-mh__bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e7eb;
    }
    .kavo-mh-country {
        position: relative;
    }
    .kavo-mh-country__toggle {
        list-style: none;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.38rem 0.82rem;
        border: 1.5px solid #dbe2ea;
        border-radius: 999px;
        background: #fff;
        color: #374151;
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .kavo-mh-country__toggle::-webkit-details-marker { display: none; }
    .kavo-mh-country__toggle i {
        font-size: 0.7rem;
        color: #6b7280;
        transition: transform 0.16s ease;
    }
    .kavo-mh-country[open] .kavo-mh-country__toggle i {
        transform: rotate(180deg);
    }
    .kavo-mh-country__menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: min(280px, 72vw);
        max-height: 50vh;
        overflow-y: auto;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
        padding: 0.4rem;
        z-index: 110;
    }
    .kavo-mh-country__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.55rem;
        padding: 0.52rem 0.65rem;
        border-radius: 10px;
        color: #1f2937;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 700;
    }
    .kavo-mh-country__item:hover,
    .kavo-mh-country__item.is-active {
        background: #e6f4f3;
        color: #0f766e;
    }
    .kavo-mh__geo-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 6px 0;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
    }
    .kavo-mh__geo-icon {
        font-size: 1.125rem;
        color: #0F766E;
        flex-shrink: 0;
    }
    .kavo-mh__geo-text {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.875rem;
        font-weight: 500;
        color: #374151;
    }
    .kavo-mh__geo-text .geo-city-name {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .kavo-mh__geo-caret {
        font-size: 0.7rem;
        color: #6b7280;
        transition: transform 0.2s;
    }
    /* Quick-link icon buttons */
    .kavo-mh__quick-links {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .kavo-mh__quick-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: #0F766E;
        text-decoration: none;
        transition: background 0.15s;
        -webkit-tap-highlight-color: transparent;
    }
    .kavo-mh__quick-link:hover,
    .kavo-mh__quick-link:active {
        background: rgba(15, 118, 110, 0.08);
        color: #0F766E;
    }
    .kavo-mh__quick-link i {
        font-size: 1.2rem;
    }
    
    /* Enlarged Menu Button */
    .kavo-mh__menu-btn {
        width: 48px !important;
        height: 48px !important;
    }
    .kavo-mh__menu-btn i {
        font-size: 1.75rem !important;
    }
    
    /* CTA Buttons in kavo-mh__bar */
    .kavo-mh__cta-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
    }
    .kavo-mh__cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.8125rem;
        font-weight: 600;
        border-radius: 999px;
        text-decoration: none;
        transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        white-space: nowrap;
        flex: 0 1 112px;
    }
    .kavo-mh__cta-btn--primary {
        background: linear-gradient(135deg, #0F766E 0%, #065f46 100%);
        color: #ffffff;
        border: none;
        box-shadow: 0 2px 10px rgba(15,118,110,.35);
    }
    .kavo-mh__cta-btn--primary:hover,
    .kavo-mh__cta-btn--primary:active {
        background: linear-gradient(135deg, #0d9488 0%, #047857 100%);
        transform: translateY(-1px);
        color: #ffffff;
    }
    .kavo-mh__cta-btn--secondary {
        background: transparent;
        color: #0F766E;
        border: 1.5px solid #0F766E;
    }
    .kavo-mh__cta-btn--secondary:hover,
    .kavo-mh__cta-btn--secondary:active {
        background: rgba(15,118,110,.06);
        color: #0F766E;
    }
    .kavo-mh__cta-btn--raiox {
        border: 1.5px solid rgba(15, 118, 110, 0.32);
        background: rgba(15, 118, 110, 0.08);
        color: #0F766E;
        cursor: pointer;
    }
    .kavo-mh__cta-btn--raiox:hover,
    .kavo-mh__cta-btn--raiox:active,
    .kavo-mh__cta-btn--raiox:focus-visible {
        background: rgba(15, 118, 110, 0.14);
        color: #065f46;
        outline: none;
    }
}

@media (min-width: 1200px) {
    .kavo-header--mobile {
        display: none !important;
    }
}

/* Compact Mobile Header for signup/onboarding pages */
@media (max-width: 767px) {
    .kavo-compact-mobile-header .kavo-mh__search,
    .kavo-compact-mobile-header .kavo-mh__bar {
        display: none !important;
    }
    
    .kavo-compact-mobile-header .kavo-mh {
        padding-bottom: 12px;
    }
    
    .kavo-compact-mobile-header .kavo-mh__top {
        margin-bottom: 0;
    }
}

/* Offcanvas customizado - Premium */
.kavo-offcanvas {
    max-width: 320px;
    border-left: none !important;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    z-index: 10000 !important;
}
.kavo-offcanvas .offcanvas-header {
    padding: 16px 20px;
    border-bottom: none;
    align-items: center;
}
.kavo-offcanvas .offcanvas-body {
    padding: 0 20px 20px;
    overflow-y: auto;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
}
/* Geo section inside offcanvas */
.kavo-oc-geo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(15, 118, 110, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.kavo-oc-geo:active { background: rgba(15, 118, 110, 0.16); }
.kavo-oc-geo__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F766E, #0D6560);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.kavo-oc-geo__text {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
}
.kavo-oc-geo__label {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 400;
}
.kavo-oc-geo__city {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kavo-oc-geo__edit {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #9ca3af;
    border-radius: 50%;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}
.kavo-oc-geo__edit:hover { color: #0F766E; background: rgba(15, 118, 110, 0.12); }
/* Search removed from offcanvas - now always visible on mobile */
/* Nav items */
.kavo-offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kavo-offcanvas-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    color: #374151;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

button.kavo-offcanvas-link {
    font-family: inherit;
}
.kavo-offcanvas-link:hover,
.kavo-offcanvas-link:active {
    color: #0F766E;
}
.kavo-offcanvas-link i {
    font-size: 1.15rem;
    color: #9ca3af;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}
.kavo-offcanvas-link .kavo-oc-caret {
    margin-left: auto;
    font-size: 0.8rem;
    color: #9ca3af;
    transition: transform 0.2s;
}
.kavo-offcanvas-link[aria-expanded="true"] .kavo-oc-caret {
    transform: rotate(180deg);
}
.kavo-offcanvas-subnav {
    list-style: none;
    padding: 0 0 0 36px;
    margin: 0;
}
.kavo-offcanvas-subnav a {
    display: block;
    padding: 11px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #f9fafb;
    transition: color 0.15s;
}
.kavo-offcanvas-subnav a:last-child {
    border-bottom: none;
}
.kavo-offcanvas-subnav a:hover {
    color: #0F766E;
}
.kavo-oc-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 8px 0;
}
/* Profile Card in Offcanvas */
.kavo-oc-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(15, 118, 110, 0.04) 100%);
    border-radius: 16px;
    margin-bottom: 8px;
}
.kavo-oc-profile__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F766E, #0D6560);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}
.kavo-oc-profile__info {
    flex: 1;
    min-width: 0;
}
.kavo-oc-profile__name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.kavo-oc-profile__type {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0F766E;
}

/* Auth buttons in offcanvas for logged-out users */
.kavo-oc-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}
.kavo-oc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}
.kavo-oc-btn--primary {
    background: linear-gradient(135deg, #0F766E 0%, #065f46 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 14px rgba(15,118,110,.4);
}
.kavo-oc-btn--primary:hover,
.kavo-oc-btn--primary:active {
    background: linear-gradient(135deg, #0d9488 0%, #047857 100%);
    transform: translateY(-1px);
    color: #ffffff;
}
.kavo-oc-btn--secondary {
    background: transparent;
    color: #0F766E;
    border: 1.5px solid #0F766E;
}
.kavo-oc-btn--secondary:hover,
.kavo-oc-btn--secondary:active {
    background: rgba(15,118,110,.06);
    color: #0F766E;
}

/* Offcanvas Link Variations */
.kavo-offcanvas-link--highlight {
    color: #0F766E !important;
    font-weight: 600 !important;
}
.kavo-offcanvas-link--highlight i {
    color: #0F766E !important;
}
.kavo-offcanvas-link--central {
    color: #111827 !important;
    font-weight: 700 !important;
    border-bottom: 1px solid rgba(17, 24, 39, 0.06) !important;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.04), rgba(15, 23, 42, 0.02));
    border-radius: 16px;
    margin: 10px 0 4px;
    padding: 14px 14px;
}
.kavo-offcanvas-link--central:hover,
.kavo-offcanvas-link--central:active {
    color: #111827 !important;
    background: rgba(17, 24, 39, 0.06);
}
.kavo-offcanvas-link--central i {
    color: #111827 !important;
}
.kavo-offcanvas-link--central svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: #111827;
}
.kavo-offcanvas-link--danger {
    color: #ef4444 !important;
}
.kavo-offcanvas-link--danger i {
    color: #ef4444 !important;
}

/* Updated offcanvas link with span wrapper */
.kavo-offcanvas-link > span:last-child {
    flex: 1;
}

/* Badge in offcanvas */
.kavo-oc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    margin-left: auto;
}
