        /* ========== Футер: Иконки Соцсетей ========== */
        .social-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            border-radius: 60%;
            text-decoration: none;
            margin: 12px 8px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
            transition: all 0.25s ease;
            transform: translateY(0);
        }

        .social-icon:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        }

        .social-icon:active {
            transform: translateY(2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        /* SVG внутри иконки — всегда белый */
        .social-icon svg {
            pointer-events: none;
        }
