/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-social .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.floating-social .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Top 버튼 스타일 */
.floating-social .social-icon.top-btn {
    background: #333;
    color: #fff;
    padding: 8px;
}

.floating-social .social-icon.top-btn:hover {
    background: #555;
    transform: translateY(-5px);
}

.floating-social .social-icon.top-btn svg {
    width: 100%;
    height: 100%;
}

/* Mobile */
@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        bottom: 60px;
    }
    
    .floating-social .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-social .social-icon img {
        width: 24px;
        height: 24px;
    }
}

