.body-social-links {
    position: fixed;
    top: 30%;
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px; 
}

.body-social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 13px;
    height: 50px;
    width: 50px; /* Default square/circle width */
    border-radius: 30px 0 0 30px; 
    box-shadow: -3px 3px 10px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    overflow: hidden; 
    position: relative;
}

/* Base Colors - Visible by Default */
.body-social-links a.facebook  { background: #3b5998; }
.body-social-links a.twitter   { background: #1da1f2; }
.body-social-links a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.body-social-links a.linkedin  { background: #0077b5; }
.body-social-links a.youtube   { background: #ff0000; }
.body-social-links a.whatsapp  { background: #25d366; }
.body-social-links a.tiktok    { background: #000000; }

/* Icon Styling */
.body-social-links a i {
    font-size: 24px;
    min-width: 24px;
    text-align: center;
}

/* Hidden Text Styling */
.link-text {
    margin-left: 15px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Hover State: The Shape Expands */
.body-social-links a:hover {
    width: 150px; /* Expand to show the label */
    transform: translateX(-5px);
    box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
    padding-left: 20px;
}

.body-social-links a:hover .link-text {
    opacity: 1;
}

/* Glossy Shine Effect on Hover */
.body-social-links a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.body-social-links a:hover::after {
    left: 100%;
}

@media (max-width: 575px) {
    .body-social-links { display: none; }
}