.social-share {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-share a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.social-share a:hover {
    transform: scale(1.1);
}

.social-share .facebook {
    color: #1877f2;
}

.social-share .twitter {
    color: #1da1f2;
}

.social-share .whatsapp {
    color: #25d366;
}

.social-share .pinterest {
    color: #e60023;
}

@media (max-width: 768px) {
    .social-share {
        bottom: 20px;
        top: auto;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
    }
}