.footer {
    width: 100%;
    background: #b2bb4a;
    color: #fff;
    box-sizing: border-box;
    margin-top:60px;
}

.footer * {
    box-sizing: border-box;
}

.footer-inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 28px 35px;
}


/* ========================================
   고객센터
======================================== */
.footer-customer {
    margin-bottom: 28px;
}

.footer-customer p {
    margin: 0;
    line-height: 1.65;
    font-size: 15px;
    font-weight: 500;
}

.footer-customer strong {
    font-weight: 700;
    margin-right: 6px;
}

.footer-customer a {
    color: #fff;
    text-decoration: none;
}


/* ========================================
   상담시간
======================================== */
.footer-hours {
    margin-top: 22px;
}

.footer-hours p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}


/* ========================================
   SNS
======================================== */
.footer-follow {
    margin-top: 27px;
}

.footer-follow-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}
.footer-social a img{
    width:22px;
    height:auto;
}

.footer-social a:hover {
    opacity: 0.8;
}


/* ========================================
   사업자 정보
======================================== */
.footer-company {
    margin-top: 28px;
}

/* 사업자정보 토글 버튼 */
.footer-company-toggle {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

/* 화살표 */
.footer-company-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* 열렸을 때 */
.footer-company-toggle.active .footer-company-arrow {
    transform: rotate(180deg);
}


/* 상세 사업자 정보 */
.footer-company-detail {
    display: none;
    margin-top: 8px;
}

.footer-company-detail p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
}

.footer-company-detail a {
    color: #fff;
    text-decoration: underline;
}


/* ========================================
   앱 다운로드
======================================== */
.footer-app {
    margin-top: 42px;
}

.footer-app a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 46px;

    border: 1px solid #fff;
    border-radius: 5px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: background-color 0.2s ease;
}

.footer-app a:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* ========================================
   하단 약관
======================================== */
.footer-links {
    margin-top: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.7;
    white-space: nowrap;
}

.footer-links a + a::before {
    content: " | ";
    margin: 0 3px;
}
/* ========================================
   APP 다운로드 모달
======================================== */

/* 모달 전체 */
.app-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

/* 배경 */
.app-modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* 모달 박스 */
.app-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;

    width: calc(100% - 40px);
    max-width: 400px;

    padding: 28px 24px 24px;

    background: #fff;
    border-radius: 10px;

    transform: translate(-50%, -50%);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* 제목 */
.app-modal-title {
    margin: 0 0 20px;

    color: #222;
    text-align: center;

    font-size: 16px;
    font-weight: 700;
}

/* 닫기 버튼 */
.app-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;

    width: 30px;
    height: 30px;

    padding: 0;
    border: 0;
    background: transparent;

    color: #555;
    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
}

/* 앱 다운로드 버튼 영역 */
.app-download-list {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* 스토어 버튼 */
.app-store-btn {
    display: block;
    width: auto;
    height:50px;
}

.app-store-btn img {
    display: block;
    width: auto;
    height: 50px;
}


/* 모바일 */
@media (max-width: 480px) {

    .app-modal-content {
        max-width: 330px;
        padding: 26px 16px 20px;
    }

    .app-store-btn {
        width: 135px;
    }
    
    .footer-inner {
        padding: 38px 28px 32px;
    }
}
