.mfx-contact-launcher,
.mfx-contact-launcher *,
.mfx-contact-overlay,
.mfx-contact-overlay * {
    box-sizing: border-box;
}

:root {
    --mfx-contact-orange: #ff7a00;
    --mfx-contact-orange-dark: #d95f00;
    --mfx-contact-navy: #20293a;
    --mfx-contact-text: #2c3442;
    --mfx-contact-muted: #7a8391;
    --mfx-contact-line: #e7eaf0;
    --mfx-contact-soft: #fff4e9;
    --mfx-contact-bar-height: 82px;
}

.mfx-contact-launcher {
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: var(--mfx-contact-bar-height);
    background: var(--mfx-contact-orange);
    color: #fff;
    direction: rtl;
    font-family: inherit;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.mfx-contact-launcher.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

.mfx-contact-launcher__inner {
    position: relative;
    display: flex;
    width: min(1260px, calc(100% - 40px));
    min-height: var(--mfx-contact-bar-height);
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 18px 190px;
}

.mfx-contact-launcher__open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 9px 24px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 13px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    line-height: 1.7;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.mfx-contact-launcher__open:hover,
.mfx-contact-launcher__open:focus-visible {
    border-color: #fff;
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
}

.mfx-contact-launcher__arrow {
    position: absolute;
    top: -23px;
    right: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    padding: 0;
    border: 5px solid var(--mfx-contact-navy);
    border-radius: 50%;
    background: var(--mfx-contact-orange);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    transform: translateX(50%);
    transition: background-color .2s ease, transform .2s ease;
}

.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus-visible {
    background: var(--mfx-contact-orange-dark);
    transform: translateX(50%) translateY(-3px);
}

.mfx-contact-launcher__support {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(-50%);
}

.mfx-contact-launcher__support a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 13px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 12px;
    text-decoration: none !important;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus-visible {
    border-color: #fff;
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

.mfx-contact-launcher__support img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.mfx-contact-overlay[hidden] {
    display: none !important;
}

.mfx-contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: grid;
    place-items: center;
    padding: 28px;
    direction: rtl;
    font-family: inherit;
}

.mfx-contact-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 25, 36, .62);
    opacity: 0;
    transition: opacity .24s ease;
}

.mfx-contact-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(760px, 100%);
    height: min(700px, calc(100vh - 56px));
    max-height: min(760px, calc(100vh - 56px));
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(32, 41, 58, .12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(10, 15, 24, .26);
    color: var(--mfx-contact-text);
    opacity: 0;
    transform: translateY(24px) scale(.98);
    transition: opacity .24s ease, transform .28s ease;
}

.mfx-contact-overlay.is-open .mfx-contact-overlay__backdrop {
    opacity: 1;
}

.mfx-contact-overlay.is-open .mfx-contact-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mfx-contact-dialog__header {
    position: relative;
    z-index: 5;
    display: grid;
    min-height: 82px;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--mfx-contact-line);
    background: #fff;
}

.mfx-contact-dialog__header h2 {
    margin: 0;
    color: var(--mfx-contact-navy);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}

.mfx-contact-dialog__close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--mfx-contact-line);
    border-radius: 12px;
    background: #f7f8fa;
    color: #657080;
    cursor: pointer;
    font-size: 18px;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.mfx-contact-dialog__close:hover,
.mfx-contact-dialog__close:focus-visible {
    border-color: #ffb36c;
    background: var(--mfx-contact-soft);
    color: var(--mfx-contact-orange);
}

.mfx-contact-dialog__switch {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--mfx-contact-orange);
    border-radius: 12px;
    background: var(--mfx-contact-orange);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.mfx-contact-dialog__switch:hover,
.mfx-contact-dialog__switch:focus-visible {
    background: var(--mfx-contact-orange-dark);
    transform: translateY(-1px);
}

.mfx-contact-dialog.is-feedback .mfx-contact-dialog__switch {
    background: #fff;
    color: var(--mfx-contact-orange);
}

.mfx-contact-dialog__viewport {
    position: relative;
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
    background: #fff;
}

.mfx-contact-dialog__track {
    position: relative;
    height: 100%;
    min-height: 0;
}

.mfx-contact-panel {
    position: absolute;
    inset: 0;
    overflow: auto;
    padding: 22px;
    background: #fff;
    opacity: 0;
    transform: translateX(-36px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .23s ease, transform .3s ease, visibility .23s ease;
}

.mfx-contact-panel--channels {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mfx-contact-dialog.is-feedback .mfx-contact-panel--channels {
    opacity: 0;
    transform: translateX(36px);
    visibility: hidden;
    pointer-events: none;
}

.mfx-contact-dialog.is-feedback .mfx-contact-panel--feedback {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mfx-contact-panel--feedback {
    padding: 0;
    overflow: hidden;
}

.mfx-contact-panel__intro {
    margin: 0 0 17px;
    color: var(--mfx-contact-muted);
    font-size: 12.5px;
    line-height: 1.9;
}

.mfx-contact-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.mfx-contact-channel {
    display: grid;
    min-height: 88px;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid #ff9a3b;
    border-radius: 16px;
    background: var(--mfx-contact-orange);
    color: #fff !important;
    text-decoration: none !important;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mfx-contact-channel:hover,
.mfx-contact-channel:focus-visible {
    border-color: #ffb36c;
    background: var(--mfx-contact-orange-dark);
    box-shadow: 0 10px 22px rgba(217, 95, 0, .2);
    transform: translateY(-2px);
}

.mfx-contact-channel__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 14px;
    background: rgba(255,255,255,.1);
}

.mfx-contact-channel__icon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mfx-contact-channel strong {
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
}

.mfx-contact-channel__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 10.5px;
    white-space: nowrap;
}

.mfx-feedback-form {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
}

.mfx-feedback-form__scroll {
    min-height: 0;
    flex: 1 1 auto;
    overflow: auto;
    padding: 22px 22px 18px;
}

.mfx-feedback-form__notice {
    margin: 0 0 15px;
    padding: 12px 14px;
    border: 1px solid #b9dfc5;
    border-radius: 12px;
    background: #effaf2;
    color: #236b39;
    font-size: 12px;
    line-height: 1.9;
}

.mfx-feedback-form__notice.is-error {
    border-color: #efb9b9;
    background: #fff1f1;
    color: #9d2f2f;
}

.mfx-feedback-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.mfx-field {
    display: grid;
    gap: 7px;
    color: var(--mfx-contact-text);
    font-size: 12px;
}

.mfx-field--wide {
    grid-column: 1 / -1;
}

.mfx-field > span {
    color: #3c4655;
    line-height: 1.7;
}

.mfx-field em {
    color: #8b94a0;
    font-size: 10px;
    font-style: normal;
}

.mfx-field input,
.mfx-field textarea {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid #dfe3e9;
    border-radius: 12px;
    outline: 0;
    background: #fbfcfd;
    color: #2f3846;
    font: inherit;
    font-size: 12px;
    line-height: 1.8;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.mfx-field textarea {
    min-height: 150px;
    resize: vertical;
}

.mfx-field input:focus,
.mfx-field textarea:focus {
    border-color: var(--mfx-contact-orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .12);
}

.mfx-field.is-invalid input,
.mfx-field.is-invalid textarea {
    border-color: #d94b4b;
    background: #fff7f7;
}

.mfx-field small {
    color: #8b94a0;
    font-size: 9.5px;
    line-height: 1.7;
}

.mfx-feedback-form__trap {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.mfx-feedback-form__footer {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--mfx-contact-line);
    background: #fff;
    box-shadow: 0 -8px 22px rgba(24, 32, 45, .07);
}

.mfx-feedback-form__submit {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--mfx-contact-orange);
    border-radius: 13px;
    background: var(--mfx-contact-orange);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.mfx-feedback-form__submit:hover,
.mfx-feedback-form__submit:focus-visible {
    background: var(--mfx-contact-orange-dark);
    transform: translateY(-1px);
}

.mfx-feedback-form__submit:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

body.mfx-contact-popup-open {
    overflow: hidden !important;
}

body.mff-sheet-open .mfx-contact-launcher {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mfx-contact-launcher :focus-visible,
.mfx-contact-overlay :focus-visible {
    outline: 3px solid rgba(255,255,255,.42);
    outline-offset: 3px;
}

.mfx-contact-overlay .mfx-field :focus-visible {
    outline: 0;
}

@media (max-width: 1100px) {
    :root {
        --mfx-contact-bar-height: 74px;
    }

    body {
        padding-bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height)) !important;
    }

    .mfx-contact-launcher {
        position: fixed;
        right: 0;
        bottom: var(--mff-mobile-dock-height, calc(76px + env(safe-area-inset-bottom)));
        left: 0;
        z-index: 99996;
        min-height: var(--mfx-contact-bar-height);
        box-shadow: 0 -7px 22px rgba(32,41,58,.14);
    }

    .mfx-contact-launcher__inner {
        width: 100%;
        min-height: var(--mfx-contact-bar-height);
        padding: 15px 14px 10px 112px;
    }

    .mfx-contact-launcher__open {
        min-height: 42px;
        padding: 7px 14px;
        font-size: 12px;
    }

    .mfx-contact-launcher__arrow {
        top: -18px;
        width: 45px;
        height: 45px;
        border-width: 4px;
        border-color: #fff;
        font-size: 15px;
    }

    .mfx-contact-launcher__support {
        left: 10px;
        gap: 6px;
    }

    .mfx-contact-launcher__support a {
        width: 42px;
        height: 42px;
        min-height: 42px;
        justify-content: center;
        padding: 5px;
        border-radius: 11px;
    }

    .mfx-contact-launcher__support a span {
        position: absolute !important;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
    }

    .mfx-contact-launcher__support img {
        width: 27px;
        height: 27px;
    }

    .mfx-contact-overlay {
        align-items: end;
        padding: 14px 14px calc(var(--mff-mobile-dock-height, 76px) + 14px);
    }

    .mfx-contact-dialog {
        width: 100%;
        height: min(720px, calc(100vh - var(--mff-mobile-dock-height, 76px) - 28px));
        max-height: calc(100vh - var(--mff-mobile-dock-height, 76px) - 28px);
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .mfx-contact-dialog__header {
        min-height: 72px;
        grid-template-columns: 42px 1fr;
        gap: 10px;
        padding: 12px 13px;
    }

    .mfx-contact-dialog__header h2 {
        font-size: 14px;
    }

    .mfx-contact-dialog__switch {
        grid-column: 1 / -1;
        min-height: 40px;
        margin-top: -2px;
        font-size: 11px;
    }

    .mfx-contact-panel {
        padding: 15px;
    }

    .mfx-contact-channels {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mfx-contact-channel {
        min-height: 72px;
        grid-template-columns: 46px 1fr auto;
        padding: 10px 11px;
        border-radius: 14px;
    }

    .mfx-contact-channel__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .mfx-contact-channel__icon img {
        width: 29px;
        height: 29px;
    }

    .mfx-feedback-form__scroll {
        padding: 16px 15px;
    }

    .mfx-feedback-form__grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .mfx-field--wide {
        grid-column: auto;
    }

    .mfx-feedback-form__footer {
        padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 430px) {
    .mfx-contact-launcher__inner {
        padding-left: 96px;
    }

    .mfx-contact-launcher__open {
        font-size: 10.5px;
    }

    .mfx-contact-launcher__support a {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }

    .mfx-contact-launcher__support img {
        width: 24px;
        height: 24px;
    }

    .mfx-contact-overlay {
        padding-inline: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mfx-contact-launcher,
    .mfx-contact-launcher *,
    .mfx-contact-overlay,
    .mfx-contact-overlay * {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* Contact launcher refinements — 2026-07 */
:root {
    --mfx-contact-bar-height: 70px;
}

.mfx-contact-launcher {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99994;
    min-height: var(--mfx-contact-bar-height);
    box-shadow: 0 -6px 20px rgba(32,41,58,.12);
}

body:not(.wp-admin) {
    padding-bottom: var(--mfx-contact-bar-height);
}

.mfx-contact-launcher__inner {
    width: 100%;
    min-height: var(--mfx-contact-bar-height);
    padding: 13px 24px;
}

.mfx-contact-launcher__open {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
}

.mfx-contact-launcher__open:hover,
.mfx-contact-launcher__open:focus-visible {
    border-color: transparent;
    background: transparent;
    transform: none;
}

.mfx-contact-launcher__arrow {
    top: -20px;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--mfx-contact-orange);
    box-shadow: none;
    font-size: 17px;
}

.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus-visible {
    background: var(--mfx-contact-orange-dark);
}

.mfx-contact-launcher__support {
    position: fixed;
    top: auto;
    bottom: calc(var(--mfx-contact-bar-height) + 22px);
    left: 18px;
    z-index: 99995;
    flex-direction: column;
    gap: 10px;
    transform: none;
}

.mfx-contact-launcher__support a {
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(32,41,58,.2);
}

.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus-visible {
    border-color: transparent;
    background: #fff;
    transform: translateY(-2px) scale(1.04);
}

.mfx-contact-launcher__support img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    object-position: center;
}

.mfx-contact-channel__icon {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

.mfx-contact-channel__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1100px) {
    :root {
        --mfx-contact-bar-height: 58px;
    }

    body:not(.wp-admin) {
        padding-bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height)) !important;
    }

    .mfx-contact-launcher {
        bottom: var(--mff-mobile-dock-height, calc(76px + env(safe-area-inset-bottom)));
        min-height: var(--mfx-contact-bar-height);
    }

    .mfx-contact-launcher__inner {
        min-height: var(--mfx-contact-bar-height);
        padding: 8px 14px;
    }

    .mfx-contact-launcher__open {
        font-size: 15px;
        line-height: 1.65;
    }

    .mfx-contact-launcher__arrow {
        top: -17px;
        width: 39px;
        height: 39px;
        border: 0;
        background: var(--mfx-contact-orange);
        font-size: 14px;
    }

    .mfx-contact-launcher__support {
        bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height) + 12px);
        left: 10px;
        gap: 8px;
    }

    .mfx-contact-launcher__support a {
        width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 5px;
        border-radius: 50%;
    }

    .mfx-contact-launcher__support img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 430px) {
    :root {
        --mfx-contact-bar-height: 54px;
    }

    .mfx-contact-launcher__inner {
        padding: 7px 10px;
    }

    .mfx-contact-launcher__open {
        font-size: 14px;
    }

    .mfx-contact-launcher__support a {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .mfx-contact-launcher__support img {
        width: 35px;
        height: 35px;
    }
}

/* Contact launcher refinements v3 — compact bar, plain support icons and full-area click */
:root {
    --mfx-contact-bar-height: 60px;
}

.mfx-contact-launcher,
.mfx-contact-launcher__inner {
    min-height: var(--mfx-contact-bar-height);
}

.mfx-contact-launcher {
    cursor: pointer;
}

.mfx-contact-launcher__inner {
    padding: 9px 18px;
}

.mfx-contact-launcher__open {
    font-size: 17px;
    line-height: 1.55;
}

.mfx-contact-launcher__arrow,
.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus,
.mfx-contact-launcher__arrow:focus-visible,
.mfx-contact-launcher__arrow:active {
    top: -18px;
    width: 42px;
    height: 42px;
    border: 0;
    outline: 0;
    background: var(--mfx-contact-orange);
    color: #fff;
    box-shadow: none;
    transform: translateX(50%);
    -webkit-tap-highlight-color: transparent;
}

.mfx-contact-launcher__support {
    position: fixed;
    top: auto;
    right: auto;
    bottom: calc(var(--mfx-contact-bar-height) + 10px);
    left: 14px;
    z-index: 99996;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transform: none;
    cursor: default;
    visibility: visible;
    opacity: 1;
}

.mfx-contact-launcher__support a,
.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus,
.mfx-contact-launcher__support a:focus-visible,
.mfx-contact-launcher__support a:active {
    display: block !important;
    width: 50px;
    height: 50px;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    -webkit-tap-highlight-color: transparent;
}

.mfx-contact-launcher__support img {
    display: block !important;
    width: 50px;
    height: 50px;
    max-width: none;
    object-fit: contain;
    object-position: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.mfx-contact-channel--bale .mfx-contact-channel__icon img {
    transform: scale(.86);
    transform-origin: center;
}

@media (max-width: 1100px) {
    :root {
        --mfx-contact-bar-height: 50px;
    }

    .mfx-contact-launcher__inner {
        padding: 6px 12px;
    }

    .mfx-contact-launcher__open {
        font-size: 14.5px;
        line-height: 1.5;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -15px;
        width: 35px;
        height: 35px;
        background: var(--mfx-contact-orange);
        color: #fff;
        transform: translateX(50%);
    }

    .mfx-contact-launcher__support {
        bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height) + 8px);
        left: 10px;
        gap: 7px;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 430px) {
    :root {
        --mfx-contact-bar-height: 46px;
    }

    .mfx-contact-launcher__inner {
        padding: 5px 9px;
    }

    .mfx-contact-launcher__open {
        font-size: 13.5px;
    }

    .mfx-contact-launcher__support {
        left: 8px;
        gap: 6px;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 40px;
        height: 40px;
    }
}


/* Contact launcher refinements v4 — stacked support shortcuts and light arrow tab */
.mfx-contact-launcher__support {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    left: 12px;
    bottom: calc(var(--mfx-contact-bar-height) + 10px);
}

.mfx-contact-launcher__support a,
.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus,
.mfx-contact-launcher__support a:focus-visible,
.mfx-contact-launcher__support a:active,
.mfx-contact-launcher__support img {
    width: 58px;
    height: 58px;
}

.mfx-contact-launcher__support a {
    line-height: 0;
}

.mfx-contact-launcher__arrow,
.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus,
.mfx-contact-launcher__arrow:focus-visible,
.mfx-contact-launcher__arrow:active {
    top: -24px;
    width: 44px;
    height: 24px;
    border-radius: 24px 24px 0 0;
    background: var(--mfx-contact-orange);
    transform: translateX(50%);
}

.mfx-contact-launcher__arrow i {
    transform: translateY(2px);
}

@media (max-width: 1100px) {
    .mfx-contact-launcher__support {
        left: 9px;
        bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height) + 8px);
        gap: 7px;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 49px;
        height: 49px;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -21px;
        width: 39px;
        height: 21px;
        border-radius: 21px 21px 0 0;
    }
}

@media (max-width: 430px) {
    .mfx-contact-launcher__support {
        left: 7px;
        gap: 6px;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 46px;
        height: 46px;
    }
}

/* Contact launcher corrections v6 — preserve sticky layout and icon URLs */
:root {
    --mfx-contact-bar-height: 54px;
}

.mfx-contact-launcher {
    position: fixed !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    min-height: var(--mfx-contact-bar-height) !important;
}

.mfx-contact-launcher__inner {
    min-height: var(--mfx-contact-bar-height) !important;
    padding-block: 7px !important;
}

.mfx-contact-launcher__support {
    position: fixed !important;
    top: auto !important;
    right: auto !important;
    bottom: calc(var(--mfx-contact-bar-height) + 10px) !important;
    left: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 11px !important;
    transform: none !important;
}

.mfx-contact-launcher__support a,
.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus,
.mfx-contact-launcher__support a:focus-visible,
.mfx-contact-launcher__support a:active {
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0 !important;
    transform: none !important;
}

.mfx-contact-launcher__support img {
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    max-width: none !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mfx-contact-launcher__arrow,
.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus,
.mfx-contact-launcher__arrow:focus-visible,
.mfx-contact-launcher__arrow:active {
    top: -21px !important;
    width: 44px !important;
    height: 24px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    outline: 0 !important;
    background: var(--mfx-contact-orange) !important;
    box-shadow: none !important;
    color: #fff !important;
    transform: translateX(50%) !important;
}

.mfx-contact-launcher__arrow i {
    transform: translateY(3px) !important;
}

@media (max-width: 1100px) {
    :root {
        --mfx-contact-bar-height: 46px;
    }

    .mfx-contact-launcher {
        bottom: var(--mff-mobile-dock-height, calc(76px + env(safe-area-inset-bottom))) !important;
    }

    .mfx-contact-launcher__inner {
        padding-block: 5px !important;
    }

    .mfx-contact-launcher__support {
        bottom: calc(var(--mff-mobile-dock-height, 76px) + var(--mfx-contact-bar-height) + 8px) !important;
        left: 14px !important;
        gap: 10px !important;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 45px !important;
        height: 45px !important;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -19px !important;
        width: 39px !important;
        height: 21px !important;
        border-radius: 21px 21px 0 0 !important;
    }
}

@media (max-width: 430px) {
    :root {
        --mfx-contact-bar-height: 43px;
    }

    .mfx-contact-launcher__inner {
        padding-block: 4px !important;
    }

    .mfx-contact-launcher__support {
        left: 12px !important;
        gap: 9px !important;
    }

    .mfx-contact-launcher__support a,
    .mfx-contact-launcher__support a:hover,
    .mfx-contact-launcher__support a:focus,
    .mfx-contact-launcher__support a:focus-visible,
    .mfx-contact-launcher__support a:active,
    .mfx-contact-launcher__support img {
        width: 42px !important;
        height: 42px !important;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -18px !important;
        width: 37px !important;
        height: 20px !important;
        border-radius: 20px 20px 0 0 !important;
    }
}


/* Contact launcher refinements v7 — right-side support, tighter bar and arrow */
:root {
    --mfx-contact-bar-height: 49px;
}

.mfx-contact-launcher__inner {
    padding-block: 5px !important;
}

.mfx-contact-launcher__open {
    min-height: 36px !important;
    padding: 5px 18px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.mfx-contact-launcher__support {
    right: 18px !important;
    left: auto !important;
    gap: 14px !important;
}

.mfx-contact-launcher__arrow,
.mfx-contact-launcher__arrow:hover,
.mfx-contact-launcher__arrow:focus,
.mfx-contact-launcher__arrow:focus-visible,
.mfx-contact-launcher__arrow:active {
    top: -18px !important;
    width: 40px !important;
    height: 22px !important;
    border-radius: 22px 22px 0 0 !important;
    font-size: 14px !important;
}

.mfx-contact-launcher__arrow i {
    font-size: 14px !important;
    transform: translateY(4px) !important;
}

@media (max-width: 1100px) {
    :root {
        --mfx-contact-bar-height: 42px;
    }

    .mfx-contact-launcher__inner {
        padding-block: 4px !important;
    }

    .mfx-contact-launcher__open {
        min-height: 31px !important;
        padding: 4px 12px !important;
        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .mfx-contact-launcher__support {
        right: 14px !important;
        left: auto !important;
        gap: 13px !important;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -16px !important;
        width: 35px !important;
        height: 19px !important;
        border-radius: 19px 19px 0 0 !important;
        font-size: 12px !important;
    }

    .mfx-contact-launcher__arrow i {
        font-size: 12px !important;
        transform: translateY(4px) !important;
    }
}

@media (max-width: 430px) {
    :root {
        --mfx-contact-bar-height: 39px;
    }

    .mfx-contact-launcher__inner {
        padding-block: 3px !important;
    }

    .mfx-contact-launcher__open {
        min-height: 29px !important;
        padding: 3px 10px !important;
        font-size: 10.5px !important;
    }

    .mfx-contact-launcher__support {
        right: 12px !important;
        left: auto !important;
        gap: 12px !important;
    }

    .mfx-contact-launcher__arrow,
    .mfx-contact-launcher__arrow:hover,
    .mfx-contact-launcher__arrow:focus,
    .mfx-contact-launcher__arrow:focus-visible,
    .mfx-contact-launcher__arrow:active {
        top: -15px !important;
        width: 33px !important;
        height: 18px !important;
        border-radius: 18px 18px 0 0 !important;
        font-size: 11px !important;
    }

    .mfx-contact-launcher__arrow i {
        font-size: 11px !important;
        transform: translateY(4px) !important;
    }
}

/* Contact launcher refinements v8 — 70% logos on white floating buttons */
.mfx-contact-launcher__support a,
.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus,
.mfx-contact-launcher__support a:focus-visible,
.mfx-contact-launcher__support a:active {
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    background: #fff !important;
}

.mfx-contact-launcher__support img {
    width: 70% !important;
    height: 70% !important;
    max-width: 70% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Contact launcher refinements v9 — orange border only */
.mfx-contact-launcher__support a,
.mfx-contact-launcher__support a:hover,
.mfx-contact-launcher__support a:focus,
.mfx-contact-launcher__support a:focus-visible,
.mfx-contact-launcher__support a:active {
    box-sizing: border-box !important;
    border: 3px solid var(--mfx-contact-orange) !important;
}
