/* Mobile CTA Banner — only shown on mobile, fixed at bottom of screen */
#k4u-mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 99999;
    border-radius: 6px;
    box-shadow: 0 -6px 6px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

@media (max-width: 768px) {
    #k4u-mobile-cta {
        display: block;
    }
}

#k4u-mobile-cta .k4u-mcta-link {
    display: flex;
    align-items: center;
    background-color: #333333;
    border-radius: 6px;
    height: 64px;
    padding: 0 18px 0 12px;
    text-decoration: none;
    gap: 7px;
    box-sizing: border-box;
}

/* Left icon — image already includes the gold circle background */
#k4u-mobile-cta .k4u-mcta-icon {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
}

#k4u-mobile-cta .k4u-mcta-icon img {
    width: 43px;
    height: 43px;
    display: block;
}

/* Text block */
#k4u-mobile-cta .k4u-mcta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#k4u-mobile-cta .k4u-mcta-title {
    font-family: "sofia pro M", "Sofia Pro", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0;
    display: block;
}

#k4u-mobile-cta .k4u-mcta-subtitle {
    font-family: "sofia pro M", "Sofia Pro", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0;
    display: block;
}

/* Right arrow — SVG double chevron */
#k4u-mobile-cta .k4u-mcta-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 9px;
}

/* Lift floating buttons above the CTA banner (CTA top edge = bottom 84px) */
@media (max-width: 768px) {
    #back-to-top {
        bottom: 104px !important;
    }
    /* Tidio chat widget outer containers */
    #tidio-chat,
    #tidio-chat-code {
        bottom: 100px !important;
    }
    .xoo-wsc-basket {
        bottom: 256px !important;
    }
    /* joinchat 同样要躲开CTA banner，卡在抬升后的 #back-to-top(104) 与 .xoo-wsc-basket(256) 之间 */
    .joinchat {
        bottom: 172px !important;
    }
}
