/* --- GOOGLE FONTS FOR CUSTOM LAUNCHER --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* --- CUSTOM LAUNCHER DESIGN SYSTEM --- */
#lulo-custom-launcher-container {
    display: none !important;
    position: fixed;
    bottom: 20px;
    right: 24px;
    z-index: 2147483647;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

/* Custom buttons styling */
.lulo-launcher-btn {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    padding: 8px;
    box-sizing: border-box;
    background: linear-gradient(270deg, rgba(177, 87, 245, 0.1) 0%, rgba(82, 193, 255, 0.3) 49.52%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(14.47px);
    -webkit-backdrop-filter: blur(14.47px);
    box-shadow:
        11.37px 11.37px 22.74px 0px rgba(82, 193, 255, 0.3),
        0px 4px 12px 0px #0079CB29 inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.255);
    display: flex;
    align-items: center;
}

.lulo-launcher-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 24px 50px rgba(162, 226, 254, 0.65), 0 12px 32px rgba(219, 203, 255, 0.45);
}

.lulo-launcher-btn:active {
    transform: translateY(-1px) scale(0.97);
}

#chat_support_floating_button_key {
    border-radius: 9999px;
    width: 148.73px;
    height: 86px;
    padding-right: 10px;
    gap: 10px;
    justify-content: flex-start;
}

#chat_support_floating_open_button_key {
    border-radius: 50%;
    width: 74px;
    height: 74px;
    justify-content: center;
}

/* Circle accent inside button */
.lulo-icon-circle {
    width: 64.73px;
    height: 64.73px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(82, 193, 255, 0.15) 0%, rgba(230, 255, 0, 0.025) 100%);
    border: 1.0px solid rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(19.68px);
    -webkit-backdrop-filter: blur(19.68px);
    box-shadow: 15.46px 15.46px 30.93px 0px rgba(82, 193, 255, 0.3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.lulo-icon-circle svg {
    display: block;
    width: 37px;
    height: 37px;
}

/* Circle accent inside button when chat is open */
.lulo-icon-circle_open {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(82, 193, 255, 0.15) 0%, rgba(230, 255, 0, 0.025) 100%);
    border: 1.0px solid rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(19.68px);
    -webkit-backdrop-filter: blur(19.68px);
    box-shadow: 15.46px 15.46px 30.93px 0px rgba(82, 193, 255, 0.3);
    flex-shrink: 0;
    box-sizing: border-box;
}


.lulo-icon-circle_open svg {
    display: block;
    width: 25.16px;
    height: 25.16px;
}

/* Typography */
.lulo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #1e2c4b;
    user-select: none;
    line-height: 1.15;
    text-align: left;
}

.lulo-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.lulo-subtitle {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.1px;
}

/* Hide Zendesk Widget default launcher */
iframe[title*="launcher" i],
iframe[title*="Launcher" i],
iframe#launcher {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Move chat window upward above our buttons */
#chat_support_window_key,
iframe[title*="Zendesk" i]:not([title*="launcher" i]):not([style*="height: 80px"]):not([style*="height: 70px"]) {
    bottom: 100px !important;
}