<style>
.footer-nav-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.footer-logo-link img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1); /* 다크모드용 로고가 따로 있으면 이 부분을 수정 */
    transition: filter 0.2s;
}
.footer-select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #232526;
    color: #eee;
    font-size: 1rem;
}
.footer-select:focus {
    outline: 2px solid #00bfff;
}
@media (max-width: 575px) {
    .footer-nav-area {
        flex-direction: column;
        gap: 10px;
    }
    .footer-logo-link img {
        height: 32px;
    }
}

/* 스틱키 메뉴 스타일 */
 .sticky-menu {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 1050;
 }
.sticky-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sticky-menu ul li {
    margin: 0;
}
.sticky-menu ul li a.sticky-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background-color: #e91e63; /* 핑크톤 */
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
    width: 95px;
    height: 95px;
    justify-content: center;
}
.sticky-menu ul li a.sticky-btn:hover {
    background-color: #c2185b; /* 진한 핑크톤 */
}
.sticky-menu ul li a.sticky-btn i {
    font-size: 1.5rem;
}
.kakao-sticky-menu {
    line-height: 1.2;
    text-align: center;
    font-size: 1.0rem;
}

.kakao-img {
    width: 24px;
    fill: white;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .sticky-menu {
        bottom: 25px;
        right: 25px;
    }
    .sticky-menu ul li a.sticky-btn {
        width: 80px;
        height: 80px;
        font-size: 0.6rem;
    }
    .sticky-menu ul li a.sticky-btn i {
        font-size: 1.3rem;
    }
    .kakao-sticky-menu {
        line-height: 1.2;
        text-align: center;
        font-size: 0.8rem;
    }
}

.keep-all {
    word-break: keep-all;
}

