.footer-row {
    display: flex;
    justify-content: space-around; /* 균등 분배 */
    align-items: center; /* 세로 중앙 정렬 */
    width: 100%;
    padding: 1rem 0;
    flex-wrap: wrap; /* 반응형을 위한 줄바꿈 허용 */
}

.footer-item {
    flex: 1 1 250px; /* 최소 너비 250px, 유연한 크기 조절 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 가로 중앙 정렬 */
    justify-content: center; /* 세로 중앙 정렬 */
    margin: 0.5rem;
    text-align: center;
}

.footer-logo {
    width: 118px;
    height: 96px;
    object-fit: contain;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.btn-tel-custom {
    max-width: 260px;
    font-size: 1rem;
    height: 48px;
    white-space: normal;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .footer-row {
        justify-content: center;
    }
    .footer-item {
        flex: 1 1 100%;
        margin: 0.5rem 0;
    }
}


.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: 1.0rem;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background-color: #cd8d14; /* 핑크톤 */
    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: #e1bb69; /* 진한 핑크톤 */
}
.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.8rem;
    }
    .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;
    }
}
