.ylw-floating-btn {
            position: fixed;
            right: 20px;
            top: 40%;
            transform: translateY(-50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #CC3366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-align: center;
            line-height: 1.2;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 1000;
            animation: pulse 1.5s infinite;
            font-weight: bold;
            padding: 5px;
        }

        @keyframes pulse {
            0% { transform: translateY(-50%) scale(1); box-shadow: 0 4px 10px rgba(204,51,102,0.6); }
            50% { transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 15px rgba(204,51,102,0.8); }
            100% { transform: translateY(-50%) scale(1); box-shadow: 0 4px 10px rgba(204,51,102,0.6); }
        }

        .ylw-floating-btn:hover {
            background:#D84778;
        }