        .social-sidebar {
          position: fixed;
          top: 10%;
          right: 0;
          z-index: 1000;
          display: flex;
          flex-direction: column;
          gap: 18px;
          background: rgba(255, 255, 255, 0.8);
          padding: 14px 8px;
          border-radius: 18px 0 0 18px;
          box-shadow: 0 2px 16px rgba(80,80,80,0.10);
        }

        .social-sidebar a {
          margin: 0 auto;
          width: 44px;
          height: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #333;
          background: #fff;
          border-radius: 50%;
          font-size: 22px;
          transition: background 0.3s, color 0.3s;
          text-decoration: none;
        }

        .social-sidebar a:hover {
          background: #25b7a4;
          color: #fff;
        }