<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Chat Container */
#floating-chatbox {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    max-height: 70vh;
    background-color: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    visibility: visible;
    opacity: 0;
}

#floating-chatbox.open {
    transform: translateX(0);
    opacity: 1;
}

#floating-chatbox.closed {
    transform: translateX(400px);
    opacity: 0;
}

/* Full chatbot container */
#chatgpt-chatbot {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff !important;
}

/* Chat Header */
#chatgpt-chatbot::before {
    content: attr(data-name);
    display: block;
    padding: 10px 15px;
    font-size: 16px !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    flex-shrink: 0;
    background-color: var(--ploko-header-bg, #3a6fc0);
    color: var(--ploko-header-text, #ffffff);
}

/* Chat Log */
#chat-log {
    flex: 1;
    padding: 20px;
    padding-bottom: 40px; /* Extra space at the bottom for visual separation */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
    display: flex;
    flex-direction: column;
    background-color: #ffffff !important;
}

#chat-log::-webkit-scrollbar {
    width: 6px;
}

#chat-log::-webkit-scrollbar-track {
    background: transparent;
}

#chat-log::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* Messages */
.message {
    max-width: 80%;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    position: relative;
    clear: both;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message.user {
    float: right;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
    background-color: rgba(58, 111, 192, 0.9) !important;
    color: white !important;
}

.message.assistant {
    float: left;
    border-bottom-left-radius: 5px;
    align-self: flex-start;
    background-color: rgba(240, 240, 240, 0.9) !important;
    color: #333 !important;
}

.message.initial {
    background-color: rgba(240, 240, 240, 0.7) !important;
}

.message.error {
    background-color: rgba(255, 230, 230, 0.9) !important;
    color: #d63031;
    float: none;
    margin: 10px auto;
    text-align: center;
}

/* Loading Animation */
.message.loading::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
    margin-left: 4px;
    animation: loading 1s infinite;
}

@keyframes loading {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Chat Footer */
#chat-footer {
    padding: 15px;
    background-color: transparent !important;
    border-top: none !important;
    flex-shrink: 0;
    z-index: 10;
}

#chat-form {
    margin-bottom: 10px;
    background-color: transparent !important;
}

#chat-footer .input-group {
    background-color: transparent !important;
}

#chat-input,
#contact-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
    background-color: #ffffff !important;
}

#chat-input:focus,
#contact-input:focus {
    outline: none;
    border-color: #002a44;
}

/* Any button with the custom-btn class */
.custom-btn,
button.custom-btn,
.input-group-append .custom-btn,
.button-group .custom-btn,
input[type="submit"].custom-btn,
#chat-form .custom-btn,
#special-chatbox-1 .custom-btn,
#special-chatbox-2 .custom-btn,
#special-chatbox-3 .custom-btn,
#special-chatbox-4 .custom-btn {
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    color: #ffffff !important;
    background-color: #002a44 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    position: relative !important;
    overflow: visible !important;
    font-family: sans-serif !important;
}

/* Remove all default button content */
.custom-btn *,
.custom-btn span,
.custom-btn i,
.custom-btn svg,
.custom-btn img,
.custom-btn .dashicons,
.custom-btn::before,
.custom-btn::after,
#send-message *,
#send-message span,
#send-message i,
#send-message svg,
#send-message img,
#send-message .dashicons,
#send-message::before,
#publish-chat *,
#publish-chat span,
#publish-chat i,
#publish-chat svg,
#publish-chat img,
#publish-chat .dashicons,
#publish-chat::before,
#whatsapp-link *,
#whatsapp-link span,
#whatsapp-link i,
#whatsapp-link svg,
#whatsapp-link img,
#whatsapp-link .dashicons,
#whatsapp-link::before {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Generic submit button with arrow */
.custom-btn[type="submit"],
button.custom-btn[type="submit"],
#chat-form button[type="submit"],
.button-group button[type="submit"].custom-btn {
    position: relative !important;
    z-index: 5 !important;
}

.custom-btn[type="submit"]::after,
button.custom-btn[type="submit"]::after,
#chat-form button[type="submit"]::after,
.button-group button[type="submit"].custom-btn::after {
    content: 'â†‘' !important;
    font-family: sans-serif !important;
    font-size: 24px !important;
    color: white !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    text-align: center !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Send message button */
#send-message,
button#send-message {
    position: relative !important;
    z-index: 5 !important;
}

#send-message::after,
button#send-message::after {
    content: 'â†‘' !important;
    font-family: sans-serif !important;
    font-size: 24px !important;
    color: white !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    text-align: center !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Email submit button */
#publish-chat,
button#publish-chat {
    position: relative !important;
    z-index: 5 !important;
}

#publish-chat::after,
button#publish-chat::after {
    content: '' !important;
    font-family: sans-serif !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    /* Envelope icon SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

/* WhatsApp button */
#whatsapp-link,
button#whatsapp-link,
a#whatsapp-link,
#whatsapp-link.custom-btn {
    background-color: #25D366 !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 5 !important;
}

#whatsapp-link:hover,
button#whatsapp-link:hover,
a#whatsapp-link:hover,
#whatsapp-link.custom-btn:hover {
    background-color: #22c35e !important;
}

#whatsapp-link::after,
button#whatsapp-link::after,
a#whatsapp-link::after,
#whatsapp-link.custom-btn::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    display: block !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Toggle Button */
#toggle-dot {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background-color: #3a6fc0 !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    cursor: pointer !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.2s ease-in-out !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

#toggle-dot:hover {
    transform: scale(1.05) !important;
}

/* Default emoji icon */
#toggle-dot:before {
    content: 'ðŸ’¬';
    font-size: 24px;
    color: white;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#toggle-dot.active {
    animation: none;
}

/* Logo styles */
#toggle-dot.has-logo {
    padding: 8px !important;
}

#toggle-dot.has-logo:before {
    display: none !important;
}

#toggle-dot img.toggle-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Force hide toggle dot when special box is open */
body.special-box-open #toggle-dot,
.special-chatbox.sliding-in ~ #toggle-dot {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Special chatbox header and back button */
.special-chatbox-header .back-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
}

.special-chatbox-header .back-button svg {
    width: 24px !important;
    height: 24px !important;
    fill: white !important;
}

.special-chatbox-header .back-button svg path {
    fill: white !important;
}

/* Completely remove the emoji icon when has-logo class is present */
#toggle-dot.has-logo:before {
    display: none !important;
}

/* Override any inline SVG when logo class is present */
#toggle-dot.has-logo {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    content: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* When we have an SVG icon but no logo, make sure emoji is hidden */
#toggle-dot[style*="background-image"]:not(.has-logo):before {
    content: none !important;
    display: none !important;
}

/* Bottom Row */
#bottom-row {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Tooltips */
.tooltip {
    z-index: 9999 !important;
}

.tooltip-inner {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* Mobile specific styles */
@media (max-width: 480px) {
    .custom-btn,
    .custom-btn[type="submit"],
    button.custom-btn[type="submit"],
    #send-message,
    #publish-chat,
    #whatsapp-link {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        min-width: 40px !important;
    }

    /* Position toggle button on 50px from bottom on mobile */
    #toggle-dot {
        bottom: 50px !important; /* Set to exactly 50px on mobile */
    }

    /* Ensure consistent icon sizes */
    .custom-btn[type="submit"]::after,
    button.custom-btn[type="submit"]::after,
    #send-message::after,
    button#send-message::after {
        font-size: 24px !important;
        width: 24px !important;
        height: 24px !important;
    }

    #publish-chat::after,
    button#publish-chat::after {
        width: 20px !important;
        height: 20px !important;
    }

    #whatsapp-link::after,
    button#whatsapp-link::after,
    a#whatsapp-link::after,
    #whatsapp-link.custom-btn::after {
        width: 24px !important;
        height: 24px !important;
    }

    /* WhatsApp button specific styles */
    #whatsapp-link .dashicons {
        display: none !important; /* Hide dashicons class icon */
    }

    #whatsapp-link::before {
        width: 34px !important;
        height: 34px !important;
        margin: -5px !important;
    }

    /* Ensure Send icon is visible */
    #send-message::before {
        content: "\f310" !important;
        font-family: dashicons !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ensure Publish icon is visible */
    #publish-chat::before {
        content: "\f147" !important;
        font-family: dashicons !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #floating-chatbox {
        width: calc(100% - 40px);
        height: calc(100% - 120px);
        bottom: 50px;
    }

    #toggle-dot {
        width: 50px;
        height: 50px;
    }

    /* Special chatbox mobile positioning */
    .special-chatbox {
        width: 90vw !important;
        height: 90vh !important;
        max-height: 90vh !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    .special-chatbox.active {
        transform: translate(-50%, -50%) !important;
    }

    .special-chatbox-content {
        height: calc(90vh - 60px) !important;
        overflow-y: auto !important;
    }

    /* Back button positioning for mobile */
    .special-chatbox .back-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        right: 10px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10001 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: 36px !important;
        height: 36px !important;
        cursor: pointer !important;
    }

    .special-chatbox .back-button svg {
        width: 24px !important;
        height: 24px !important;
    }

    #toggle-dot {
        bottom: 25px !important;
        position: fixed !important;
        z-index: 999999 !important;
    }
}

/* Base chatbox styles */
#floating-chatbox,
.special-chatbox {
    position: fixed;
    bottom: 50px !important;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    max-height: 70vh;
    background-color: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    visibility: visible;
    opacity: 0;
}

/* Main chatbox states */
#floating-chatbox.open,
.special-chatbox.open {
    transform: translateX(0);
    opacity: 1;
}

#floating-chatbox.closed,
.special-chatbox.closed {
    transform: translateX(400px);
    opacity: 0;
}

/* Headers */
#chatgpt-chatbot::before,
.special-chatbox-header {
    content: attr(data-name);
    display: block;
    padding: 10px 15px;
    font-size: 16px !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    flex-shrink: 0;
    background-color: var(--ploko-header-bg, #3a6fc0);
    color: var(--ploko-header-text, #ffffff);
}

.special-chatbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    min-height: 48px;
    position: relative;
    width: 100%;
}

.special-chatbox-header .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-chatbox-header h3 {
    flex-grow: 1;
    text-align: left;
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.special-chatbox-header .back-button,
.special-chatbox-header .close-button {
    border: none !important;
    background: none !important;
    color: inherit !important;
    box-shadow: none !important;
    padding: 5px !important;
}

.special-chatbox-header .back-button .dashicons,
.special-chatbox-header .close-button .dashicons {
    display: flex !important;
    color: white !important;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    align-items: center;
    justify-content: center;
    font-family: dashicons !important;
    font-style: normal !important;
    font-weight: normal !important;
    speak: never;
}

.special-chatbox-header .special-chatbox-title {
    display: block !important;
    text-align: left !important;
    margin-right: 30px !important;
}

/* Content areas */
#chat-log,
.special-chatbox-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #ffffff !important;
}

.special-chatbox-content {
    padding-bottom: 40px;
}

/* Form areas */
#chat-footer,
.special-chatbox-form {
    padding: 15px 20px;
    background-color: transparent !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Rich text content styles */
.special-chatbox-content h1, 
.special-chatbox-content h2, 
.special-chatbox-content h3 {
    margin-bottom: 15px;
    color: var(--ploko-header-bg, #3a6fc0);
}

.special-chatbox-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.special-chatbox-content ul, 
.special-chatbox-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.special-chatbox-content a {
    color: var(--ploko-header-bg, #3a6fc0);
    text-decoration: none;
}

.special-chatbox-content a:hover {
    text-decoration: underline;
}

.special-chatbox-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
}

/* Ensure main chatbox slides properly */
#floating-chatbox.slide-left {
    transform: translateX(-400px);
    opacity: 0;
    pointer-events: none;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-row input {
    flex: 1;
}

.button-group {
    display: flex;
    gap: 5px;
}

#chat-form {
    margin-bottom: 10px;
    background-color: transparent !important;
}

#chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #ffffff !important;
}

.custom-btn {
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    color: #ffffff !important;
    background-color: #002a44 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    position: relative !important;
    overflow: visible !important;
}

/* Pulsing toggle dot */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Message icons */
.message.assistant::before {
    content: 'ðŸ¤–';
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    color: #000;
}

.message.user::before {
    content: 'ðŸ‘¤';
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    color: #000;
}

/* Button icons for all screens */
.custom-btn .dashicons {
    display: none !important; /* Hide all dashicons */
}

/* WhatsApp button styles */
#whatsapp-link {
    position: relative !important;
    overflow: visible !important;
}

#whatsapp-link::before {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

#whatsapp-link span,
#whatsapp-link .dashicons {
    display: none !important;
}

@media (max-width: 480px) {
    #whatsapp-link {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #whatsapp-link::before {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    #toggle-dot {
        width: 45px !important;
        height: 45px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    #toggle-dot.has-logo {
        padding: 6px !important;
    }

    /* Mobile: slide-in special chatbox like main chatbox */
    .special-chatbox {
        width: 90vw !important;
        height: 90vh !important;
        max-height: 90vh !important;
        position: fixed !important;
        bottom: 50px !important;
        right: 20px !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .special-chatbox.active {
        transform: translateX(0) !important;
    }

    .special-chatbox-content {
        height: calc(90vh - 60px) !important;
        max-height: calc(90vh - 60px) !important;
        overflow-y: auto !important;
        flex: 1 !important;
    }
}

/* Special chatbox base styles */
.special-chatbox {
    position: fixed !important;
    bottom: 50px !important;
    right: 20px !important;
    width: 350px !important;
    max-width: 90vw !important;
    height: 500px !important;
    max-height: 70vh !important;
    background-color: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 999999 !important;
    display: none !important;
    flex-direction: column !important;
    transform: translateX(400px) !important;
    transition: transform 0.3s ease-in-out !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.special-chatbox.visible {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.3s ease-in-out !important;
}

.special-chatbox.active {
    transform: translateX(0) !important;
}

/* Special chatbox header */
.special-chatbox-header {
    background-color: var(--ploko-header-bg, #3a6fc0) !important;
    color: white !important;
    padding: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* Special chatbox content */
.special-chatbox-content {
    padding: 20px !important;
    height: calc(100% - 60px) !important;
    overflow-y: auto !important;
}

/* Mobile styles - MUST be after base styles */
@media (max-width: 480px) {
    .special-chatbox {
        width: 90vw !important;
        height: 90vh !important;
        max-height: 90vh !important;
        position: fixed !important;
        top: auto !important;
        left: auto !important;
        right: 20px !important;
        bottom: 50px !important;
        transform: translateX(400px) !important;
    }

    .special-chatbox.active {
        transform: translateX(0) !important;
    }

    .special-chatbox-content {
        height: calc(90vh - 60px) !important;
        overflow-y: auto !important;
    }

    /* Back button positioning for mobile */
    .special-chatbox .back-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        right: 10px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10001 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: 36px !important;
        height: 36px !important;
        cursor: pointer !important;
    }

    .special-chatbox .back-button svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Override mobile special-chatbox slide behavior for proper slide animation */
@media (max-width: 600px) {
    .special-chatbox.visible {
        display: flex !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease-in-out !important;
    }
    .special-chatbox.visible.active {
        transform: translateX(0) !important;
    }
}
@media (max-width: 480px) {
    .special-chatbox.visible {
        display: flex !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease-in-out !important;
    }
    .special-chatbox.visible.active {
        transform: translateX(0) !important;
    }
}

/* Slide-up reposition for chatboxes */
#floating-chatbox.position-top,
.special-chatbox.position-top {
    height: 90vh !important;
    max-height: 90vh !important;
} </pre></body></html>