/*--------------------------------------------------------------
# 6. Social Icons
--------------------------------------------------------------*/
.social-links-container {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-label {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    margin-right: 2px;
}

/* Icon Base Style */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Icon SVG Size */
.social-icon svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/* Brands Colors */
.social-icon.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 
    border-color: transparent; 
}
.social-icon.facebook { background-color: #1877F2; border-color: #1877F2; }
.social-icon.twitter { background-color: #000; border-color: #333; }
.social-icon.youtube { background-color: #FF0000; border-color: #FF0000; }
.social-icon.tiktok { 
    background-color: #000; border-color: #fe2c55; 
    text-shadow: 1px 1px 0px #25F4EE; 
}
.social-icon.website { 
    background-color: #fff; color: #212529; border-color: #fff;
}

/* Hover Effect */
.social-icon:hover { 
    transform: translateY(-2px);
    filter: brightness(1.1);
}