/* Floating Bell Icon */
.pushkaro-bell {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed to Left as per previous JS, can be Right too */
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b); /* Gradient Red */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex; /* Initially flex but hidden by JS logic if needed, or hide here */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.pushkaro-bell:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pushkaro-bell svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Active State (Subscribed) */
.pushkaro-bell.subscribed {
    background: linear-gradient(135deg, #42e695, #3bb2b8); /* Green Gradient */
}

/* Tooltip */
.pushkaro-bell::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.pushkaro-bell:hover::after {
    opacity: 1;
}