#assistantIcon {
    position: fixed;
    right: 15px;
    bottom: 40px;
    width: 60px;
    height: 60px;
/*    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 10%), linear-gradient(120deg, #FFD59E 0%, #FFE4B5 50%, #FFF5D7 100%);*/
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}
/*.assistantImg {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 10%), linear-gradient(120deg, #FFD59E 0%, #FFE4B5 50%, #FFF5D7 100%);
}*/
#assistantPopup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 360px;
    height: 75vh; /* 🔥 FIX */
    max-height: 75vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,.35);
    display: none;
    z-index: 9999;
    overflow: hidden; /* 🚫 outer overflow */
}


.assistant-header {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 10%), linear-gradient(120deg, #FFD59E 0%, #FFE4B5 50%, #FFF5D7 100%);
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    height: 45px;
    padding: 10px 12px;
    font-weight: 600;
    display: flex;
    text-align: center;
    justify-content: space-between;
}
/* 🔽 Scrollable body */
#assistantBody {
    height: calc(75vh - 45px); /* 🔥 DESKTOP SCROLL FIX */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    font-size: 14px;
}

    /* 🔹 List styling */
    #assistantBody ul {
        padding-left: 0;
        margin: 0;
    }

    #assistantBody li {
        list-style: none;
        padding: 6px 8px;
        border-bottom: 1px solid #eee;
    }

    /* 🔹 Links */
    #assistantBody a {
        text-decoration: none;
        color: #0d6efd;
        display: block;
    }

        #assistantBody a:hover {
            background: #f1f5ff;
            border-radius: 6px;
        }

    /* 🔴 Active item highlight */
    #assistantBody .active {
        background: #e9f1ff;
        border-left: 4px solid #0d6efd;
    }

    /* 🎬 Video button spacing */
    #assistantBody .btn {
        width: 100%;
        margin-bottom: 8px;
    }
/*// doante now */
.buy-now {
    position: fixed;
    right: 20px;
    bottom: 120px; /* assistant icon se thoda upar */
    z-index: 9999;
}

.btn-buy-now {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn-buy-now {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
