/* Social Media Links Styles */
.social-links-container {
    margin-top: 5px;
    padding: 6px;
    border-radius: 8px;
    background-color: #faf8f9;
    position: sticky;
    bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 60px;
}

.social-links-title {
    display: none; /* 隐藏"Follow Us" */
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F9D523, #FC7835, #FF6D93);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}