 .social-share {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0 10px 10px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        z-index: 9999;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }
    .social-share.active {
        transform: translateX(0);
    }
    .social-share a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #f0f0f0;
        transition: transform 0.2s, background-color 0.3s;
    }
    .social-share a:hover {
        transform: scale(1.1);
        background-color: #ddd;
    }
    .social-share img {
        width: 24px;
        height: 24px;
    }
    #toggle-share {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: #007bff;
        color: white;
        border: none;
        border-radius: 0 5px 5px 0;
        padding: 10px;
        cursor: pointer;
        z-index: 10000;
    }