/* Контейнер виджета */
        .widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
        }
        
/* Кнопка-картинка */
        .widget-button {
            display: block;
            cursor: pointer;
            transition: transform 0.2s ease;
            border: none;
            background: transparent;
            padding: 0;
		    padding-bottom: 50px;
        }
        
        .widget-button:hover {
            transform: scale(1.05);
        }
        
        .widget-button img {
            width: 64px;
            height: 64px;
            display: block;
        }

/* Выдвигающаяся панель */
        .messenger-panel {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            padding: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            transform-origin: bottom right;
        }
        
        .messenger-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
/* Кнопки выбора */
        .messenger-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            border-radius: 12px;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        
        .messenger-option:first-child {
            margin-bottom: 4px;
        }
        
        .messenger-option.telegram {
            color: #1c6fb0;
        }
        
        .messenger-option.max {
            color: #9933dd;
        }
        
        .messenger-option:hover {
            background: #f5f5f5;
        }
        
        .messenger-option.telegram:hover {
            background: #e9f3fe;
        }
        
        .messenger-option.max:hover {
            background: #e3f6ef;
        }
        
        .messenger-option img {
            width: 24px;
            height: 24px;
        }
        
        .messenger-option span {
            font-size: 15px;
            font-weight: 500;
        }