
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }
    }
    .chat-widget-container {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 999;
        cursor: pointer;
    }
    .chat-widget {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .chat-toggle-button {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background-image: linear-gradient(135deg, red, purple);
        color: White;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        animation: pulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
        transition: transform 0.3s ease;
    }
    .chat-widget.active .chat-toggle-button {
        animation: none;
        transform: rotate(360deg);
    }
    .chat-toggle-button i {
        font-size: 22px;
        position: absolute;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    }
    .icon-close {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    .chat-options {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        list-style: none;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .chat-option {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        position: relative;
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition-delay: var(--delay);
    }
    .chat-option:hover {
        transform: scale(1.15) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }
    .chat-option i {
        font-size: 20px;
        color: white;
    }
    .chat-option.whatsapp  { background-color: #25D366; }
    .chat-option.telegram  { background-color: #0088cc; }
    .chat-option.messenger { background-color: #00B2FF; }
    .chat-option.call      { background-color: #34B7F1; }
    .chat-option::after {
        content: attr(data-tooltip);
        position: absolute;
        right: 120%;
        top: 50%;
        transform: translateY(-50%) translateX(10px);
        background-color: #333;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    .chat-option:hover::after {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
    .chat-widget.active .chat-options {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .chat-widget.active .chat-option {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .chat-widget.active .icon-chat {
        transform: rotate(180deg) scale(0);
        opacity: 0;
    }
    .chat-widget.active .icon-close {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    @media (max-width: 768px) {
        .chat-widget-container {
            bottom: 85px;
            right: 15px;
        }
        .chat-toggle-button {
            width: 50px;
            height: 50px;
        }
        .chat-toggle-button i {
            font-size: 20px;
        }
        .chat-option {
            width: 42px;
            height: 42px;
        }
        .chat-option i {
            font-size: 18px;
        }
        .chat-options {
            gap: 10px;
        }
    }
style>
/* ================== Banner Style ================== */
.pwa-install-banner {
    display: none; 
    align-items: center;
    justify-content: space-between;
    background: {{ $config['theme_color'] }};
    color: #fff;
    padding: 8px 12px; 
    border-radius: 12px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
    position: fixed;
    bottom: 80px; 
    left: 15px;
    right: 15px;
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s ease;


.pwa-install-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.pwa-install-banner.hide {
    transform: translateY(150%);
    opacity: 0;
}
.pwa-install-banner img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}
.pwa-install-banner .install-btn {
    background: #fff;
    color: {{ $config['theme_color'] }};
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}
.pwa-install-banner .close-btn {
    color: #fff;
    font-size: 20px;
    margin-left: 10px;
    cursor: pointer;
}
</style>