
    @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>
<style>
    /* ✅ NEW SUPPORT WIDGET START */
    .support-widget-container {
        position: fixed;
        right: 18px;
        bottom: 92px;
        z-index: 99999;
        font-family: inherit;
    }

    .support-widget {
        position: relative;
    }

    .support-main-btn {
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ff7a00, #ff5a00);
        color: #fff;
        box-shadow: 0 14px 35px rgba(255, 106, 0, 0.35);
        transition: all .25s ease;
        min-width: 230px;
    }

    .support-main-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(255, 106, 0, 0.45);
    }

    .support-main-text {
        text-align: left;
        line-height: 1.1;
    }

    .support-main-text strong {
        display: block;
        font-size: 20px;
        font-weight: 900;
        color: #fff;
    }

    .support-main-text span {
        display: block;
        margin-top: 4px;
        font-size: 14px;
        font-weight: 700;
        color: rgba(255,255,255,.88);
    }

    .support-chat-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        border: 3px solid rgba(255,255,255,.65);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .support-bubble {
        width: 31px;
        height: 23px;
        border-radius: 8px;
        background: #fff;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .support-bubble:after {
        content: "";
        position: absolute;
        right: 5px;
        bottom: -6px;
        border-width: 6px 0 0 8px;
        border-style: solid;
        border-color: transparent transparent transparent #fff;
    }

    .support-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #ff7a00;
        display: inline-block;
        animation: supportDotJump 1s infinite ease-in-out;
    }

    .support-dot:nth-child(2) {
        animation-delay: .15s;
    }

    .support-dot:nth-child(3) {
        animation-delay: .3s;
    }

    @keyframes supportDotJump {
        0%, 80%, 100% {
            transform: translateY(0);
            opacity: .55;
        }
        40% {
            transform: translateY(-6px);
            opacity: 1;
        }
    }

    .support-popup-box {
        position: absolute;
        right: 0;
        bottom: 82px;
        width: 360px;
        max-width: calc(100vw - 36px);
        border-radius: 14px;
        background: #111827;
        padding: 18px;
        box-shadow: 0 18px 55px rgba(15, 23, 42, .35);
        display: none;
        animation: supportPopupIn .22s ease;
    }

    .support-widget.active .support-popup-box {
        display: block;
    }

    @keyframes supportPopupIn {
        from {
            transform: translateY(12px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .support-popup-title {
        color: #fff;
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 14px;
    }

    .support-option {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 14px;
        border-radius: 12px;
        text-decoration: none !important;
        margin-bottom: 11px;
        transition: .2s ease;
    }

    .support-option:hover {
        transform: translateX(3px);
        opacity: .96;
    }

    .support-option:last-child {
        margin-bottom: 0;
    }

    .support-option-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 14px;
        background: rgba(255,255,255,.14);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .support-option-icon i {
        color: #fff;
        font-size: 31px;
    }

    .support-option-text strong {
        display: block;
        color: #fff;
        font-size: 22px;
        font-weight: 900;
        line-height: 1;
    }

    .support-option-text span {
        display: block;
        color: rgba(255,255,255,.78);
        margin-top: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .support-whatsapp {
        background: #16a34a;
    }

    .support-telegram {
        background: #229ed9;
    }

    .support-messenger {
        background: #2563eb;
    }

    .support-call {
        background: #f59e0b;
    }

    .support-close-btn {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 8px solid rgba(255, 122, 0, .22);
        background: #ff7a00;
        color: #fff;
        display: none;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        cursor: pointer;
        box-shadow: 0 12px 32px rgba(255, 106, 0, .35);
    }

    .support-close-btn i {
        font-size: 30px;
        color: #fff;
    }

    .support-widget.active .support-main-btn {
        display: none;
    }

    .support-widget.active .support-close-btn {
        display: flex;
    }

    @media (max-width: 576px) {
        .support-widget-container {
            right: 14px;
            bottom: 86px;
        }

        .support-main-btn {
            min-width: 210px;
            padding: 11px 14px;
        }

        .support-main-text strong {
            font-size: 18px;
        }

        .support-main-text span {
            font-size: 13px;
        }

        .support-popup-box {
            width: 330px;
            bottom: 88px;
        }

        .support-option-text strong {
            font-size: 20px;
        }
    }
    /* ✅ NEW SUPPORT WIDGET END */
    /* ✅ ALL SUPPORT BUTTON SMALL FIX START */

/* Floating position */
.support-widget-container {
    right: 12px !important;
    bottom: 82px !important;
}

/* Main Need Help Button ছোট */
.support-main-btn {
    min-width: 185px !important;
    width: 185px !important;
    height: 56px !important;
    padding: 7px 9px 7px 13px !important;
    gap: 7px !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 22px rgba(255, 106, 0, 0.28) !important;
}

/* Need help text */
.support-main-text strong {
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* Support এ কথা বলুন text */
.support-main-text span {
    font-size: 10.5px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* Main chat circle ছোট */
.support-chat-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-width: 2px !important;
}

/* Message bubble ছোট */
.support-bubble {
    width: 25px !important;
    height: 18px !important;
    border-radius: 6px !important;
    gap: 2px !important;
}

.support-bubble:after {
    right: 5px !important;
    bottom: -5px !important;
    border-width: 5px 0 0 7px !important;
}

.support-dot {
    width: 3.5px !important;
    height: 3.5px !important;
}

/* Popup box ছোট */
.support-popup-box {
    width: 245px !important;
    max-width: calc(100vw - 28px) !important;
    bottom: 66px !important;
    right: 0 !important;
    padding: 11px !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .32) !important;
}

/* Popup title ছোট */
.support-popup-title {
    font-size: 14px !important;
    font-weight: 900 !important;
    margin-bottom: 9px !important;
}

/* WhatsApp / Telegram / Messenger / Call সব option ছোট */
.support-option {
    padding: 8px 9px !important;
    gap: 9px !important;
    border-radius: 9px !important;
    margin-bottom: 7px !important;
}

/* option icon box ছোট */
.support-option-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 9px !important;
}

/* option icon ছোট */
.support-option-icon i {
    font-size: 21px !important;
}

/* Telegram / Messenger text ছোট */
.support-option-text strong {
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.support-option-text span {
    font-size: 11px !important;
    margin-top: 3px !important;
    font-weight: 600 !important;
}

/* Close orange button ছোট */
.support-close-btn {
    width: 52px !important;
    height: 52px !important;
    border-width: 5px !important;
    box-shadow: 0 8px 22px rgba(255, 106, 0, .30) !important;
}

.support-close-btn i {
    font-size: 23px !important;
}

/* Mobile final size */
@media (max-width: 576px) {
    .support-widget-container {
        right: 12px !important;
        bottom: 82px !important;
    }

    .support-main-btn {
        min-width: 180px !important;
        width: 180px !important;
        height: 54px !important;
        padding: 7px 8px 7px 12px !important;
        gap: 7px !important;
    }

    .support-main-text strong {
        font-size: 16.5px !important;
    }

    .support-main-text span {
        font-size: 10px !important;
    }

    .support-chat-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .support-bubble {
        width: 24px !important;
        height: 17px !important;
    }

    .support-popup-box {
        width: 235px !important;
        bottom: 64px !important;
        padding: 10px !important;
    }

    .support-popup-title {
        font-size: 13.5px !important;
    }

    .support-option {
        padding: 7px 8px !important;
        gap: 8px !important;
        margin-bottom: 7px !important;
    }

    .support-option-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .support-option-icon i {
        font-size: 20px !important;
    }

    .support-option-text strong {
        font-size: 15.5px !important;
    }

    .support-option-text span {
        font-size: 10.5px !important;
    }

    .support-close-btn {
        width: 50px !important;
        height: 50px !important;
    }
}

/* ✅ ALL SUPPORT BUTTON SMALL FIX END */
/* ✅ NEED HELP SAME, ONLY POPUP SMALL START */

/* Need help main button আগের মতো restore */
.support-main-btn {
    min-width: 230px !important;
    width: auto !important;
    height: auto !important;
    padding: 13px 18px !important;
    gap: 12px !important;
    border-radius: 999px !important;
}

.support-main-text strong {
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
}

.support-main-text span {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
}

.support-chat-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-width: 3px !important;
}

.support-bubble {
    width: 31px !important;
    height: 23px !important;
    border-radius: 8px !important;
}

.support-dot {
    width: 5px !important;
    height: 5px !important;
}

/* Popup box ছোট */
.support-popup-box {
    width: 250px !important;
    max-width: calc(100vw - 28px) !important;
    bottom: 78px !important;
    right: 0 !important;
    padding: 11px !important;
    border-radius: 12px !important;
}

/* Popup title ছোট */
.support-popup-title {
    font-size: 14px !important;
    margin-bottom: 9px !important;
}

/* Popup ভিতরের support option ছোট */
.support-option {
    padding: 8px 9px !important;
    gap: 9px !important;
    border-radius: 9px !important;
    margin-bottom: 7px !important;
}

.support-option-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 9px !important;
}

.support-option-icon i {
    font-size: 21px !important;
}

.support-option-text strong {
    font-size: 16px !important;
    line-height: 1 !important;
}

.support-option-text span {
    font-size: 11px !important;
    margin-top: 3px !important;
}

/* Close button ছোট */
.support-close-btn {
    width: 52px !important;
    height: 52px !important;
    border-width: 5px !important;
}

.support-close-btn i {
    font-size: 23px !important;
}

/* Mobile */
@media (max-width: 576px) {
    .support-main-btn {
        min-width: 210px !important;
        width: auto !important;
        height: auto !important;
        padding: 11px 14px !important;
    }

    .support-main-text strong {
        font-size: 18px !important;
    }

    .support-main-text span {
        font-size: 13px !important;
    }

    .support-chat-icon {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
    }

    .support-popup-box {
        width: 240px !important;
        bottom: 76px !important;
        padding: 10px !important;
    }

    .support-option {
        padding: 7px 8px !important;
    }

    .support-option-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .support-option-icon i {
        font-size: 20px !important;
    }

    .support-option-text strong {
        font-size: 15.5px !important;
    }

    .support-option-text span {
        font-size: 10.5px !important;
    }
}
/* ✅ NEED HELP SAME, ONLY POPUP SMALL END */
</style>
