/* Panical Floating Contact - Frontend */
.pfc-wrap,
.pfc-wrap * {
    box-sizing: border-box;
}

.pfc-wrap {
    position: fixed;
    z-index: var(--pfc-z, 9999);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: inherit;
    line-height: 1;
}

.pfc-position-bottom-left {
    left: var(--pfc-desktop-x, 24px);
    bottom: var(--pfc-desktop-y, 26px);
}

.pfc-position-bottom-right {
    right: var(--pfc-desktop-x, 24px);
    bottom: var(--pfc-desktop-y, 26px);
    align-items: flex-end;
}

.pfc-main,
.pfc-item {
    -webkit-tap-highlight-color: transparent;
}

.pfc-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: var(--pfc-main-height, 54px);
    height: var(--pfc-main-height, 54px);
    padding: 0 var(--pfc-main-padding-x, 20px);
    color: var(--pfc-main-color, #fff);
    background: var(--pfc-main-bg, #111);
    border: var(--pfc-button-border-width, 1px) solid var(--pfc-main-border, #111);
    cursor: pointer;
    font-size: var(--pfc-main-font-size, 14px);
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    text-decoration: none;
    transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, opacity .22s ease;
}

.pfc-main:hover,
.pfc-wrap.is-open .pfc-main {
    color: var(--pfc-main-hover-color, #111);
    background: var(--pfc-main-hover-bg, #fff);
    border-color: var(--pfc-main-border, #111);
}

.pfc-main:focus-visible,
.pfc-item:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.pfc-main-shadow .pfc-main,
.pfc-item-shadow .pfc-item {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.pfc-main-shape-pill .pfc-main,
.pfc-item-shape-pill .pfc-item {
    border-radius: 999px;
}

.pfc-main-shape-rounded-square .pfc-main,
.pfc-item-shape-rounded-square .pfc-item {
    border-radius: 16px;
}

.pfc-main-shape-circle .pfc-main {
    width: var(--pfc-main-size, 56px);
    height: var(--pfc-main-size, 56px);
    min-width: var(--pfc-main-size, 56px);
    padding: 0;
    border-radius: 50%;
}

.pfc-main-shape-circle .pfc-main-label {
    display: none;
}

.pfc-main-icon,
.pfc-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
}

.pfc-main-icon {
    font-size: var(--pfc-main-icon-size, 22px);
}

.pfc-item-icon {
    font-size: var(--pfc-item-icon-size, 20px);
}

.pfc-main-label,
.pfc-item-label {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.pfc-main-icon-right .pfc-main,
.pfc-item-icon-right .pfc-item {
    flex-direction: row-reverse;
}

.pfc-main-icon-top .pfc-main,
.pfc-item-icon-top .pfc-item {
    flex-direction: column;
    gap: 5px;
    height: auto;
    min-height: var(--pfc-main-height, 54px);
    padding-top: 10px;
    padding-bottom: 10px;
}

.pfc-item-icon-top .pfc-item {
    min-height: var(--pfc-item-height, 46px);
}

.pfc-main-icon-icon-only .pfc-main-label,
.pfc-item-icon-icon-only .pfc-item-label {
    display: none;
}

.pfc-main-icon-icon-only .pfc-main {
    width: var(--pfc-main-size, 56px);
    height: var(--pfc-main-size, 56px);
    min-width: var(--pfc-main-size, 56px);
    padding: 0;
    border-radius: 50%;
}

.pfc-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--pfc-item-gap, 10px);
    margin-bottom: 10px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.pfc-position-bottom-right .pfc-items {
    align-items: flex-end;
}

.pfc-wrap.is-open .pfc-items {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.pfc-animation-slide-up .pfc-items {
    transform: translateY(12px);
}

.pfc-animation-fade .pfc-items {
    transform: none;
}

.pfc-animation-scale .pfc-items {
    transform: translateY(8px) scale(.94);
    transform-origin: bottom left;
}

.pfc-position-bottom-right.pfc-animation-scale .pfc-items {
    transform-origin: bottom right;
}

.pfc-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: var(--pfc-item-min-width, 178px);
    min-height: var(--pfc-item-height, 46px);
    padding: 0 var(--pfc-item-padding-x, 18px);
    color: var(--pfc-item-color, #fff);
    background: var(--pfc-item-bg, #111);
    border: var(--pfc-button-border-width, 1px) solid var(--pfc-item-border, #111);
    font-size: var(--pfc-item-font-size, 14px);
    font-weight: 500;
    letter-spacing: .01em;
    text-decoration: none !important;
    transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, opacity .22s ease;
}

.pfc-item:hover {
    color: var(--pfc-item-hover-color, #111);
    background: var(--pfc-item-hover-bg, #fff);
    border-color: var(--pfc-item-border, #111);
    transform: translateY(-1px);
}

.pfc-item-shape-circle .pfc-item {
    width: var(--pfc-item-height, 46px);
    height: var(--pfc-item-height, 46px);
    min-width: var(--pfc-item-height, 46px);
    padding: 0;
    border-radius: 50%;
}

.pfc-item-shape-circle .pfc-item-label {
    display: none;
}

.pfc-main-close {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pfc-main-close::before,
.pfc-main-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 1.8px;
    background: currentColor;
    border-radius: 2px;
}

.pfc-main-close::before {
    transform: rotate(45deg);
}

.pfc-main-close::after {
    transform: rotate(-45deg);
}

.pfc-wrap.is-open .pfc-main-icon-icon-only .pfc-main-icon,
.pfc-wrap.is-open.pfc-main-shape-circle .pfc-main-icon {
    opacity: 0;
}

.pfc-wrap.is-open .pfc-main-icon-icon-only .pfc-main-close,
.pfc-wrap.is-open.pfc-main-shape-circle .pfc-main-close {
    display: flex;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .pfc-position-bottom-left {
        left: var(--pfc-tablet-x, var(--pfc-desktop-x, 24px));
        bottom: var(--pfc-tablet-y, var(--pfc-desktop-y, 26px));
    }

    .pfc-position-bottom-right {
        right: var(--pfc-tablet-x, var(--pfc-desktop-x, 24px));
        bottom: var(--pfc-tablet-y, var(--pfc-desktop-y, 26px));
    }
}

@media (max-width: 767px) {
    .pfc-position-bottom-left {
        left: var(--pfc-mobile-x, 16px);
        bottom: var(--pfc-mobile-y, 18px);
    }

    .pfc-position-bottom-right {
        right: var(--pfc-mobile-x, 16px);
        bottom: var(--pfc-mobile-y, 18px);
    }

    .pfc-item {
        max-width: calc(100vw - (var(--pfc-mobile-x, 16px) * 2));
    }
}

/* v1.0.1 - Keep icons aligned while labels remain visually centered */
.pfc-main-icon-left:not(.pfc-main-shape-circle) .pfc-main,
.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item,
.pfc-main-icon-right:not(.pfc-main-shape-circle) .pfc-main,
.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item {
    --pfc-main-icon-slot: calc(var(--pfc-main-icon-size, 22px) + 10px);
    --pfc-item-icon-slot: calc(var(--pfc-item-icon-size, 20px) + 10px);
    display: inline-grid;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.pfc-main-icon-left:not(.pfc-main-shape-circle) .pfc-main,
.pfc-main-icon-right:not(.pfc-main-shape-circle) .pfc-main {
    grid-template-columns: var(--pfc-main-icon-slot) minmax(0, auto) var(--pfc-main-icon-slot);
}

.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item,
.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item {
    grid-template-columns: var(--pfc-item-icon-slot) minmax(0, auto) var(--pfc-item-icon-slot);
}

.pfc-main-icon-left:not(.pfc-main-shape-circle) .pfc-main::after,
.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item::after,
.pfc-main-icon-right:not(.pfc-main-shape-circle) .pfc-main::before,
.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item::before {
    content: '';
    display: block;
}

.pfc-main-icon-left:not(.pfc-main-shape-circle) .pfc-main-icon,
.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item-icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
}

.pfc-main-icon-right:not(.pfc-main-shape-circle) .pfc-main-icon,
.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item-icon {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
}

.pfc-main-icon-left:not(.pfc-main-shape-circle) .pfc-main-label,
.pfc-main-icon-right:not(.pfc-main-shape-circle) .pfc-main-label,
.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item-label,
.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item-label {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
}

@media (max-width: 767px) {
    .pfc-mobile-compact-main-icon-only .pfc-main,
    .pfc-mobile-compact-all-icon-only .pfc-main {
        display: inline-flex !important;
        width: var(--pfc-main-size, 56px);
        height: var(--pfc-main-size, 56px);
        min-width: var(--pfc-main-size, 56px);
        padding: 0 !important;
        border-radius: 50% !important;
        gap: 0;
    }

    .pfc-mobile-compact-main-icon-only .pfc-main::before,
    .pfc-mobile-compact-main-icon-only .pfc-main::after,
    .pfc-mobile-compact-all-icon-only .pfc-main::before,
    .pfc-mobile-compact-all-icon-only .pfc-main::after {
        content: none !important;
    }

    .pfc-mobile-compact-main-icon-only .pfc-main-label,
    .pfc-mobile-compact-all-icon-only .pfc-main-label {
        display: none !important;
    }

    .pfc-mobile-compact-all-icon-only .pfc-item {
        display: inline-flex !important;
        width: var(--pfc-item-height, 46px);
        height: var(--pfc-item-height, 46px);
        min-width: var(--pfc-item-height, 46px);
        padding: 0 !important;
        border-radius: 50% !important;
        gap: 0;
    }

    .pfc-mobile-compact-all-icon-only .pfc-item::before,
    .pfc-mobile-compact-all-icon-only .pfc-item::after {
        content: none !important;
    }

    .pfc-mobile-compact-all-icon-only .pfc-item-label {
        display: none !important;
    }
}

/* v1.0.2 - Compact expanded icon mode to reduce page blocking */
.pfc-item-display-compact-icons .pfc-items {
    align-items: flex-start;
}

.pfc-position-bottom-right.pfc-item-display-compact-icons .pfc-items {
    align-items: flex-end;
}

.pfc-item-display-compact-icons .pfc-item {
    position: relative;
    display: inline-flex !important;
    width: var(--pfc-item-height, 46px);
    height: var(--pfc-item-height, 46px);
    min-width: var(--pfc-item-height, 46px);
    min-height: var(--pfc-item-height, 46px);
    padding: 0 !important;
    gap: 0;
    overflow: visible;
}

.pfc-item-display-compact-icons.pfc-item-shape-pill .pfc-item,
.pfc-item-display-compact-icons.pfc-item-shape-circle .pfc-item {
    border-radius: 50% !important;
}

.pfc-item-display-compact-icons.pfc-item-shape-rounded-square .pfc-item {
    border-radius: 14px !important;
}

.pfc-item-display-compact-icons .pfc-item::before,
.pfc-item-display-compact-icons .pfc-item::after {
    content: none !important;
}

.pfc-item-display-compact-icons .pfc-item-icon {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: center !important;
}

.pfc-item-display-compact-icons .pfc-item-label {
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%) translateX(-4px);
    display: inline-flex !important;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    color: var(--pfc-item-bg, #111);
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.pfc-position-bottom-right.pfc-item-display-compact-icons .pfc-item-label {
    left: auto;
    right: calc(100% + 10px);
    transform: translateY(-50%) translateX(4px);
}

.pfc-item-display-compact-icons .pfc-item:hover .pfc-item-label,
.pfc-item-display-compact-icons .pfc-item:focus-visible .pfc-item-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (hover: none), (max-width: 767px) {
    .pfc-item-display-compact-icons .pfc-item-label {
        display: none !important;
    }
}


/* v1.0.4 - Compact main button mode to avoid blocking page content */
.pfc-main-icon-icon-only .pfc-main,
.pfc-main-shape-circle .pfc-main {
    display: inline-flex !important;
    width: var(--pfc-main-size, 58px);
    height: var(--pfc-main-size, 58px);
    min-width: var(--pfc-main-size, 58px);
    padding: 0 !important;
    border-radius: 50% !important;
    gap: 0;
}

.pfc-main-icon-icon-only .pfc-main::before,
.pfc-main-icon-icon-only .pfc-main::after,
.pfc-main-shape-circle .pfc-main::before,
.pfc-main-shape-circle .pfc-main::after {
    content: none !important;
}

.pfc-main-icon-icon-only .pfc-main-label,
.pfc-main-shape-circle .pfc-main-label {
    display: none !important;
}

/* v1.0.5 - Consistent compact button size and optional visible outline */
.pfc-outline-enabled.pfc-main-shadow .pfc-main {
    box-shadow: 0 0 0 var(--pfc-outline-width, 2px) var(--pfc-outline-color, #fff), 0 14px 36px rgba(0, 0, 0, .22);
}

.pfc-outline-enabled.pfc-item-shadow .pfc-item {
    box-shadow: 0 0 0 var(--pfc-outline-width, 2px) var(--pfc-outline-color, #fff), 0 14px 36px rgba(0, 0, 0, .22);
}

.pfc-outline-enabled.pfc-main-no-shadow .pfc-main,
.pfc-outline-enabled.pfc-item-no-shadow .pfc-item {
    box-shadow: 0 0 0 var(--pfc-outline-width, 2px) var(--pfc-outline-color, #fff);
}

.pfc-outline-enabled .pfc-main:hover,
.pfc-outline-enabled.is-open .pfc-main,
.pfc-outline-enabled .pfc-item:hover {
    box-shadow: 0 0 0 var(--pfc-outline-width, 2px) var(--pfc-outline-color, #fff), 0 14px 36px rgba(0, 0, 0, .22);
}

.pfc-item-display-compact-icons .pfc-item,
.pfc-main-icon-icon-only .pfc-main,
.pfc-main-shape-circle .pfc-main {
    aspect-ratio: 1 / 1;
}

/* v1.0.7 - Main button can stay icon-only while expanded buttons show icon + text with a fixed admin width */
.pfc-item-display-full-buttons .pfc-item {
    width: var(--pfc-item-min-width, 210px);
    min-width: var(--pfc-item-min-width, 210px);
    min-height: var(--pfc-item-height, 52px);
}

.pfc-item-display-full-buttons .pfc-item-label {
    display: inline-flex;
}



/* v1.0.8 - Separate expanded icon placement and text alignment controls */
.pfc-item-display-full-buttons.pfc-item-icon-left:not(.pfc-item-shape-circle) .pfc-item,
.pfc-item-display-full-buttons.pfc-item-icon-right:not(.pfc-item-shape-circle) .pfc-item {
    grid-template-columns: var(--pfc-item-icon-slot, 44px) minmax(0, 1fr) var(--pfc-item-icon-slot, 44px);
}

.pfc-item-display-full-buttons.pfc-item-icon-center:not(.pfc-item-shape-circle) .pfc-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pfc-item-display-full-buttons.pfc-item-icon-center:not(.pfc-item-shape-circle) .pfc-item::before,
.pfc-item-display-full-buttons.pfc-item-icon-center:not(.pfc-item-shape-circle) .pfc-item::after {
    content: none !important;
}

.pfc-item-display-full-buttons.pfc-item-icon-center .pfc-item-icon,
.pfc-item-display-full-buttons.pfc-item-icon-center .pfc-item-label {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
}

.pfc-item-display-full-buttons .pfc-item-label {
    min-width: 0;
}

.pfc-item-display-full-buttons.pfc-item-text-left .pfc-item-label {
    justify-self: stretch;
    justify-content: flex-start;
    text-align: left;
}

.pfc-item-display-full-buttons.pfc-item-text-center .pfc-item-label {
    justify-self: stretch;
    justify-content: center;
    text-align: center;
}

.pfc-item-display-full-buttons.pfc-item-text-right .pfc-item-label {
    justify-self: stretch;
    justify-content: flex-end;
    text-align: right;
}

.pfc-item-display-full-buttons.pfc-item-icon-center.pfc-item-text-left .pfc-item,
.pfc-item-display-full-buttons.pfc-item-icon-center.pfc-item-text-center .pfc-item,
.pfc-item-display-full-buttons.pfc-item-icon-center.pfc-item-text-right .pfc-item {
    justify-content: center;
}

.pfc-item-display-full-buttons.pfc-item-icon-top .pfc-item-label {
    justify-content: center;
    text-align: center;
}

/* v1.0.9 - Sequential open animation: items slide in one by one from the page side */
.pfc-animation-stagger-side .pfc-items {
    opacity: 1;
    transform: none !important;
    transition: visibility 0s linear var(--pfc-animation-duration, 260ms);
}

.pfc-animation-stagger-side.is-open .pfc-items {
    transition-delay: 0s;
}

.pfc-animation-stagger-side .pfc-item {
    opacity: 0;
    transform: translateX(calc(var(--pfc-stagger-distance, 28px) * -1)) scale(.98);
    transition:
        opacity var(--pfc-animation-duration, 260ms) cubic-bezier(.2, .8, .2, 1),
        transform var(--pfc-animation-duration, 260ms) cubic-bezier(.2, .8, .2, 1),
        background-color .22s ease,
        color .22s ease,
        border-color .22s ease;
    transition-delay: 0ms;
    will-change: opacity, transform;
}

.pfc-position-bottom-right.pfc-animation-stagger-side .pfc-item {
    transform: translateX(var(--pfc-stagger-distance, 28px)) scale(.98);
}

.pfc-animation-stagger-side.is-open .pfc-item {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: calc(var(--pfc-stagger-delay, 75ms) * var(--pfc-item-index, 0));
}

.pfc-animation-stagger-side.is-open .pfc-item:hover {
    transform: translateX(0) translateY(-1px) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .pfc-animation-stagger-side .pfc-item,
    .pfc-animation-stagger-side.is-open .pfc-item {
        transform: none !important;
        transition-delay: 0ms !important;
        transition-duration: 0ms !important;
    }
}


/* v1.0.10 - Prevent sticky white hover state on touch devices after closing */
@media (hover: none), (pointer: coarse) {
    .pfc-wrap:not(.is-open) .pfc-main:hover,
    .pfc-wrap:not(.is-open) .pfc-main:focus {
        color: var(--pfc-main-color, #fff);
        background: var(--pfc-main-bg, #111);
        border-color: var(--pfc-main-border, #111);
    }

    .pfc-outline-enabled:not(.is-open) .pfc-main:hover,
    .pfc-outline-enabled:not(.is-open) .pfc-main:focus {
        box-shadow: 0 0 0 var(--pfc-outline-width, 2px) var(--pfc-outline-color, #fff), 0 14px 36px rgba(0, 0, 0, .22);
    }
}

/* v1.0.13 - redesigned front-end customer help prompt */
.pfc-prompt {
    position: absolute;
    left: 0;
    bottom: calc(var(--pfc-main-size, 56px) + 14px);
    display: none;
    align-items: center;
    max-width: min(var(--pfc-prompt-max-width, 260px), calc(100vw - 32px));
    min-height: 42px;
    padding: 12px 16px;
    color: var(--pfc-prompt-color, #fff);
    background: var(--pfc-prompt-bg, #111);
    border: 1px solid var(--pfc-prompt-border, #111);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    cursor: pointer;
    font: inherit;
    font-size: var(--pfc-prompt-font-size, 13px);
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 2;
}

.pfc-prompt::after {
    content: '';
    position: absolute;
    left: 22px;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: var(--pfc-prompt-bg, #111);
    border-right: 1px solid var(--pfc-prompt-border, #111);
    border-bottom: 1px solid var(--pfc-prompt-border, #111);
    transform: rotate(45deg);
}

.pfc-position-bottom-right .pfc-prompt {
    left: auto;
    right: 0;
    text-align: left;
}

.pfc-position-bottom-right .pfc-prompt::after {
    left: auto;
    right: 22px;
}

.pfc-prompt.is-visible:not(.is-hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.pfc-wrap.is-open .pfc-prompt,
.pfc-prompt.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.98);
    pointer-events: none;
}

@media (min-width: 1025px) {
    .pfc-prompt-desktop {
        display: inline-flex;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .pfc-prompt-tablet {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .pfc-prompt-mobile {
        display: inline-flex;
        max-width: min(var(--pfc-prompt-max-width, 260px), calc(100vw - (var(--pfc-mobile-x, 16px) * 2) - 8px));
        font-size: max(12px, var(--pfc-prompt-font-size, 13px));
        bottom: calc(var(--pfc-main-size, 56px) + 12px);
    }
}

/* v1.0.16 - selectable prompt entrance animations */
@keyframes pfcPromptSoftBounce {
    0% { opacity: 0; transform: translateY(14px) scale(.92); }
    55% { opacity: 1; transform: translateY(-4px) scale(1.03); }
    78% { transform: translateY(1px) scale(.995); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pfcPromptPop {
    0% { opacity: 0; transform: translateY(10px) scale(.88); }
    65% { opacity: 1; transform: translateY(-2px) scale(1.06); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pfcPromptSlideUp {
    0% { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pfcPromptFade {
    0% { opacity: 0; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pfcPromptPulse {
    0% { opacity: 0; transform: translateY(10px) scale(.94); }
    45% { opacity: 1; transform: translateY(0) scale(1); }
    62% { transform: translateY(0) scale(1.035); }
    78% { transform: translateY(0) scale(.99); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.pfc-prompt-animation-soft-bounce.is-visible:not(.is-hidden) {
    animation: pfcPromptSoftBounce .48s cubic-bezier(.22, 1, .36, 1) both;
}

.pfc-prompt-animation-pop.is-visible:not(.is-hidden) {
    animation: pfcPromptPop .38s cubic-bezier(.2, .95, .3, 1.15) both;
}

.pfc-prompt-animation-slide-up.is-visible:not(.is-hidden) {
    animation: pfcPromptSlideUp .34s ease-out both;
}

.pfc-prompt-animation-fade.is-visible:not(.is-hidden) {
    animation: pfcPromptFade .28s ease-out both;
}

.pfc-prompt-animation-pulse.is-visible:not(.is-hidden) {
    animation: pfcPromptPulse .72s cubic-bezier(.22, 1, .36, 1) both;
}

.pfc-prompt-animation-none.is-visible:not(.is-hidden) {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .pfc-prompt.is-visible:not(.is-hidden) {
        animation: none !important;
    }
}

/* v1.0.20 - My Account page scoped color protection only
   Keep original floating contact layout/animation unchanged. This only prevents
   WooCommerce My Account link color rules from overriding the button text/icons. */
body.woocommerce-account .pfc-wrap .pfc-main {
    color: var(--pfc-main-color, #fff) !important;
    -webkit-text-fill-color: var(--pfc-main-color, #fff) !important;
    text-decoration: none !important;
}

body.woocommerce-account .pfc-wrap .pfc-main:hover,
body.woocommerce-account .pfc-wrap.is-open .pfc-main,
body.woocommerce-account .pfc-wrap .pfc-main:focus {
    color: var(--pfc-main-hover-color, #111) !important;
    -webkit-text-fill-color: var(--pfc-main-hover-color, #111) !important;
}

body.woocommerce-account .pfc-wrap .pfc-item {
    color: var(--pfc-item-color, #fff) !important;
    -webkit-text-fill-color: var(--pfc-item-color, #fff) !important;
    text-decoration: none !important;
}

body.woocommerce-account .pfc-wrap .pfc-item:hover,
body.woocommerce-account .pfc-wrap .pfc-item:focus {
    color: var(--pfc-item-hover-color, #111) !important;
    -webkit-text-fill-color: var(--pfc-item-hover-color, #111) !important;
}

body.woocommerce-account .pfc-wrap .pfc-main-icon,
body.woocommerce-account .pfc-wrap .pfc-main-label,
body.woocommerce-account .pfc-wrap .pfc-item-icon,
body.woocommerce-account .pfc-wrap .pfc-item-label {
    color: currentColor !important;
    -webkit-text-fill-color: currentColor !important;
}

body.woocommerce-account .pfc-wrap .pfc-main-icon svg,
body.woocommerce-account .pfc-wrap .pfc-item-icon svg {
    color: currentColor !important;
    fill: none !important;
    stroke: currentColor !important;
    filter: none !important;
}

body.woocommerce-account .pfc-wrap .pfc-main-icon svg *,
body.woocommerce-account .pfc-wrap .pfc-item-icon svg * {
    fill: none !important;
    stroke: currentColor !important;
    filter: none !important;
}
