.mkcav2-widget,
.mkcav2-widget * {
    box-sizing: border-box;
}

.mkcav2-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    color: #172033;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mkcav2-widget--left {
    right: auto;
    left: 22px;
}

.mkcav2-launcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    color: #fff;
    background: var(--mkcav2-brand);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .22);
    cursor: pointer;
}

.mkcav2-launcher::before,
.mkcav2-launcher::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 2px solid var(--mkcav2-brand);
    border-radius: 50%;
    opacity: .45;
    animation: mkcav2LauncherBreath 2.2s ease-out infinite;
}

.mkcav2-launcher::after {
    inset: -13px;
    animation-delay: .55s;
    opacity: .24;
}

.mkcav2-launcher > span {
    position: relative;
    z-index: 1;
}

.mkcav2-launcher__status {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 13px;
    height: 13px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

@keyframes mkcav2LauncherBreath {
    0% {
        transform: scale(.86);
        opacity: .42;
    }
    70% {
        transform: scale(1.12);
        opacity: 0;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

.mkcav2-launcher svg,
.mkcav2-panel svg,
.mkcav2-contact-list svg,
.mkcav2-social-links svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mkcav2-launcher svg {
    width: 25px;
    height: 25px;
}

.mkcav2-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(390px, calc(100vw - 28px));
    max-height: min(680px, calc(100vh - 110px));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15,23,42,.28);
}

.mkcav2-widget--left .mkcav2-panel {
    right: auto;
    left: 0;
}

.mkcav2-panel__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--mkcav2-brand), #0f766e);
}

.mkcav2-panel__logo {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--mkcav2-brand);
    background: #fff;
}

.mkcav2-panel__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.mkcav2-panel__logo em {
    font-style: normal;
    font-weight: 850;
    line-height: 1;
}

.mkcav2-panel__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    margin-left: auto;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 50%;
    animation: mkcav2PanelIconBreath 2.35s ease-in-out infinite;
}

.mkcav2-panel__icon svg {
    width: 22px;
    height: 22px;
}

@keyframes mkcav2PanelIconBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,.28);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
}

.mkcav2-panel__header strong,
.mkcav2-panel__header small {
    display: block;
}

.mkcav2-panel__header small {
    margin-top: 3px;
    color: rgba(255,255,255,.8);
    line-height: 1.35;
}

.mkcav2-close {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.mkcav2-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 8px;
    background: #eef2f7;
}

.mkcav2-tabs button {
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #475467;
    cursor: pointer;
}

.mkcav2-tabs button.is-active {
    color: #172033;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.08);
}

.mkcav2-tab {
    padding: 14px;
    max-height: calc(min(680px, 100vh - 110px) - 122px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 76px;
}

.mkcav2-tab[data-panel="assistant"] {
    display: flex;
    flex-direction: column;
}

.mkcav2-chat-nav {
    order: 1;
}

.mkcav2-stage {
    order: 2;
}

.mkcav2-answer {
    order: 3;
}

.mkcav2-chat-log {
    order: 4;
}

.mkcav2-search {
    order: 5;
}

.mkcav2-chat-nav {
    position: sticky;
    top: -14px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: -14px -14px 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #eef2f7;
    backdrop-filter: blur(8px);
}

.mkcav2-chat-nav button {
    min-height: 34px;
    padding: 0 12px;
    color: var(--mkcav2-brand);
    background: color-mix(in srgb, var(--mkcav2-brand) 9%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--mkcav2-brand) 26%, #ffffff);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.mkcav2-chat-nav span {
    min-width: 0;
    overflow: hidden;
    color: #475467;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mkcav2-chat-log {
    display: grid;
    gap: 8px;
    margin: 12px 0;
    scroll-margin-bottom: 82px;
}

.mkcav2-bubble {
    width: fit-content;
    max-width: 84%;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.42;
    box-shadow: 0 1px 1px rgba(15,23,42,.08);
    word-break: break-word;
    scroll-margin-bottom: 88px;
}

.mkcav2-bubble--user {
    justify-self: end;
    color: #0f172a;
    background: #dcf8c6;
    border-bottom-right-radius: 3px;
}

.mkcav2-bubble--bot {
    justify-self: start;
    color: #172033;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-bottom-left-radius: 3px;
}

.mkcav2-bubble a {
    display: inline-flex;
    margin-top: 8px;
    padding: 7px 10px;
    color: #fff;
    background: var(--mkcav2-accent);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 750;
}

.mkcav2-bubble.is-typing {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 54px;
    min-height: 34px;
}

.mkcav2-bubble.is-typing span {
    width: 6px;
    height: 6px;
    background: #667085;
    border-radius: 50%;
    animation: mkcav2Typing 1s infinite ease-in-out;
}

.mkcav2-bubble.is-typing span:nth-child(2) {
    animation-delay: .14s;
}

.mkcav2-bubble.is-typing span:nth-child(3) {
    animation-delay: .28s;
}

.mkcav2-stage__eyebrow {
    margin: 0 0 12px;
    color: color-mix(in srgb, var(--mkcav2-brand) 72%, #172033);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkcav2-intents,
.mkcav2-suggestions,
.mkcav2-contact-list {
    display: grid;
    gap: 9px;
}

.mkcav2-intents {
    grid-template-columns: 1fr;
}

.mkcav2-accordion,
.mkcav2-suggestions button,
.mkcav2-contact-list a {
    width: 100%;
    padding: 12px;
    text-align: left;
    color: #172033;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.mkcav2-accordion {
    padding: 0;
    overflow: hidden;
}

.mkcav2-accordion__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 14px;
    text-align: left;
    color: #172033;
    background: #fff;
    border: 0;
    cursor: pointer;
}

.mkcav2-accordion__head em {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    color: var(--mkcav2-brand);
    background: #eff6ff;
    border-radius: 50%;
    font-style: normal;
    font-weight: 850;
}

.mkcav2-accordion__body {
    display: grid;
    gap: 7px;
    padding: 0 12px 12px;
    background: #fff;
}

.mkcav2-question-link {
    width: 100%;
    padding: 9px 10px;
    text-align: left;
    color: #344054;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    cursor: pointer;
}

.mkcav2-question-link.is-active {
    color: var(--mkcav2-brand);
    border-color: #bfdbfe;
    background: #eff6ff;
}

.mkcav2-question-link:hover {
    color: var(--mkcav2-brand);
    border-color: #bfdbfe;
    background: #eff6ff;
}

.mkcav2-inline-answer {
    margin: 8px 0 2px;
    position: relative;
    padding: 13px 13px 13px 15px;
    color: #172033;
    background: linear-gradient(180deg, color-mix(in srgb, var(--mkcav2-brand) 7%, #ffffff), #ffffff);
    border: 1px solid color-mix(in srgb, var(--mkcav2-brand) 18%, #e4e7ec);
    border-left: 4px solid var(--mkcav2-brand);
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(15,23,42,.08);
}

.mkcav2-inline-answer__label {
    display: inline-flex;
    margin-bottom: 7px;
    color: color-mix(in srgb, var(--mkcav2-brand) 80%, #111827);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkcav2-inline-answer p {
    margin: 0;
    line-height: 1.45;
}

.mkcav2-inline-answer a {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 11px;
    color: #fff;
    background: var(--mkcav2-accent);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 750;
}

.mkcav2-inline-answer__typing {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mkcav2-inline-answer__typing span {
    width: 6px;
    height: 6px;
    background: #667085;
    border-radius: 50%;
    animation: mkcav2Typing 1s infinite ease-in-out;
}

.mkcav2-inline-answer__typing span:nth-child(2) {
    animation-delay: .14s;
}

.mkcav2-inline-answer__typing span:nth-child(3) {
    animation-delay: .28s;
}

.mkcav2-accordion:hover,
.mkcav2-suggestions button:hover,
.mkcav2-contact-list a:hover {
    border-color: var(--mkcav2-brand);
    box-shadow: 0 8px 22px rgba(37,99,235,.12);
}

.mkcav2-accordion strong,
.mkcav2-accordion small,
.mkcav2-contact-list strong,
.mkcav2-contact-list small {
    display: block;
}

.mkcav2-accordion small,
.mkcav2-contact-list small,
.mkcav2-muted {
    margin-top: 4px;
    color: #667085;
    line-height: 1.35;
}

.mkcav2-accordion small {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.mkcav2-back {
    margin-bottom: 10px;
    color: var(--mkcav2-brand);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mkcav2-selected {
    margin-bottom: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.mkcav2-selected p {
    margin: 4px 0 0;
    color: #667085;
}

.mkcav2-answer {
    margin-top: 12px;
    padding: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
}

.mkcav2-answer p {
    margin: 0;
    line-height: 1.45;
}

.mkcav2-answer a {
    display: inline-flex;
    margin-top: 12px;
    padding: 9px 12px;
    color: #fff;
    background: var(--mkcav2-accent);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.mkcav2-search {
    position: sticky;
    bottom: 0;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin: 12px -14px -76px;
    padding: 10px 14px 16px;
    background: rgba(255,255,255,.98);
    border-top: 1px solid #eef2f7;
    backdrop-filter: blur(8px);
}

.mkcav2-search input {
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
}

.mkcav2-search button {
    height: 40px;
    padding: 0 14px;
    color: #fff;
    background: var(--mkcav2-brand);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.mkcav2-contact-list a {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 10px;
}

.mkcav2-contact-list span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: var(--mkcav2-brand);
    border-radius: 8px;
}

.mkcav2-nudge {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(330px, calc(100vw - 28px));
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(15,23,42,.22);
}

.mkcav2-widget--left .mkcav2-nudge {
    right: auto;
    left: 0;
}

.mkcav2-nudge p {
    margin: 6px 0 12px;
    color: #475467;
    line-height: 1.4;
}

.mkcav2-typing {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 24px;
    margin: 8px 0 10px;
    padding: 0 10px;
    background: #f2f4f7;
    border-radius: 999px;
}

.mkcav2-typing span {
    width: 6px;
    height: 6px;
    background: #667085;
    border-radius: 50%;
    animation: mkcav2Typing 1s infinite ease-in-out;
}

.mkcav2-typing span:nth-child(2) {
    animation-delay: .14s;
}

.mkcav2-typing span:nth-child(3) {
    animation-delay: .28s;
}

@keyframes mkcav2Typing {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: .45;
    }
    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.mkcav2-nudge button {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    cursor: pointer;
}

.mkcav2-nudge__open {
    color: #fff;
    background: var(--mkcav2-brand);
    border: 0;
}

.mkcav2-nudge__wa {
    margin-left: 6px;
    color: var(--mkcav2-accent);
    background: #fff;
    border: 1px solid #bbf7d0;
}

.mkcav2-nudge__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    min-height: 26px;
    padding: 0;
    border: 0;
    background: #f2f4f7;
}

@media (max-width: 520px) {
    .mkcav2-widget {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .mkcav2-widget--left {
        left: 14px;
    }

    .mkcav2-panel,
    .mkcav2-widget--left .mkcav2-panel,
    .mkcav2-nudge,
    .mkcav2-widget--left .mkcav2-nudge {
        right: 0;
        left: 0;
        width: 100%;
    }

    .mkcav2-panel {
        max-height: calc(100vh - 96px);
    }

    .mkcav2-tab {
        max-height: calc(100vh - 220px);
    }

    .mkcav2-launcher {
        float: right;
    }
}

/* v2.1 refined FAQ/contact surface */
.mkcav2-panel {
    width: min(410px, calc(100vw - 28px));
    background: #f6f7f9;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(15,23,42,.30);
}

.mkcav2-panel__header {
    padding: 18px 18px 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--mkcav2-brand) 82%, #111827), var(--mkcav2-brand));
}

.mkcav2-panel__header strong {
    font-size: 17px;
    line-height: 1.15;
}

.mkcav2-panel__header small {
    max-width: 230px;
    color: rgba(255,255,255,.88);
}

.mkcav2-panel__logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(15,23,42,.14);
}

.mkcav2-panel__icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.18);
}

.mkcav2-close {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.mkcav2-tabs {
    padding: 10px;
    gap: 8px;
    background: #eef1f5;
}

.mkcav2-tabs button {
    height: 38px;
    border-radius: 12px;
    font-weight: 650;
}

.mkcav2-tabs button.is-active {
    box-shadow: 0 4px 14px rgba(15,23,42,.08);
}

.mkcav2-tab {
    padding: 14px;
}

.mkcav2-chat-nav {
    margin: -14px -14px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,249,.94));
}

.mkcav2-stage__eyebrow {
    margin-left: 2px;
    color: color-mix(in srgb, var(--mkcav2-brand) 78%, #172033);
    letter-spacing: .1em;
}

.mkcav2-accordion {
    border: 1px solid #e3e6eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(15,23,42,.06);
}

.mkcav2-accordion + .mkcav2-accordion {
    margin-top: 2px;
}

.mkcav2-accordion__head {
    padding: 15px 16px;
}

.mkcav2-accordion__head strong {
    font-size: 15px;
}

.mkcav2-accordion__head small {
    -webkit-line-clamp: 2;
    color: #667085;
}

.mkcav2-accordion__head em {
    color: #fff;
    background: var(--mkcav2-brand);
}

.mkcav2-accordion__body {
    padding: 0 14px 14px;
}

.mkcav2-question-link {
    padding: 10px 11px;
    background: #f7f8fa;
    border-color: #edf0f4;
    border-radius: 12px;
}

.mkcav2-bubble {
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(15,23,42,.08);
}

.mkcav2-bubble--user {
    color: #fff;
    background: var(--mkcav2-brand);
}

.mkcav2-bubble--bot {
    background: #fff;
    border-color: #e3e6eb;
}

.mkcav2-search {
    bottom: 0;
    margin: 12px -14px -76px;
    padding: 12px 14px 16px;
    background: rgba(246,247,249,.98);
}

.mkcav2-search input {
    height: 44px;
    border-radius: 999px;
    background: #fff;
}

.mkcav2-search button {
    height: 44px;
    min-width: 52px;
    border-radius: 999px;
    background: var(--mkcav2-brand);
}

.mkcav2-contact-list {
    gap: 10px;
}

.mkcav2-contact-list a {
    grid-template-columns: 48px 1fr;
    min-height: 70px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e3e6eb;
    border-radius: 16px;
    box-shadow: 0 5px 16px rgba(15,23,42,.06);
}

.mkcav2-contact-list span {
    width: 48px;
    height: 48px;
    color: var(--mkcav2-brand);
    background: color-mix(in srgb, var(--mkcav2-brand) 12%, #ffffff);
    border-radius: 16px;
}

.mkcav2-contact-list strong {
    align-self: end;
}

.mkcav2-contact-list small {
    align-self: start;
}

.mkcav2-tab[data-panel="assistant"] {
    display: flex;
    flex-direction: column;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-chat-nav {
    order: 1;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-stage {
    order: 2;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-answer {
    order: 3;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-chat-log {
    order: 4;
    margin: 12px 0;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-search {
    order: 5;
}

/* v2.1.4 stable professional panel layout */
.mkcav2-panel {
    display: flex;
    flex-direction: column;
    width: min(430px, calc(100vw - 28px));
    max-height: min(720px, calc(100vh - 96px));
    overflow: hidden;
}

.mkcav2-panel__header {
    flex: 0 0 auto;
    min-height: 102px;
    padding: 18px 18px 16px;
}

.mkcav2-panel__logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
}

.mkcav2-panel__logo img {
    padding: 6px;
}

.mkcav2-panel__header strong {
    font-size: 17px;
    line-height: 1.18;
}

.mkcav2-panel__header small {
    max-width: 245px;
    font-size: 13px;
}

.mkcav2-panel__icon {
    width: 50px;
    height: 50px;
}

.mkcav2-close {
    width: 34px;
    height: 34px;
}

.mkcav2-tabs {
    flex: 0 0 auto;
}

.mkcav2-tab {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 14px 14px 0;
}

.mkcav2-tab[hidden] {
    display: none;
}

.mkcav2-tab[data-panel="assistant"] {
    display: flex;
    flex-direction: column;
}

.mkcav2-tab[data-panel="assistant"] .mkcav2-search {
    position: sticky;
    bottom: 0;
    margin: 12px -14px 0;
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom, 0px));
}

.mkcav2-tab[data-panel="contact"] {
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}

.mkcav2-chat-log,
.mkcav2-bubble {
    scroll-margin-bottom: 104px;
}

.mkcav2-contact-list {
    padding-bottom: 4px;
}

.mkcav2-contact-list a:last-child {
    margin-bottom: 0;
}

.mkcav2-social-block {
    margin: 0 0 14px;
    padding: 12px;
    background: color-mix(in srgb, var(--mkcav2-brand) 5%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--mkcav2-brand) 14%, #e3e6eb);
    border-radius: 18px;
}

.mkcav2-social-block p {
    margin: 0 0 10px;
    color: color-mix(in srgb, var(--mkcav2-brand) 72%, #172033);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkcav2-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.mkcav2-social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 9px 10px;
    color: #172033;
    text-decoration: none;
    background: var(--mkcav2-card-bg, #ffffff);
    border: 1px solid #e3e6eb;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(15,23,42,.05);
}

.mkcav2-social-links a:hover {
    color: var(--mkcav2-brand);
    border-color: var(--mkcav2-brand);
}

.mkcav2-social-links span {
    font-size: 13px;
    font-weight: 750;
}

@media (max-width: 520px) {
    .mkcav2-panel {
        max-height: calc(100vh - 88px);
    }

    .mkcav2-panel__header {
        min-height: 96px;
    }

    .mkcav2-panel__logo {
        width: 52px;
        height: 52px;
    }
}

/* v2.1.10 configurable panel colors */
.mkcav2-panel {
    background: var(--mkcav2-panel-bg, #f6f7f9);
}

.mkcav2-panel__header {
    color: var(--mkcav2-header-text, #ffffff);
}

.mkcav2-panel__header small {
    color: color-mix(in srgb, var(--mkcav2-header-text, #ffffff) 84%, transparent);
}

.mkcav2-tabs {
    background: color-mix(in srgb, var(--mkcav2-panel-bg, #f6f7f9) 70%, #e5e7eb);
}

.mkcav2-chat-nav,
.mkcav2-search {
    background: color-mix(in srgb, var(--mkcav2-panel-bg, #f6f7f9) 96%, transparent);
}

.mkcav2-accordion,
.mkcav2-accordion__head,
.mkcav2-accordion__body,
.mkcav2-contact-list a,
.mkcav2-social-links a,
.mkcav2-bubble--bot {
    background: var(--mkcav2-card-bg, #ffffff);
}

.mkcav2-inline-answer {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--mkcav2-answer-bg, #ffffff) 88%, var(--mkcav2-brand)),
        var(--mkcav2-answer-bg, #ffffff)
    );
}

/* v2.1.10 theme isolation layer */
.mkcav2-widget,
.mkcav2-widget * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.mkcav2-widget {
    color: #172033;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    text-align: left;
}

.mkcav2-widget a,
.mkcav2-widget button,
.mkcav2-widget input,
.mkcav2-widget textarea {
    font: inherit;
}

.mkcav2-widget button,
.mkcav2-widget input,
.mkcav2-widget textarea {
    appearance: none;
    -webkit-appearance: none;
}

.mkcav2-widget button {
    text-transform: none;
}

.mkcav2-panel {
    width: min(430px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
}

.mkcav2-panel__header {
    min-height: 102px;
}

.mkcav2-panel__header strong {
    margin: 0;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.18;
}

.mkcav2-panel__header small {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.mkcav2-panel__logo,
.mkcav2-panel__icon,
.mkcav2-contact-list span {
    flex: 0 0 auto;
}

.mkcav2-panel__logo {
    width: 58px !important;
    height: 58px !important;
}

.mkcav2-panel__icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    padding: 0 !important;
}

.mkcav2-close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    line-height: 1 !important;
}

.mkcav2-tabs button,
.mkcav2-chat-nav button,
.mkcav2-suggestions button,
.mkcav2-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
}

.mkcav2-accordion__head {
    align-items: center;
    min-height: 74px;
}

.mkcav2-accordion__head strong {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.25;
}

.mkcav2-accordion__head small {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}

.mkcav2-accordion__toggle {
    display: inline-grid !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    line-height: 1 !important;
}

.mkcav2-search input {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0 14px;
    border-radius: 999px;
}

.mkcav2-search button {
    width: 52px;
    min-width: 52px;
    height: 44px;
    padding: 0;
}

@media (max-width: 520px) {
    .mkcav2-panel {
        width: calc(100vw - 28px) !important;
    }
}

/* v2.1.10 locked color states against theme hover styles */
.mkcav2-widget {
    --mkcav2-text: #172033;
    --mkcav2-soft-text: #475467;
    --mkcav2-muted-text: #667085;
    --mkcav2-line: #e3e6eb;
    --mkcav2-soft-surface: #fffaf0;
    --mkcav2-white: #ffffff;
}

.mkcav2-widget,
.mkcav2-widget :where(strong, small, span, p, em, label) {
    color: var(--mkcav2-text);
}

.mkcav2-panel__header :where(strong, small),
.mkcav2-panel__header .mkcav2-close,
.mkcav2-panel__header .mkcav2-panel__icon {
    color: var(--mkcav2-header-text, #ffffff) !important;
}

.mkcav2-tabs button {
    color: var(--mkcav2-soft-text) !important;
    background: transparent !important;
}

.mkcav2-tabs button.is-active,
.mkcav2-tabs button:hover,
.mkcav2-tabs button:focus {
    color: var(--mkcav2-text) !important;
    background: var(--mkcav2-white) !important;
}

.mkcav2-chat-nav button,
.mkcav2-chat-nav button:hover,
.mkcav2-chat-nav button:focus,
.mkcav2-chat-nav button:active {
    color: var(--mkcav2-brand) !important;
    background: color-mix(in srgb, var(--mkcav2-brand) 9%, #ffffff) !important;
    border-color: color-mix(in srgb, var(--mkcav2-brand) 26%, #ffffff) !important;
}

.mkcav2-chat-nav span,
.mkcav2-stage__eyebrow {
    color: color-mix(in srgb, var(--mkcav2-brand) 72%, var(--mkcav2-text)) !important;
}

.mkcav2-accordion,
.mkcav2-accordion:hover,
.mkcav2-accordion:focus,
.mkcav2-accordion:active {
    color: var(--mkcav2-text) !important;
    background: var(--mkcav2-card-bg, #ffffff) !important;
    border-color: var(--mkcav2-line) !important;
}

.mkcav2-accordion.is-open,
.mkcav2-accordion.is-open:hover,
.mkcav2-accordion.is-open:focus {
    background: var(--mkcav2-soft-surface) !important;
    border-color: var(--mkcav2-brand) !important;
}

.mkcav2-accordion__head,
.mkcav2-accordion__head:hover,
.mkcav2-accordion__head:focus,
.mkcav2-accordion__head:active {
    color: var(--mkcav2-text) !important;
    background: transparent !important;
}

.mkcav2-accordion__head strong,
.mkcav2-accordion__head:hover strong,
.mkcav2-accordion__head:focus strong,
.mkcav2-suggestions button,
.mkcav2-suggestions button:hover,
.mkcav2-suggestions button:focus,
.mkcav2-selected strong,
.mkcav2-contact-list strong {
    color: var(--mkcav2-text) !important;
}

.mkcav2-accordion__head small,
.mkcav2-accordion__head:hover small,
.mkcav2-accordion__head:focus small,
.mkcav2-contact-list small {
    color: var(--mkcav2-muted-text) !important;
}

.mkcav2-accordion__toggle,
.mkcav2-accordion__toggle:hover,
.mkcav2-accordion__toggle:focus,
.mkcav2-accordion__toggle:active {
    color: var(--mkcav2-white) !important;
    background: var(--mkcav2-brand) !important;
    border-color: var(--mkcav2-brand) !important;
}

.mkcav2-suggestions button,
.mkcav2-suggestions button:hover,
.mkcav2-suggestions button:focus {
    background: color-mix(in srgb, var(--mkcav2-brand) 6%, #ffffff) !important;
    border-color: color-mix(in srgb, var(--mkcav2-brand) 26%, #ffffff) !important;
}

.mkcav2-search input,
.mkcav2-search input:hover,
.mkcav2-search input:focus {
    color: var(--mkcav2-text) !important;
    background: var(--mkcav2-white) !important;
    border-color: var(--mkcav2-line) !important;
    box-shadow: none !important;
}

.mkcav2-search input::placeholder {
    color: #8a8f98 !important;
    opacity: 1 !important;
}

.mkcav2-search button,
.mkcav2-search button:hover,
.mkcav2-search button:focus,
.mkcav2-search button:active,
.mkcav2-inline-answer a,
.mkcav2-inline-answer a:hover,
.mkcav2-inline-answer a:focus,
.mkcav2-bubble a,
.mkcav2-bubble a:hover,
.mkcav2-bubble a:focus {
    color: var(--mkcav2-white) !important;
    background: var(--mkcav2-brand) !important;
    border-color: var(--mkcav2-brand) !important;
}

.mkcav2-contact-list a,
.mkcav2-contact-list a:hover,
.mkcav2-contact-list a:focus,
.mkcav2-social-links a,
.mkcav2-social-links a:hover,
.mkcav2-social-links a:focus {
    color: var(--mkcav2-text) !important;
    background: var(--mkcav2-card-bg, #ffffff) !important;
    border-color: var(--mkcav2-line) !important;
    text-decoration: none !important;
}

.mkcav2-contact-list a:hover,
.mkcav2-social-links a:hover {
    border-color: var(--mkcav2-brand) !important;
}

.mkcav2-contact-list span,
.mkcav2-contact-list a:hover span {
    color: var(--mkcav2-brand) !important;
    background: color-mix(in srgb, var(--mkcav2-brand) 12%, #ffffff) !important;
}

.mkcav2-social-links svg,
.mkcav2-social-links span,
.mkcav2-social-links a:hover svg,
.mkcav2-social-links a:hover span {
    color: var(--mkcav2-text) !important;
}
