* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI',
        'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========================================
   1. HEADER (헤더)
   ======================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    z-index: 1000;
    padding-top: 35px;
    padding-bottom: 10px;
}

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    position: relative;
}

.logo-icon {
    width: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.logo-icon img {
    width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 30px 25px;
    text-decoration: none;
    color: #111111;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    opacity: 70%;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: #111111;
    font-weight: 600;
    opacity: 70%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: url('/gnuboard5/img/common/lang_kr.svg') center/cover;
    cursor: pointer;
    position: relative;
}

/* 중국어 페이지에서는 토글 버튼을 중국 국기로 표시 */
.lang-toggle.cn {
    background-image: url('/gnuboard5/img/common/lang_ch.svg');
}

/* 언어 드롭다운 */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 8px;
}

.lang-toggle.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.lang-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-dropdown-item:hover {
    background: rgba(166, 117, 106, 0.05);
}

.lang-dropdown-item.active {
    background: rgba(166, 117, 106, 0.1);
    color: #A6756A;
    font-weight: 600;
}

.lang-flag {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background-size: cover;
    flex-shrink: 0;
}

.lang-flag.kr img {
    width: 100%;
}
.lang-flag.cn img {
    width: 100%;
}
.lang-flag.en img {
    width: 100%;
}

.consultation-btn {
    background: #A6756A;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.consultation-btn:hover {
    background: #8B5D52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 117, 106, 0.3);
}

/* 드롭다운 메뉴 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    list-style: none;
    padding: 15px 0;
}

.dropdown-item {
    margin: 0;
}

.dropdown-item a {
    display: block;
    padding: 12px 25px;
    color: #A6756A;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-item:hover a,
.dropdown-item.active a {
    color: #A6756A;
    font-weight: 600;
    background: rgba(166, 117, 106, 0.05);
    border-left-color: #A6756A;
}

/* 모바일 햄버거 메뉴 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #888888;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* 닫기 버튼 스타일 */
.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(166, 117, 106, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(166, 117, 106, 0.2);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #A6756A;
    border-radius: 1px;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* ========================================
   2. FOOTER (푸터)
   ======================================== */

.footer {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 60px 0 150px 0;
}

.footer-container {
    width: 1400px;
    margin: 0 auto;
    flex-direction: column;
    position: relative;
}

.footer-content {
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.footer-address {
    margin-bottom: 0px;
}

.footer-contact span {
    display: block;
}

/* SNS 아이콘 스타일 */
.footer-sns {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sns-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.sns-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   3. QUICK MENU (퀵메뉴)
   ======================================== */

.quick-menu {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-menu-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    border: 1px solid #a6756a65;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.quick-menu-item:hover .quick-menu-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* 아이콘 이미지 */
.quick-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* 퀵메뉴 텍스트 */
.quick-menu-text {
    font-size: 12px;
    color: #A6756A;
    font-weight: 650;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

/* 전후 사진 - 강조 스타일 */
.quick-menu-item.accent .quick-menu-circle {
    background: #A6756A;
    border-color: #A6756A;
}

.quick-menu-item.accent .quick-menu-text {
    color: white;
}

/* 온라인상담 - 연한 배경 */
.quick-menu-item.light .quick-menu-circle {
    background: #D8A89E;
    border-color: #E8D5D0;
}

.quick-menu-item.light .quick-menu-text {
    color: #fff;
}

/* TOP 버튼 */
.quick-menu-top {
    width: 30px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -20px;
    align-self: center;
}

.quick-menu-top:hover {
    background: #a6756a00;
    border-color: #A6756A;
    transform: translateY(-3px);
}

.quick-menu-top:hover svg {
    stroke: white;
}

.quick-menu-top svg {
    stroke: #666;
    transition: all 0.3s ease;
}

/* ========================================
   4. QUICK CONSULTATION (빠른 상담신청)
   ======================================== */
.quick-consultation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d8a89ee7;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.quick-consultation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.quick-consultation-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-consultation-form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-select,
.form-input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    color: #333;
    outline: none;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background: white
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E")
        no-repeat right 15px center;
    background-size: 10px;
    padding-right: 35px;
}

.form-input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1.2;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
}

.privacy-checkbox input[type='checkbox'] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.privacy-checkbox input[type='checkbox']:checked + .checkbox-custom {
    background: white;
    border-color: white;
}

.privacy-checkbox input[type='checkbox']:checked + .checkbox-custom::after {
    content: '✓';
    color: #3A2520;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    color: white;
    font-size: 13px;
    white-space: nowrap;
}

.privacy-link {
    color: white;
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
}

.privacy-link:hover {
    opacity: 0.8;
}

.form-submit-button {
    background: #A6756A;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0 40px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form-submit-button:hover {
    background: #A6756A;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE (반응형)
   ======================================== */

/* 태블릿 */

@media (max-width: 1200px) {
    /* 네비바 */
    .nav-container {
        padding: 0 30px;
    }

    .logo-icon {
        width: 200px;
    }

    .nav-item > a {
        padding: 30px 15px;
        font-size: 14px;
    }

    /* footer */
    .footer-container {
        width: 100%;
        padding: 0 30px;
    }

    .footer-sns {
        right: 30px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* 빠른 상담신청 */
    .quick-consultation-container {
        max-width: 100%;
        padding: 0 30px;
    }

    .quick-consultation-title {
        font-size: 16px;
    }

    .quick-consultation-form {
        gap: 10px;
    }

    .form-select,
    .form-input {
        height: 42px;
        font-size: 13px;
    }

    .form-submit {
        padding: 0 30px;
        height: 42px;
        font-size: 15px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    /* 퀵메뉴 */

    .quick-menu {
        right: 20px;
    }

    .quick-menu-circle {
        width: 70px;
        height: 70px;
        gap: 4px;
        padding: 8px;
    }

    .quick-icon {
        width: 24px;
        height: 24px;
    }

    .quick-menu-text {
        font-size: 10px;
    }

    .quick-menu-top {
        width: 45px;
        height: 45px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .header {
        padding-top: 15px;
    }
    /* 네비바 */

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-icon {
        width: 150px;
    }

    /* 모바일 햄버거 메뉴 표시 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 모바일 네비게이션 메뉴 */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 0 50px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(166, 117, 106, 0.1);
    }

    .nav-item > a {
        padding: 20px 30px;
        color: #333;
        font-size: 16px;
        border-bottom: none;
        position: relative;
    }

    .nav-item:hover > a,
    .nav-item.active > a {
        color: #A6756A;
        background: rgba(166, 117, 106, 0.05);
    }

    /* 서브메뉴(.dropdown) 있는 항목에만 +/- 표기 */
    .nav-item:has(> .dropdown) > a::after,
    .nav-item.has-submenu > a::after {
        content: '+';
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        font-size: 22px;
        color: #888888;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-item.active:has(> .dropdown) > a::after,
    .nav-item.active.has-submenu > a::after {
        content: '−';
        color: #A6756A;
    }

    /* 드롭다운 모바일에서 표시 */
    .dropdown {
        position: static;
        background: rgba(166, 117, 106, 0.05);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.active .dropdown {
        max-height: 600px; /* 항목 수가 많은 카테고리(눈 7개, 코 6개)까지 모두 표시 */
    }

    .dropdown-menu {
        padding: 0;
    }

    .dropdown-item a {
        padding: 15px 50px;
        color: #666;
        font-size: 14px;
        border-left: 3px solid transparent;
    }

    .dropdown-item:hover a,
    .dropdown-item.active a {
        color: #A6756A;
        background: rgba(166, 117, 106, 0.1);
        border-left-color: #A6756A;
    }

    .nav-actions {
        gap: 10px;
    }

    .consultation-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .lang-toggle {
        width: 30px;
        height: 30px;
    }

    /* 모바일에서 닫기 버튼 표시 */
    .mobile-menu-close {
        display: flex;
    }

    /* Footer 모바일 반응형 */
    .footer {
        padding: 40px 0 210px 0;
    }

    .footer-container {
        width: 100%;
        padding: 0 20px;
    }

    .footer-content {
        margin-bottom: 30px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-info {
        font-size: 12px;
        line-height: 1.6;
    }

    /* 모바일에서 SNS 아이콘 위치 조정 */
    .footer-sns {
        position: static;
        margin: 20px 0;
        justify-content: flex-start;
    }

    .sns-link img {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        font-size: 11px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links a {
        margin-left: 0;
    }

    .quick-consultation {
        padding: 15px 0;
    }

    .quick-consultation-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
        align-items: stretch;
    }

    .quick-consultation-title {
        font-size: 15px;
        text-align: left;
        margin-bottom: 5px;
    }

    .quick-consultation-form {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 8px;
        align-items: stretch;
    }

    /* 첫 번째 줄: 시술분류 / 이름 / 연락처 */
    .form-select-wrapper {
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .form-name-wrapper {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .form-phone-wrapper {
        grid-column: 3 / 4;
        grid-row: 1;
    }

    /* 두 번째 줄: 체크박스 */
    .checkbox-group {
        grid-column: 1 / 4;
        grid-row: 2;
        flex-direction: row;
        justify-content: space-between;
    }

    /* 세 번째 줄: 버튼 */
    .form-submit {
        grid-column: 1 / 4;
        grid-row: 3;
        width: 100%;
        height: 48px;
        font-size: 15px;
    }

    .form-group {
        width: 100%;
        min-width: 0;
    }

    .form-select,
    .form-input {
        height: 42px;
        font-size: 12px;
        padding: 0 10px;
    }

    .form-select {
        padding-right: 28px;
    }

    .checkbox-label {
        font-size: 11px;
    }

    .privacy-link {
        font-size: 11px;
    }

    .quick-menu {
        right: 15px;
        gap: 10px;
        top: auto;
        bottom: 180px;
        transform: none;
    }

    .quick-menu-circle {
        width: 60px;
        height: 60px;
        gap: 3px;
        padding: 6px;
    }

    .quick-icon {
        width: 22px;
        height: 22px;
    }

    .quick-menu-text {
        font-size: 9px;
    }

    .quick-menu-top {
        width: 40px;
        height: 40px;
        margin-top: 5px;
    }

    .quick-menu-top svg {
        width: 18px;
        height: 18px;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    /* 네비바 */

    .nav-container {
        padding: 0 15px;
    }

    .logo-icon {
        width: 120px;
    }

    .login-message {
        font-size: 14px;
    }

    /* Footer 반응형 */
    .footer-container {
        width: 100%;
        padding: 0 15px;
    }

    .sns-link img {
        width: 26px;
        height: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin-left: 0;
    }

    /* 빠른상담 반응형 */

    .quick-consultation-container {
        padding: 0 15px;
    }

    .form-select,
    .form-input {
        font-size: 11px;
        height: 40px;
        padding: 0 8px;
    }

    .form-select {
        padding-right: 25px;
    }

    .checkbox-label {
        font-size: 10px;
    }

    .privacy-link {
        font-size: 10px;
    }

    .form-submit {
        font-size: 14px;
        height: 45px;
    }

    /* 퀵메뉴 반응형 */

    .quick-menu {
        right: 10px;
        bottom: 200px;
        gap: 8px;
    }

    .quick-menu-circle {
        width: 55px;
        height: 55px;
    }

    .quick-icon {
        width: 20px;
        height: 20px;
    }

    .quick-menu-text {
        font-size: 8px;
    }
}

/* ========================================
   모바일 접기/펴기 토글 (빠른상담 / 퀵메뉴)
   - 데스크탑(769px↑): 토글 버튼 숨김, 기존 디자인 유지
   - 모바일(768px↓): 토글 버튼 표시, 기본은 접힌 상태
   ======================================== */

/* 데스크탑: 토글 버튼 기본 숨김 */
.quick-consultation-toggle,
.quick-menu-fab {
    display: none;
}

/* quick-menu-wrapper 는 단순 컨테이너로만 사용 (데스크탑에서는 .quick-menu가 기존대로 fixed 동작) */
.quick-menu-wrapper {
    display: contents;
}

/* ========== 모바일(768px↓) ========== */
@media (max-width: 768px) {

    /* --- 빠른상담: 토글 바 표시 + 기본 접힘 --- */
    .quick-consultation {
        padding: 0;
        background: #d8a89ee7;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    }

    .quick-consultation-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: #d8a89ee7;
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.3px;
        position: relative;
        z-index: 2;
    }

    .quick-consultation-toggle-chevron {
        display: inline-flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .quick-consultation.is-open .quick-consultation-toggle-chevron {
        transform: rotate(180deg);
    }

    /* 접힌 상태: 폼 컨테이너 숨김 */
    .quick-consultation .quick-consultation-container {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .quick-consultation.is-open .quick-consultation-container {
        max-height: 500px;
        padding: 10px 20px 20px;
    }

    /* 모바일에서는 토글 안에 타이틀이 있으니 내부 타이틀 숨김 */
    .quick-consultation .quick-consultation-title {
        display: none;
    }

    /* --- 퀵메뉴: FAB 토글로 표시 --- */
    .quick-menu-wrapper {
        display: block;
        position: fixed;
        right: 15px;
        bottom: 70px; /* 접힌 상담바 위 */
        z-index: 998;
    }

    .quick-menu-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #A6756A;
        color: #fff;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        position: relative;
        z-index: 3;
    }

    .quick-menu-fab .quick-menu-fab-icon-open,
    .quick-menu-fab .quick-menu-fab-icon-close {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .quick-menu-fab .quick-menu-fab-icon-close {
        position: absolute;
        opacity: 0;
        transform: rotate(-90deg);
    }

    .quick-menu-wrapper.is-open .quick-menu-fab .quick-menu-fab-icon-open {
        opacity: 0;
        transform: rotate(90deg);
    }

    .quick-menu-wrapper.is-open .quick-menu-fab .quick-menu-fab-icon-close {
        opacity: 1;
        transform: rotate(0deg);
    }

    /* 모바일 퀵메뉴: 기본 숨김, 토글로 펼침 (배경 없음) */
    .quick-menu-wrapper .quick-menu {
        position: absolute;
        right: 0;
        bottom: 68px;
        top: auto;
        transform: none;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform-origin: bottom right;
        transform: scale(0.85) translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .quick-menu-wrapper.is-open .quick-menu {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
    }

    .quick-menu-wrapper .quick-menu-circle {
        width: 56px;
        height: 56px;
        padding: 6px;
    }

    .quick-menu-wrapper .quick-icon {
        width: 22px;
        height: 22px;
    }

    .quick-menu-wrapper .quick-menu-text {
        font-size: 9px;
    }

    .quick-menu-wrapper .quick-menu-top {
        width: 38px;
        height: 38px;
        margin-top: 4px;
    }

    /* 모바일에서는 푸터 하단 패딩 줄임 (상담바가 접혀있으니) */
    .footer {
        padding-bottom: 80px;
    }
}

/* ========================================
   모든 페이지 공통 — 모바일 영문 자간 0
   - 영문 텍스트가 많이 들어가는 클래스 패턴들을 일괄 처리
   - 한국어 타이틀(-title, -main-title)은 의도된 음수 자간 유지 위해 제외
   - 워터마크(.watermark-text)는 디자인 효과의 일부라 제외
   ======================================== */
@media (max-width: 768px) {
    [class*="eyebrow"],
    [class*="-label"],
    [class*="label-"],
    [class$="-en"],
    [class*="-subtitle"],
    [class*="subtitle-"],
    [class*="-tag"]:not([class*="tag-note"]),
    [class*="-text"]:not([class*="watermark"]),
    .hero-top-bar-text,
    .ba-viewmore,
    .check-card-label {
        letter-spacing: 0 !important;
    }
}
