 :root {
            --header-bg: #1d5139; 
            --nav-bg: #32815d;
            --nav-border-top: #3faa79;
            --nav-hover-yellow: #ffeb3b;
            --bg-light: #f4f7fa;
            --footer-bg: #ffffff;
            --border-color: #e2e8f0;
            --step-active: #32815d;
            --step-inactive: #e2e8f0;
            --radius-default: 6px;
            --danger-color: #e53e3e;
            --cancel-bg: #94a3b8;
        }

body {
   font-family: 'Pretendard', -apple-system, sans-serif;
   margin: 0; background-color: var(--bg-light); color: #2b2d42;
   display: flex; flex-direction: column; min-height: 100vh;
}

/* header {
    display: flex;
    background: url(/img/bga.png);
    color: white;
    padding: 70px 15px;
    text-align: center;
    position: relative;
    justify-content: center;
    align-items: center;
}

header img {
    max-width: 100%;      
    height: auto;          
    display: block;       
    width: 350px;          
} */


        /* 체크박스 숨김 */
        #menu_trigger_n { display: none; }

        /* 헤더 레이아웃 조정 */
/*         header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background: #fff;
            border-bottom: 1px solid #ddd;
            position: relative;
            z-index: 2000;
        }
         */

header {
    display: flex;
    background: url(/img/bga.png);
    color: white;
    height: 180px;
    text-align: center;
    position: relative;
    justify-content: center;
    align-items: center;
}

header img {
    max-width: 100%;      
    height: auto;          
    display: block;       
    width: 320px;          
}

/* 데스크탑 네비게이션 (기존 클래스 유지하되 모바일서 숨김) */
@media (max-width: 768px) {
.nav-bar { display: none !important; }
header {height: 80px;}
header img {width: 200px; position: absolute;left: 15px; top: 15px;}
}

        /* 햄버거 버튼 아이콘 */
        .hamburger_btn_n {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 21px;
            cursor: pointer;
            z-index: 2100;
        }
        .hamburger_btn_n span {
            display: block;
            width: 100%;
            height: 3px;
            background: #FFF;
            transition: 0.3s;
        }

        /* 사이드 메뉴 (모바일 전용) */
        .side_menu_n {
            display: none;
            position: fixed;
            top: 0;
            right: -680px;
            width: 260px;
            height: 100%;
            background: #fff;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 2200;
            transition: 0.4s ease;
            padding: 60px 20px 20px;
        }
        .side_menu_n a {
            display: block;
            padding: 15px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }

		 .side_menu_n a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background: #32815d;
    margin-right: 8px;
    border-radius: 2px;
}

        /* 닫기 버튼 */
        .close_btn_n {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #999;
        }

        /* 배경 어둡게 */
        .overlay_n {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 82%);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 2150;
        }

        /* --- 반응형 동작 (768px 이하) --- */
        @media (max-width: 768px) {
            .hamburger_btn_n { display: flex; position: absolute; right: 20px;}
            .side_menu_n { display: block; }

            /* 체크박스 체크 시 메뉴 열림 */
            #menu_trigger_n:checked ~ .side_menu_n { right: 0; }
            #menu_trigger_n:checked ~ .overlay_n { opacity: 1; visibility: visible; }
        }




/* 모바일 전용 설정 (화면 너비가 768px 이하일 때) */
/* @media (max-width: 768px) {
    header img {margin: 0 auto;
        width: 80%;    
    }
} */

        header h1 { margin: 0; font-size: 2.2rem; font-weight: 800; position: relative; z-index: 2; text-shadow: 0 4px 10px rgba(0,0,0,0.15); }

        .nav-bar { 
            background: #1d5139; border-top: 1px solid var(--nav-border-top);
            display: flex; justify-content: center; padding: 18px 0;
            position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        
        .nav-bar a {
            color: white; text-decoration: none; padding: 5px 25px; font-weight: 700; font-size: 1.1rem;
            transition: all 0.3s ease; border-radius: 4px; position: relative;
        }
        .nav-bar a:hover { color: var(--nav-hover-yellow); text-shadow: 0 0 8px rgba(255, 235, 59, 0.4); }
        .nav-bar a::after { content: ""; position: absolute; bottom: -5px; left: 50%; width: 0; height: 2px; background-color: var(--nav-hover-yellow); transition: all 0.3s ease; transform: translateX(-50%); }
        .nav-bar a:hover::after { width: 70%; }


		.nav_txbox{margin-left:30px;align-content: center;}
		.nav_txbox a {padding: 5px 5px;}
        .nav_tx01 {background: #02331d; padding: 10px 17px; border-radius: 5px;}
		.nav_tx02 {background: #3faa79; padding: 8px 17px; border-radius: 5px;}

        .content-wrapper { flex: 1; width: 100%; max-width: 1400px; margin: 0 auto; padding: 20px; box-sizing: border-box; }
        .main-card { background: #fff; border-radius: 6px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

        .title-area { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; border-bottom: 2px solid #f0f0f0; padding-bottom: 20px; flex-wrap: wrap; gap: 10px; }
        .content-title { font-size: 1.8rem; margin: 0; font-weight: 800; display: flex; align-items: center; }
        .content-title::before { content: ""; width: 6px; height: 28px; background: var(--nav-bg); margin-right: 12px; border-radius: 3px; }
        
        .info-summary { font-size: 0.9rem; color: #4b5563; line-height: 1.5; text-align: right; }
        .info-summary b { color: #d9534f; }

        .calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; background: #f8f9ff; padding: 10px 20px; border-radius: 12px; }
        .calendar-header h2 { font-size: 1.3rem; margin: 0; }
        .nav-btn { background: #fff; border: 1px solid #ddd; padding: 8px 12px; border-radius: 8px; cursor: pointer; }

        .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background-color: #eee; border-radius: 5px; overflow: hidden; border: 1px solid #eee; }
        .day-label { background: #f8f9fa; padding: 12px 0; text-align: center; font-weight: bold; font-size: 0.9rem; }
        .day-label.sun { color: #d9534f; }
        .day-label.sat { color: #0077b6; }

        .date-cell { background: #fff; min-height: 250px; padding: 10px; transition: 0.2s; position: relative; cursor: pointer; }
        .date-num { font-weight: 800; font-size: 1.1rem; display: block; margin-bottom: 10px; }
        
        .closed .date-num { color: #ccc; }
        .sun .date-num { color: #d9534f; }
        .sat .date-num { color: #0077b6; }

        .time-slot-container { display: grid; grid-template-columns: 1fr; gap: 4px; }
        .time-btn {
            background: #fff; border: 1px solid #d1d5db; border-radius: 6px; padding: 10px 5px;
            font-size: 0.9rem; cursor: pointer; text-align: center;
            display: flex; flex-direction: row; align-items: center; justify-content: center;
            transition: all 0.2s; gap: 6px;
        }
        .time-btn b { color: var(--nav-bg); font-size: 0.85rem; font-weight: 700; }
        .time-btn:hover { border-color: var(--nav-bg); color: var(--nav-bg); background: #f0f7f4; transform: translateY(-1px); }
         /* [추가] 매진 버튼 및 비활성화 스타일 */
        .time-btn:disabled {
            background-color: #f1f5f9 !important;
            border-color: #cbd5e1 !important;
            color: #94a3b8 !important;
            cursor: not-allowed !important;
            position: relative;
        }

        .time-btn:disabled b {
            color: #94a3b8 !important;
        }

        .time-btn:disabled::after {
            content: "매진";
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.7rem;
            color: #ef4444;
            background: #fee2e2;
            padding: 1px 3px;
            border-radius: 2px;
            font-weight: bold;
        }

        /* 호버 효과 방지 */
        .time-btn:disabled:hover {
            background-color: #f1f5f9 !important;
            color: #94a3b8 !important;
        }




        .time-btn2 {
            background: #fff; border: 1px solid #d1d5db; border-radius: 6px; padding: 10px 5px;
            font-size: 0.9rem; cursor: pointer; text-align: center;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: all 0.2s; gap: 6px;
        }
        .time-btn2 b { color: var(--nav-bg); font-size: 0.85rem; font-weight: 700; }
        .time-btn2:hover { border-color: var(--nav-bg); color: var(--nav-bg); background: #f0f7f4; transform: translateY(-1px); }
         /* [추가] 매진 버튼 및 비활성화 스타일 */
        .time-btn2:disabled {
            background-color: #f1f5f9 !important;
            border-color: #cbd5e1 !important;
            color: #94a3b8 !important;
            cursor: not-allowed !important;
            position: relative;
        }

        .time-btn2:disabled b {
            color: #94a3b8 !important;
        }

        .time-btn2:disabled::after {
            content: "매진";
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.7rem;
            color: #ef4444;
            background: #fee2e2;
            padding: 1px 3px;
            border-radius: 2px;
            font-weight: bold;
        }

        /* 호버 효과 방지 */
        .time-btn2:disabled:hover {
            background-color: #f1f5f9 !important;
            color: #94a3b8 !important;
        }


       .closed-txt { color: #d9534f; font-size: 0.8rem; font-weight: bold; text-align: center; margin-top: 20px; }

        #mobile-time-picker {
            display: none; margin-top: 20px; padding: 25px; background: #f6fdfa;
            border-radius: 15px; border: 2px solid var(--nav-bg);
        }
        .mobile-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr);
            gap: 12px; 
            margin-top: 15px;
        }

        #modal-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); z-index: 1000; align-items: center; justify-content: center;
            backdrop-filter: blur(4px);
        }
        .modal-content {
            background: white; padding: 40px; border-radius: var(--radius-default); width: 90%; max-width: 400px;
            text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.2); animation: popUp 0.3s ease;
        }
        @keyframes popUp { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
        .modal-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; color: var(--header-bg); }
        .modal-info { font-size: 1.1rem; margin-bottom: 25px; line-height: 1.6; color: #4b5563; }
        .modal-btns { display: flex; gap: 10px; justify-content: center; }
        .modal-btn { padding: 12px 25px; border-radius: var(--radius-default); border: none; font-weight: 700; cursor: pointer; font-size: 1rem; transition: 0.2s; }
        .btn-confirm { background: var(--nav-bg); color: white; }
        .btn-cancel { background: #e2e8f0; color: #4b5563; }




        /* 스텝 바 */
        .step-container { display: flex; justify-content: space-between; align-items: center; margin: 20px auto 30px; position: relative; max-width: 900px; }
        .step-container::before { content: ""; position: absolute; top: 22px; left: 10%; width: 80%; height: 4px; background: var(--step-inactive); z-index: 1; border-radius: 2px; }
        .step-progress-bar { position: absolute; top: 22px; left: 10%; width: 40%; height: 4px; background: var(--nav-bg); z-index: 1; border-radius: 2px; }
        .step { position: relative; z-index: 2; text-align: center; flex: 1; }
        .step-circle { width: 48px; height: 48px; background: #fff; border: 3px solid var(--step-inactive); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--step-inactive); font-weight: 700; font-size: 1.1rem; transition: all 0.4s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
        .step.done .step-circle { background: var(--step-active); border-color: var(--step-active); color: #fff; }
        .step.active .step-circle { background: #fff; border-color: var(--step-active); color: var(--step-active); transform: scale(1.15); box-shadow: 0 8px 15px rgba(50, 129, 93, 0.2); }
        .step-label { font-size: 1rem; color: #94a3b8; font-weight: 600; }
        .step.active .step-label, .step.done .step-label { color: var(--step-active); }

        .content-title { font-size: 1.8rem; margin: 0 0 30px; font-weight: 800; display: flex; align-items: center; }
        .content-title::before { content: ""; width: 6px; height: 28px; background: var(--nav-bg); margin-right: 12px; border-radius: 3px; }

        /* 테이블 */
        .info-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--header-bg); }
        .info-table th { width: 220px; background: #f8fbf9; padding: 25px 20px; border-bottom: 1px solid var(--border-color); text-align: left; color: #334155; vertical-align: top; }
        .info-table td { padding: 25px 20px; border-bottom: 1px solid var(--border-color); }
        
        .required-notice { color: var(--danger-color); font-size: 0.85rem; font-weight: 600; /* margin-top: 1px; */ display: block; }
        
        .input-text { width: 100%; max-width: 400px; padding: 12px; border: 1px solid #cbd5e1; border-radius: var(--radius-default); font-size: 1rem; }
        .radio-group { display: flex; gap: 40px; }
        .radio-group label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 600; font-size: 1.1rem; }
        .radio-group input[type="radio"] { appearance: none; width: 22px; height: 22px; border: 2px solid #cbd5e1; border-radius: 50%; position: relative; cursor: pointer; }
        .radio-group input[type="radio"]:checked { border-color: var(--nav-bg); }
        .radio-group input[type="radio"]:checked::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: var(--nav-bg); border-radius: 50%; }
        
        .personnel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .personnel-item { display: flex; flex-direction: column; gap: 8px; width: 85%;}
        .personnel-item label { font-weight: 600; color: #475569; font-size: 0.9rem; }
        
        .btn-area { text-align: center; margin-top: 50px; display: flex; justify-content: center; gap: 15px; }
        .btn-common { padding: 18px 60px; font-size: 1.2rem; font-weight: 700; border-radius: var(--radius-default); cursor: pointer; transition: all 0.3s ease; border: none; min-width: 180px; }
        .btn-cancel { background: var(--cancel-bg); color: white; }
        .btn-cancel:hover { background: #64748b; transform: translateY(-2px); }
        .btn-next { background: var(--nav-bg); color: white; }
        .btn-next:hover { background: var(--header-bg); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

        .complete-msg { text-align: center; padding: 20px 20px; }
        .complete-msg .icon { font-size: 4rem; color: var(--nav-bg); margin-bottom: 20px; display: block; }
        .complete-msg h3 { font-size: 2rem; color: var(--header-bg); font-weight: 800; margin-bottom: 10px; }
        .complete-msg p { color: #64748b; font-size: 1.1rem; }
        

 /* [추가] 개인/단체 선택 버튼 스타일 */
        .type-selector { display: flex; gap: 10px; }
        .btn-type {
            flex: 1;
            max-width: 150px;
            padding: 12px 0;
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #64748b;
            border-radius: var(--radius-default);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .btn-type.active {
            background: var(--nav-bg);
            border-color: var(--nav-bg);
            color: #fff;
            box-shadow: 0 4px 10px rgba(50, 129, 93, 0.2);
        }
        .btn-type:hover:not(.active) {
            background: #f1f5f9;
            border-color: #94a3b8;
        }

        /* 개인정보 동의 섹션 */
        .agreement-box { margin-top: 30px; padding: 20px; background: #f8fbf9; border: 1px solid var(--border-color); border-radius: var(--radius-default); }
        .agreement-content { height: 100px; overflow-y: auto; background: #fff; border: 1px solid #e2e8f0; padding: 15px; font-size: 0.9rem; color: #64748b; line-height: 1.6; margin-bottom: 15px; }
        .agreement-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 600; color: #334155; }
        .agreement-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--nav-bg); cursor: pointer; }
		.pay-check {display: flex; align-items: center; cursor: pointer;font-weight: 600;color: #334155; justify-content: center;}
        .pay-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--nav-bg); cursor: pointer; }

        /* .btn-area { text-align: center; margin-top: 50px; display: flex; justify-content: center; gap: 15px; } */
        .btn-common { padding: 18px 60px; font-size: 1.2rem; font-weight: 700; border-radius: var(--radius-default); cursor: pointer; transition: all 0.3s ease; border: none; min-width: 180px; }
        .btn-cancel { background: var(--cancel-bg); color: white; }
        .btn-cancel:hover { background: #64748b; transform: translateY(-2px); }
        .btn-next { background: var(--nav-bg); color: white; }
        .btn-next:hover { background: var(--header-bg); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .btn-home { background: var(--nav-bg); color: white; border: none; padding: 18px 80px; font-size: 1.2rem; font-weight: 700; border-radius: var(--radius-default); cursor: pointer; transition: 0.3s; }


/* [수정] 검색 영역 - 셀렉트 박스 길이 조정 */
        .search-container { 
            background: #f8fbf9; 
            padding: 25px; 
            border-radius: var(--radius-default); 
            margin-bottom: 30px; 
            display: flex; 
            align-items: center; 
            gap: 15px;
            border: 1px solid var(--border-color);
        }
        .search-label { font-weight: 700; color: #334155; min-width: 70px; }
        .search-select { 
            width: 180px; /* 셀렉트 박스 길이를 더 길게 조정 */
            padding: 12px; 
            border: 1px solid #cbd5e1; 
            border-radius: 6px; 
            font-size: 1rem; 
            background: #fff;
            cursor: pointer;
        }
        .search-input { flex: 1; max-width: 350px; padding: 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 1rem; }
        .btn-search { 
            background: var(--nav-bg); color: white; border: none; padding: 10px 35px; 
            border-radius: 6px; font-weight: 700; cursor: pointer; transition: 0.2s;
            font-size: 1rem;
        }
        .btn-search:hover { background: var(--header-bg); }

        /* 결과 테이블 */
        .list-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 0.95rem; }
        .list-table thead { border-top: 2px solid var(--header-bg); border-bottom: 1px solid var(--border-color); }
        .list-table th { background: #f8fbf9; padding: 18px 10px; color: #334155; font-weight: 700; text-align: center; }
        .list-table td { padding: 18px 10px; border-bottom: 1px solid var(--border-color); text-align: center; color: #475569; }
        .status-badge { DISPLAY: block; margin: 0 auto; width: 60PX; /* background: #edf2f7; */ color: #4a5568; padding: 5px 12px; border-radius: 3px; font-size: 0.9rem; font-weight: 700; }
        .status-complete { background: #fff4d3;color: #cb7900; border: 1px solid #b29400;text-align: center;}
		.status-complete2 {background: #2cbaa8; color: #fefffe; border: 1px solid #008a74;text-align: center;}
		.status-not { background: #ffe2e2;color: #d30e2e; border: 1px solid #d91f30;text-align: center;}
		.status-wait {background: #f5fbff; color: #0600da;border: 1px solid #0443be;text-align: center;}
		.status-expired {background: #f1f5f9; color: #64748b;border: 1px solid #cbd5e1;text-align: center;}

        footer { text-align: center; padding: 40px 20px; background: var(--footer-bg); color: #64748b; font-size: 0.9rem; border-top: 1px solid var(--border-color); margin-top: 40px; }

 
        @media (max-width: 768px) {
		.status-badge{margin: 0 }
        .complete-msg h3 { font-size: 1.6rem; }    
        .content-wrapper {padding: 0;}
        .calendar-header {padding: 0px; background: #ffffff;}
        .info-summary {font-size: 0.8rem; text-align: left;}
        .main-card {border-radius: 6px;padding: 15px ;}
        .content-title {font-size: 1.6rem; margin: 10px 0px;}
         footer{padding: 20px 10px;}
         footer p:nth-child(2){font-size: 0.8rem;}
         header h1 {font-size: 1.8rem;}
         #mobile-time-picker {border-radius: 5px; padding: 25px 10px;}
        .info-table th, .info-table td {
          display: flex;
          width: 100%;
          padding: 15px 0px;
          flex-direction: row;
          flex-wrap: wrap;
        }
        .info-table th {
          font-size: 0.9rem;
          color: #1b8369;
          margin-bottom: 4px;
          font-weight: 700;
          background: transparent;
          border-bottom: none; 
          padding-bottom: 5px; 
        }

        .info-table td {
          font-size: 1.2rem;
          font-weight: bold;
          color: #1d1d1d;
        }

        .personnel-grid { grid-template-columns: 1fr; WIDTH: 100%;}
       /*  .btn-area { flex-direction: row; padding: 0 10px; } */
        .btn-common { flex: 1; padding: 18px 0; min-width: auto; }
        .btn-type { width: 120PX;}
        .date-cell { min-height: 60px; padding: 5px 0; display: flex; align-items: center; justify-content: center; }
        .date-num { margin-bottom: 0; }
        .time-slot-container, .closed-txt { display: none; }
         #mobile-time-picker.active { display: block; }
        .date-cell.active { background: var(--nav-bg) !important; color: white !important; border-radius: 0px; }
        .date-cell.active .date-num { color: white !important; }

        .search-container { flex-direction: column; align-items: stretch; gap: 10px; }
        .search-select { width: 100%; }
        .search-input { max-width: none; }
            
        .list-table, .list-table thead, .list-table tbody, .list-table th, .list-table td, .list-table tr { display: block; }
        .list-table thead { display: none; }
        .list-table tr { margin-bottom: 20px; border: 1px solid var(--border-color); border-radius: var(--radius-default); padding: 10px; background: #fff; }
        .list-table td { 
                text-align: right; padding: 12px 10px; border-bottom: 1px solid #f1f5f9; 
                display: flex; justify-content: space-between; align-items: center;
                font-size: 1rem;
        }
        .list-table td:last-child { border-bottom: none; }
        .list-table td::before { 
            content: attr(data-label); font-weight: 700; color: var(--nav-bg); font-size: 0.85rem; 
        }

}

        @media (max-width: 1024px) {
            .date-cell { min-height: 60px; padding: 5px 0; display: flex; align-items: center; justify-content: center; }
            .date-num { margin-bottom: 0; }
            .time-slot-container, .closed-txt { display: none; }
            #mobile-time-picker.active { display: block; }
            .date-cell.active { background: var(--nav-bg) !important; color: white !important; border-radius: 0px; }
            .date-cell.active .date-num { color: white !important; }
        }


    .museum-footer {
        padding: 40px 20px;
        background-color: #fdfdfd;
        border-top: 1px solid #e2e8f0;
        text-align: center;
        font-family: 'Pretendard', -apple-system, sans-serif;
        color: #475569;
        line-height: 1.6;
    }

    .footer-brand {
        margin-bottom: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        color: #1e293b;
    }

    .footer-info {font-size: 0.85rem; max-width: 1000px;  margin: 0 auto 15px;}
    .footer-info span {display: inline-block;  margin: 0 8px;}

    @media (max-width: 600px) {
        .footer-info span {margin: 4px 0;}
        .divider { display: none;}
    }

    .copyright {font-size: 0.8rem;  color: #94a3b8;  margin-top: 10px;}

    .divider {color: #cbd5e1;}

	.mar-b20 { margin-bottom: 20px; }
	.mar-t20 { margin-top: 20px; }

    .tx_exp > h4 { 
        margin: 0 0 10px 0; 
        font-size: 1rem; 
        color: #1e293b;
        display: flex;
        align-items: center;
    }
    .tx_exp > h4::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 14px;
        background: #32815d;
        margin-right: 8px;
        border-radius: 2px;
    }

   .exp-grid{
	    width: 100%; display: grid;
        grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
        gap: 10px;
       /*  margin-top: 10px; */
    }
    .exp-card{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #fff;
        transition: all 0.2s ease;
    }

    /* 체크 시 강조 효과 */
    .exp-card.active { 
        border-color: var(--nav-bg); 
        background-color: #f0f7ff; 
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    }

    .exp-info { 
        display: flex; 
        align-items: center; 
        cursor: pointer; 
        flex: 1; 
        user-select: none;
    }
    
    .exp-info input[type="checkbox"] { 
        width: 20px; 
        height: 20px; 
        margin-right: 12px; 
        cursor: pointer; 
        accent-color: var(--nav-bg); /* 체크박스 색상 통일 */
    }

    .exp-label { 
        font-size: 0.95rem; 
        font-weight: 600; 
        color: #334155; 
    }

    /* 수량 입력부 반응형 */
    .qty-wrap { 
        display: flex; 
        align-items: center; 
        gap: 6px; 
        margin-left: 10px;
    }

    .qty-input { 
        width: 60px !important; 
        height: 36px !important; 
        text-align: center; 
        border: 1px solid #cbd5e1; 
        border-radius: 6px !important; 
        font-weight: 700;
        font-size: 1rem;
        transition: border-color 0.2s;
    }
    
    .qty-input:focus {
        border-color: var(--nav-bg);
        outline: none;
    }

    .qty-input:disabled { 
        background: #f8fafc; 
        color: #cbd5e1; 
        border-color: #e2e8f0; 
    }

    .unit { font-size: 0.85rem; color: #64748b; font-weight: 500; }


   @media (max-width:560px) {
    	.tx_exp > h4 { display:none;}
		.exp-grid{grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));}
        .exp-card {padding: 10px 12px;}
        .exp-label {font-size: 0.9rem;}
        .qty-input {width: 50px;height: 32px;}
    }
