﻿/* Container */
.social-fixed {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

    /* Common Icon Style */
    .social-fixed a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        /* Facebook */
        .social-fixed a.facebook {
            background: #1877F2;
        }

        /* Instagram (Gradient like real app) */
        .social-fixed a.instagram {
            background: linear-gradient( 45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5 );
        }

        /* WhatsApp */
        .social-fixed a.whatsapp {
            background: #25D366;
        }

        /* Hover effect */
        .social-fixed a:hover {
            transform: scale(1.15);
            opacity: 0.9;
        }

/* MOBILE FIX */
@@media (max-width: 768px) {
    .social-fixed {
        top: auto;
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 15px;
    }

        .social-fixed a {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
}
