/* ========================================
   Footer
======================================== */

#footer {
    background-color: #3C3535;
    color: #D4AF5F;
    font-family: 'Noto Sans KR', sans-serif;
    padding: 60px 0 40px;
    margin-bottom: 120px; /* 플로팅 폼 높이만큼 마진 추가 */
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 로고 */
#footer .logo {
    flex-shrink: 0;
}

#footer .logo img {
    height: 40px;
    width: auto;
}

/* 컨텐츠 영역 */
#footer .cont {
    flex: 1;
}

/* 상단 링크 */
#footer .top {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444444;
    flex-wrap: wrap;
}

#footer .top a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

#footer .top a:hover {
    color: #ffffff;
}

/* 개인정보 처리방침 링크 스타일 */
#footer .top a span {
    font-weight: 700;
    color: #B9A67D;
}

#footer .top a span:hover {
    color: #A8966D;
}

/* 정보 영역 */
#footer .info {
    display: flex;
    gap: 60px;
}

#footer .info .left {
    flex: 0 0 auto;
}

#footer .info .right {
    flex: 1;
}

#footer .info > div > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    flex-direction: row;
}

#footer .info p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    flex-shrink: 0;
    margin: 0;
}

#footer .info span {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
}

/* 저작권 및 SNS */
#footer .copy {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .copy p {
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    min-width: auto;
}

#footer .sns {
    display: flex;
    gap: 20px;
}

#footer .sns a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

#footer .sns a:hover {
    color: #ffffff;
}

/* 모바일 푸터 */
#footer .mo_footer {
    display: none;
}

/* Footer 반응형 디자인 */

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    #footer {
        padding: 50px 0 30px;
        margin-bottom: 100px; /* 태블릿 플로팅 폼 높이만큼 마진 */
    }
    
    #footer .inner {
        padding: 0 30px;
        gap: 40px;
    }
    
    #footer .logo img {
        height: 35px;
    }
    
    #footer .top {
        gap: 25px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    #footer .top a {
        font-size: 13px;
    }
    
    #footer .info {
        gap: 40px;
    }
    
    #footer .info .left {
        flex: 0 0 auto;
    }
    
    #footer .info .right {
        flex: 1;
    }
    
    #footer .info p {
        font-size: 13px;
    }
    
    #footer .info span {
        font-size: 13px;
    }
    
    #footer .copy p {
        font-size: 11px;
    }
    
    #footer .sns a {
        font-size: 13px;
    }
}

/* 모바일 (480px ~ 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    #footer {
        margin-bottom: 0; /* 모바일에서는 플로팅 폼이 없으므로 마진 제거 */
    }
    
    #footer .inner {
        display: none;
    }
    
    #footer .info {
        display: none;
    }
    
    #footer .mo_footer {
        display: block;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    #footer .mo_footer h1 {
        margin: 0 0 30px 0;
    }
    
    #footer .mo_footer h1 img {
        height: 30px;
        width: auto;
    }
    
    #footer .mo_footer .info {
        display: block !important;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #444444;
        visibility: visible !important;
    }
    
    #footer .mo_footer .info > div {
        display: flex;
        gap: 15px;
        /* margin-bottom: 15px; */
        flex-wrap: nowrap;
    }
    
    #footer .mo_footer .info a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 12px;
        font-weight: 400;
        transition: color 0.3s ease;
        white-space: nowrap;
    }
    
    #footer .mo_footer .info a:hover {
        color: #ffffff;
    }
    
    /* 모바일 개인정보 처리방침 링크 스타일 */
    #footer .mo_footer .info a span {
        font-weight: 700;
        font-size: 12px;
        color: #B9A67D;
    }
    
    #footer .mo_footer .info a span:hover {
        color: #A8966D;
    }
    
    #footer .mo_footer .adress {
        margin-bottom: 20px;
    }
    
    #footer .mo_footer .adress > div {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 6px;
    }
    
    #footer .mo_footer .adress p {
        color: #ffffff;
        font-size: 12px;
        font-weight: 400;
        flex-shrink: 0;
        margin: 0;
    }
    
    #footer .mo_footer .adress span {
        color: #AAAAAA;
        font-size: 12px;
        font-weight: 400;
        flex: 1;
    }
    
    #footer .mo_footer .adress .copy {
        color: #AAAAAA;
        font-size: 10px;
        font-weight: 400;
        margin-top: 20px;
        display: block;
    }
    
    #footer .mo_footer .sns {
        display: flex;
        gap: 20px;
    }
    
    #footer .mo_footer .sns a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 12px;
        font-weight: 400;
        transition: color 0.3s ease;
    }
    
    #footer .mo_footer .sns a:hover {
        color: #ffffff;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 479px) {
    #footer {
        padding: 30px 0 20px;
        margin-bottom: 0; /* 모바일에서는 플로팅 폼이 없으므로 마진 제거 */
    }
    
    #footer .inner {
        display: none;
    }
    
    #footer .info {
        display: none;
    }
    
    #footer .mo_footer {
        display: block;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    #footer .mo_footer h1 {
        margin: 0 0 25px 0;
    }
    
    #footer .mo_footer h1 img {
        height: 28px;
        width: auto;
    }
    
    #footer .mo_footer .info {
        display: block !important;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #444444;
        visibility: visible !important;
    }
    
    #footer .mo_footer .info > div {
        display: flex;
        gap: 12px;
        /* margin-bottom: 12px; */
        flex-wrap: nowrap;
    }
    
    #footer .mo_footer .info a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 11px;
        font-weight: 400;
        transition: color 0.3s ease;
        white-space: nowrap;
    }
    
    #footer .mo_footer .info a:hover {
        color: #ffffff;
    }
    
    /* 작은 모바일 개인정보 처리방침 링크 스타일 */
    #footer .mo_footer .info a span {
        font-weight: 700;
        font-size: 11px;
        color: #B9A67D;
    }
    
    #footer .mo_footer .info a span:hover {
        color: #A8966D;
    }
    
    #footer .mo_footer .adress {
        margin-bottom: 15px;
    }
    
    #footer .mo_footer .adress > div {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 5px;
    }
    
    #footer .mo_footer .adress p {
        color: #ffffff;
        font-size: 11px;
        font-weight: 400;
        flex-shrink: 0;
        margin: 0;
    }
    
    #footer .mo_footer .adress span {
        color: #AAAAAA;
        font-size: 11px;
        font-weight: 400;
        flex: 1;
    }
    
    #footer .mo_footer .adress .copy {
        color: #AAAAAA;
        font-size: 9px;
        font-weight: 400;
        margin-top: 15px;
        display: block;
    }
    
    #footer .mo_footer .sns {
        display: flex;
        gap: 15px;
    }
    
    #footer .mo_footer .sns a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 11px;
        font-weight: 400;
        transition: color 0.3s ease;
    }
    
    #footer .mo_footer .sns a:hover {
        color: #ffffff;
    }
}

/* ========================================
   플로팅 상담신청 폼
======================================== */

.floating_consultation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #B9A67D;
    height: 120px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none; /* 모바일에서는 숨김 */
}

.consultation_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* align-items: center; */
    gap: 0;
}

.consultation_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.consultation_left {
    flex: 0 0 200px;
    text-align: center;
}

.consultation_center {
    flex: 0 0 700px;
    gap: 12px;
    align-items: stretch;
}

.consultation_right {
    flex: 0 0 300px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0px;
}

.consultation_title {
    color: #48433C;
    font-size: 20px;
    font-weight: 700;
    
    font-family: 'Noto Sans', sans-serif;
}

.consultation_number {
    color: #48433C;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

.form_inputs {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form_input {
    flex: 0 0 330px;
    height: 50px;
    padding: 0 15px;
    border: none;
    border-radius: 6px;
    background: #FFFFFF;
    color: #333;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form_input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.form_input::placeholder {
    color: #999;
}

.form_checkboxes {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.checkbox_item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #48433C;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
}

.checkbox_item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #48433C;
    border-radius: 3px;
    background: #FFFFFF;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox_item input[type="checkbox"]:checked + .checkmark {
    background: #48433C;
    border-color: #48433C;
    transform: translate(-1px, -1px);
}

.checkbox_item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox_text a {
    color: #48433C;
    text-decoration: underline;
}

.checkbox_text a:hover {
    color: #4A3F2F;
}

.consultation_btn {
    background: #393029;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    height: 50px;
    width: 250px;
}

.consultation_btn:hover {
    background: #2A2119;
}

.consultation_btn:active {
    transform: translateY(1px);
}

/* 태블릿에서 플로팅 폼 표시 */
@media (max-width: 1199px) and (min-width: 768px) {
    .floating_consultation {
        display: block;
        height: 100px;
        padding: 15px;
    }
    
    .consultation_section {
        padding: 0 10px;
    }
    
    .consultation_left {
        flex: 0 0 200px;
    }
    
    .consultation_center {
        flex: 0 0 500px;
        gap: 10px;
        align-items: stretch;
    }
    
    .consultation_right {
        flex: 0 0 200px;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 0px;
    }
    
    .consultation_title {
        font-size: 18px;
        font-weight: 700;
        font-family: 'Noto Sans', sans-serif;
    }
    
    .consultation_number {
        font-size: 26px;
        font-weight: 700;
        font-family: 'Noto Sans', sans-serif;
        line-height: 1.2;
        margin-top: 0;
    }
    
    .form_inputs {
        display: flex;
        gap: 15px;
        width: 100%;
    }
    
    .form_input {
        flex: 0 0 230px;
        height: 45px;
        padding: 0 15px;
        border: none;
        border-radius: 6px;
        background: #FFFFFF;
        color: #333;
        font-size: 15px;
        font-family: 'Noto Sans', sans-serif;
        outline: none;
        transition: box-shadow 0.3s ease;
    }
    
    .form_input:focus {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    }
    
    .form_input::placeholder {
        color: #999;
    }
    
    .form_checkboxes {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .checkbox_item {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        color: #48433C;
        font-size: 13px;
        font-family: 'Noto Sans', sans-serif;
    }
    
    .checkmark {
        width: 14px;
        height: 14px;
        border: 1px solid #48433C;
        border-radius: 3px;
        background: #FFFFFF;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .checkbox_item input[type="checkbox"]:checked + .checkmark {
        background: #48433C;
        border-color: #48433C;
        transform: translate(-1px, -1px);
    }
    
    .checkbox_item input[type="checkbox"]:checked + .checkmark::after {
        content: '';
        position: absolute;
        left: 3px;
        top: 1px;
        width: 3px;
        height: 6px;
        border: solid #FFFFFF;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    .checkbox_text a {
        color: #48433C;
        text-decoration: underline;
    }
    
    .checkbox_text a:hover {
        color: #4A3F2F;
    }
    
    .consultation_btn {
        background: #393029;
        color: #FFFFFF;
        border: none;
        border-radius: 6px;
        padding: 10px 20px;
        font-size: 18px;
        font-weight: 700;
        font-family: 'Noto Sans', sans-serif;
        cursor: pointer;
        transition: background 0.3s ease;
        white-space: nowrap;
        height: 45px;
        width: 200px;
    }
    
    .consultation_btn:hover {
        background: #2A2119;
    }
    
    .consultation_btn:active {
        transform: translateY(1px);
    }
}

/* 데스크탑에서 플로팅 폼 표시 */
@media (min-width: 1200px) {
    .floating_consultation {
        display: block;
    }
}

/* ===== 카카오톡 플로팅 버튼 ===== */
.kakao-floating-btn {
    position: fixed;
    right: 20px;
    bottom: 140px; /* 전화 버튼 위에 위치 */
    width: 50px;
    height: 50px;
    background: #FFDE00;
    border-radius: 50%;
    z-index: 1600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kakao-floating-btn:hover {
    background: #E6C700;
    transform: scale(1.05);
}

.kakao-floating-btn:active {
    transform: scale(0.95);
}

.kakao-floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.kakao-floating-btn img {
    width: 30px;
    height: 30px;
}

/* ===== 모바일 하단 플로팅 상담신청 폼 ===== */
@media (min-width: 768px) { 
    .mobile-floating-form,
    .mobile-floating-call-btn { 
        display: none !important; 
    } 
}

@media (max-width: 767px) {
    /* 모바일 푸터 하단 마진 */
    #footer {
        margin-bottom: 59px;
    }
    
    /* 모바일 플로팅 전화 버튼 */
    .mobile-floating-call-btn {
        position: fixed;
        right: 20px;
        bottom: 70px;
        width: 50px;
        height: 50px;
        background: #D4AF60;
        border-radius: 50%;
        z-index: 1600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-floating-call-btn:hover {
        background: #B8941F;
        transform: scale(1.05);
    }
    
    .mobile-floating-call-btn:active {
        transform: scale(0.95);
    }
    
    .mobile-floating-call-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }
    
    .mobile-floating-call-btn img {
        width: 22px;
        height: 23px;
        filter: brightness(0) invert(1);
    }
    
    /* 상담신청 폼이 펼쳐졌을 때 전화 버튼과 카카오톡 버튼 위치 조정 */
    .mobile-floating-form.expanded ~ .kakao-floating-btn {
        bottom: 435px;
    }
    
    .mobile-floating-form.expanded ~ .mobile-floating-call-btn {
        bottom: 365px;
    }
    
    .mobile-floating-form {
        position: fixed;
        left: 0; 
        bottom: 0; 
        width: 100vw;
        z-index: 1500;
        font-family: 'Noto Sans', sans-serif;
        transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    }
    
    .mobile-floating-form__container {
        width: 100vw;
        background: #B9A67D;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    
    .mobile-floating-form__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: #393029;
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        user-select: none;
    }
    
    .mobile-floating-form__arrow {
        display: inline-block;
        width: 18px; 
        height: 18px;
        border: none;
        margin-left: 8px;
        transition: transform 0.3s;
        position: relative;
    }
    
    .mobile-floating-form__arrow::before {
        content: '';
        display: block;
        width: 0; 
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 8px solid #fff;
        position: absolute;
        left: 2px; 
        top: 4px;
        transition: transform 0.3s;
    }
    
    .mobile-floating-form.expanded .mobile-floating-form__arrow::before {
        border-top: none;
        border-bottom: 8px solid #fff;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        top: 6px;
    }
    
    .mobile-floating-form__body {
        background: #B9A67D;
        padding: 18px 16px 16px 16px;
        transition: max-height 0.2s cubic-bezier(.4,0,.2,1), opacity 0.25s cubic-bezier(.4,0,.2,1);
        max-height: 1000px;
        opacity: 1;
        overflow: hidden;
    }
    
    .mobile-floating-form:not(.expanded) .mobile-floating-form__body {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        pointer-events: none;
    }
    
    .mobile-floating-form__body form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-floating-form__body input[type="text"], 
    .mobile-floating-form__body input[type="tel"] {
        height: 50px;
        border-radius: 6px;
        border: none;
        padding: 0 15px;
        font-size: 16px;
        margin-bottom: 0;
        background: #fff;
        color: #333;
        font-family: 'Noto Sans', sans-serif;
    }
    
    .mobile-floating-form__body input::placeholder {
        color: #999;
        opacity: 1;
    }
    
    .mobile-floating-form__checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 3px;
        font-size: 14px;
        color: #48433C;
        /* margin-bottom: 8px; */
    }
    
    .mobile-floating-form__checkbox-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #48433C;
        font-size: 14px;
        font-weight: 400;
        font-family: 'Noto Sans', sans-serif;
    }
    
    .mobile-floating-form__checkbox-group a {
        color: #48433C;
        text-decoration: underline;
        margin-left: 2px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .mobile-floating-form__checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #48433C;
        margin-right: 4px;
        border: 1px solid #48433C;
        border-radius: 3px;
        background: #FFFFFF;
    }
    
    .mobile-floating-form__submit {
        width: 100%;
        height: 50px;
        background: #393029;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        border: none;
        border-radius: 6px;
        /* margin-top: 6px; */
        cursor: pointer;
        transition: background 0.2s;
        font-family: 'Noto Sans', sans-serif;
    }
    
    .mobile-floating-form__submit:hover {
        background: #2A2119;
    }
    
    .mobile-floating-form__submit:active {
        transform: translateY(1px);
    }
}

/* ===== 인증번호 모달 ===== */
.verification_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.verification_modal.active {
    display: flex;
}

.verification_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.verification_modal_wrapper {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.verification_modal_content {
    padding: 0;
}

.verification_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.verification_modal_header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
}

.verification_modal_close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.verification_modal_close:hover {
    color: #333;
}

.verification_modal_body {
    padding: 24px;
}

.verification_info {
    margin-bottom: 20px;
    text-align: center;
}

.verification_info p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    font-family: 'Noto Sans KR', sans-serif;
}

.verification_info .verification_name {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.verification_info .verification_phone {
    font-size: 15px;
    color: #555;
}

.verification_input_group {
    margin-bottom: 24px;
}

#verification_code_input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

#verification_code_input:focus {
    outline: none;
    border-color: #D4AF60;
}

.verification_timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-family: 'Noto Sans KR', sans-serif;
}

.timer_display {
    font-weight: 600;
    color: #e74c3c;
}

.verification_buttons {
    display: flex;
    gap: 12px;
}

.resend_btn {
    flex: 1;
    height: 44px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.resend_btn:hover {
    border-color: #D4AF60;
    color: #D4AF60;
}

.resend_btn:disabled,
.resend_btn.disabled {
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.resend_btn:disabled:hover,
.resend_btn.disabled:hover {
    border-color: #ddd;
    color: #999;
}

.complete_btn {
    flex: 1;
    height: 44px;
    background: #393029;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.complete_btn:hover {
    background: #2A2119;
}

.complete_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .verification_modal_wrapper {
        width: 95%;
        margin: 20px;
    }
    
    .verification_modal_header {
        padding: 16px 20px;
    }
    
    .verification_modal_body {
        padding: 20px;
    }
    
    .verification_buttons {
        flex-direction: column;
    }
    
    .resend_btn,
    .complete_btn {
        width: 100% !important;
        height: 50px !important; /* 모바일에서 더 큰 터치 영역 */
        font-size: 16px !important; /* 모바일에서 더 큰 폰트 */
        min-height: 50px !important; /* 최소 높이 보장 */
    }
}
