@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* 커스텀 알림창 스타일 */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 20001;
    text-align: center;
    min-width: 300px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.custom-alert.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

.custom-alert-icon {
    font-size: 48px;
    color: #8d6c4b;
    margin-bottom: 20px;
}

.custom-alert-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.custom-alert-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.custom-alert-button {
    background: #8d6c4b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-alert-button:hover {
    background: #6b5139;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard-Regular', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Top Navigation Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(141, 108, 75, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 80px;
    width: 100%;
}

.topbar-logo {
    flex-shrink: 0;
    padding-left: 30px;
}

.topbar-logo img {
    height: 50px;
    width: auto;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-item {
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 50px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #fff;
}

.nav-item.has-submenu .nav-link::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    margin-left: 5px;
}

.nav-item.has-submenu:hover .nav-link::after {
    transform: rotate(225deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background: white;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 1px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #8d6c4b;
    padding-left: 25px;
}

/* Mobile Menu Button */
.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #8d6c4b;
    border: 1px solid #8d6c4b;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 30px;
}

.quick-link:hover {
    background: #6b5139;
    transform: translateY(-1px);
}

.quick-link i {
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn i {
    transition: all 0.3s ease;
}

.mobile-menu-btn .fa-bars {
    display: block;
}

.mobile-menu-btn .fa-times {
    display: none;
}

.mobile-menu-btn.active .fa-bars {
    display: none;
}

.mobile-menu-btn.active .fa-times {
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 30px 0;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(141, 108, 75, 0.1);
}

.mobile-nav-item.has-submenu .mobile-nav-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.mobile-nav-item.show-submenu .mobile-nav-link::after {
    transform: rotate(45deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background: rgba(141, 108, 75, 0.05);
    transition: max-height 0.3s ease;
}

.mobile-nav-item.show-submenu .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 15px 50px;
    color: rgba(51, 51, 51, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(141, 108, 75, 0.1);
    color: #333;
    padding-left: 55px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: calc(100vh - 80px);
    color: #333;
}

/* 헤더 섹션 */
.content-header {
    background: linear-gradient(135deg, rgba(141, 108, 75, 0.05) 0%, rgba(255, 134, 0, 0.03) 100%);
    padding: 40px 50px 30px 50px;
    text-align: center;
    border-bottom: 1px solid rgba(141, 108, 75, 0.1);
}

.header-title {
	font-family: 'Pretendard-Regular', sans-serif;
	font-size: 2.8rem;
	font-weight: 600;
	margin-bottom: 10px;
	position: relative;
}

.header-subtitle {
	color:#666;
  font-size: 1.2rem;
  line-height: 2.6;
  text-align: center;
  margin-bottom: 10px;
  word-break: keep-all;
}

.header-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1360px;
    margin: 0 auto;
}

.header-info-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(141, 108, 75, 0.2);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center !important; /* 강제로 왼쪽 정렬 */
}

.top-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* 가운데 정렬 추가 */
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.info-icon {
    font-size: 1.2rem !important;
    color: #8d6c4b !important;
    display: inline !important; /* 강제로 인라인 */
    margin-bottom: 0 !important; /* 강제로 마진 제거 */
}

.info-label {
    font-size: 1.1rem !important;
    color: #8d6c4b !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important; /* 강제로 마진 제거 */
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline !important; /* 강제로 인라인 */
}

.info-value {
    font-size: 1rem !important;
    color: #333 !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    display: block !important; /* 강제로 블록 */
    text-align: center !important; /* 값도 가운데 정렬 */
}

/* 컨텐츠 영역 */
.content-area {
    padding: 30px 20px 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 예약 컨테이너 */
.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.reservation-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.9));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(141, 108, 75, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reservation-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(141, 108, 75, 0.15);
    border-color: rgba(141, 108, 75, 0.4);
}

.box-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.box-title i {
    color: #8d6c4b;
    font-size: 1.5rem;
}

.box-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* 새로운 달력 스타일 - 이미지 기반 디자인 */
.calendar-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-nav {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-nav:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar-month {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

/* 새로운 달력 테이블 스타일 */
.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
    background: #ffffff;
}

.calendar-table th {
    padding: 15px 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* 요일별 헤더 색상 */
.calendar-table th:first-child {
    color: #b39a7d; /* 일요일 빨간색 */
}

.calendar-table th:last-child {
    color: #b39a7d; /* 토요일 파란색 */
}

.calendar-table td {
    padding: 0;
    text-align: center;
    position: relative;
    height: 55px;
    vertical-align: middle;
}

.cal-date {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* 일요일 스타일 (휴관일) */
.sunday .cal-date {
    background: #b39a7d;
    color: white;
    cursor: not-allowed;
    font-weight: 600;
}

/* 예약 완료 (회색) */
.finish .cal-date {
    background: #b7b7b7;
    color: white;
    cursor: not-allowed;
    font-weight: 600;
}

/* 신청 가능 (금색) */
.available .cal-date {
    background: #b39a7d;
    color: #fff;
    border: 1px solid #998068;
    font-weight: 500;
}

/* 휴관일 (금색) */
.available .cal-date {
    background: #b39a7d;
    color: #fff;
    border: 1px solid #998068;
    font-weight: 500;
}

.available:hover .cal-date {
    background: #fff;
    color: #b39a7d;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(111, 82, 45, 0.3);
}

/* 선택된 날짜 */
.selected .cal-date {
    background: #fef4e8  !important;
    color: #614646  !important;
    box-shadow: 0 0 10px rgba(111, 82, 45, 0.3);
    font-weight: 600;
}

/* 빈 날짜 (이전/다음 달) */
.cal-blank {
    /*opacity: 0.3;*/
}

.cal-blank .cal-date {
    /*background: #f8f9fa;*/
    color: #adb5bd;
    cursor: not-allowed;
}

/* 토요일 스타일 */
.saturday .cal-date {
    color: #b39a7d;
}

/* 오늘 날짜 강조 */
.today .cal-date {
    position: relative;
}

.today .cal-date::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #ffc107;
    border-radius: 50%;
}

/* 휴일 스타일 (기존 holiday 클래스 대체) */
.holiday .cal-date {
    background: #fff !important;
    color: #cacaca  !important;
    cursor: not-allowed;
    border: 1px solid #ddd;
    font-weight: 600;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid transparent;
}

.legend-holiday {
    background: #b39a7d;
}

.legend-finish {
    background: #6c757d;
}

.legend-available {
    background: #ffffff;
    border: 2px solid #e9ecef;
}

/* 폼 스타일 */
.form-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 37px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 37px;
}

.form-group-half {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.required {
    color: #8d6c4b;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #8d6c4b;
    box-shadow: 0 0 0 2px rgba(141, 108, 75, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;

}

/* 개인정보 동의 */
.privacy-agreement {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.9));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(141, 108, 75, 0.1);
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
    margin-top: 40px;
}

.privacy-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.privacy-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    border: 1px solid #e9ecef;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8d6c4b;
}

.privacy-check label {
    color: #333;
    font-size: 14px;
}

/* 제출 버튼 */
.submit-button {
    width: 300px;
    padding: 15px;
    background: linear-gradient(135deg, #8d6c4b, #6b5139);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto 0 auto;
    display: block;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(141, 108, 75, 0.3);
}

.submit-button:disabled {
    background: #dee2e6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}












        .bank-info {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            max-width: 600px;
            width: 100%;
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .info-row:last-child {
            margin-bottom: 0;
        }

        .label {
            background: #fdf9f5;
            border: 2px solid #b39a7d;
            color: #4f3624;
            font-size: 15px;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 25px;
            white-space: nowrap;
            min-width: 90px;
            text-align: center;
        }

        .value {
            font-size: 15px;
            font-weight: 500;
            color: #2d1810;
            flex: 1;
        }

        .account-number {           
            font-weight: 00;
            color: #2d1810;
            letter-spacing: 0px;
        }


/* 가이드 섹션 전체 스타일 개선 */
.guide-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #8d6c4b;
    padding-bottom: 10px;
}

.guide-title i {
    color: #8d6c4b;
    font-size: 1.3rem;
}

.guide-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(141, 108, 75, 0.05);
    border-radius: 8px;
    border-left: 4px solid #8d6c4b;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 108, 75, 0.1);
    border-color: rgba(141, 108, 75, 0.3);
}

.guide-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8d6c4b, #6b5139);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(141, 108, 75, 0.3);
}

.guide-info {
    flex: 1;
}

.guide-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-details li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.guide-details li:last-child {
    margin-bottom: 0;
}

.guide-details li::before {
    content: '•';
    color: #8d6c4b;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.guide-detail {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}        
        
        


/* 개선된 무통장입금 정보 스타일 - 기존 CSS에 추가하세요 */

/* 기존 .bank-info 스타일을 이걸로 교체하세요 */
.bank-info {
    background: linear-gradient(135deg, #fdf9f5 0%, #f8f4ef 100%);
    border: 2px solid #e8ddd0;
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 2px 12px rgba(179, 154, 125, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.bank-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(179, 154, 125, 0.15);
}

/* 헤더 추가 */
.bank-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8ddd0;
}

.bank-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b39a7d, #9a8469);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.bank-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #4f3624;
}

/* 기존 .info-row 스타일을 이걸로 교체하세요 */
.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(179, 154, 125, 0.2);
    transition: all 0.3s ease;
}

.info-row:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(179, 154, 125, 0.4);
}

.info-row:last-child {
    margin-bottom: 0;
}

/* 기존 .label 스타일을 이걸로 교체하세요 */
.label {
    background: linear-gradient(135deg, #b39a7d, #9a8469);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    margin-right: 20px;
    box-shadow: 0 2px 8px rgba(179, 154, 125, 0.3);
    flex-shrink: 0
}

/* 기존 .value 스타일을 이걸로 교체하세요 */
.value {
    font-size: 16px;
    font-weight: 500;
    color: #2d1810;
    flex: 1;
}

/* 기존 .account-number 스타일을 이걸로 교체하세요 */
.account-number {
    
    color: #2d1810;
    font-size: 16px;
}

/* QR 코드 섹션 개선 */
.qr-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-image {
    width: 100px;
    height: 100px;
    border: 2px solid #e8ddd0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.qr-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #b39a7d, #9a8469);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(179, 154, 125, 0.3);
}

.qr-link:hover {
    background: linear-gradient(135deg, #9a8469, #8a7459);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(179, 154, 125, 0.4);
    color: white;
}

.qr-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.qr-link:hover::after {
    transform: translateX(3px);
}

/* 안내 메시지 추가 */
.payment-notice {
    background: rgba(179, 154, 125, 0.1);
    border: 1px solid rgba(179, 154, 125, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.payment-notice h4 {
    color: #4f3624;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-notice p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}





  
        
        


@media (max-width: 768px) {
    .bank-info {
        padding: 20px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    
    .label {
        margin-right: 0;
        align-self: flex-start;
        min-width: auto;
    }
    
    .qr-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .account-number {
        font-size: 16px;
    }	
    .guide-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .guide-number {
        align-self: flex-start;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .guide-step-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .guide-details li {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .guide-description {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    
    	
    .header-subtitle {
        color: #666;
        font-size: 1.0rem;
        line-height: 1.3;
        font-weight: 300;
    }   	
	
	
    .topbar-container {
        padding: 0 20px;
        height: 70px;
    }

    .topbar-logo img {
        height: 30px;
    }

    .topbar-nav {
        display: none;
    }

    .quick-link {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        color: white;
    }

    .mobile-nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .main-content {
        margin-top: 70px;
    }

    .content-header {
        padding: 40px 20px 20px 20px;
    }

    .header-title {
        font-size: 2rem;
    }

    .content-area {
        padding: 30px 20px;
    }

    .reservation-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reservation-box {
        padding: 0px;
    }
    
    .reservation-box > h2.box-title {
    	margin-top : 25px;
    	margin-left : 25px;
    }
    
    .reservation-box > p.box-subtitle {
    	margin-left : 25px;
    }
    
    .form-container, .calendar-container {
    	margin : 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group-half {
        margin-bottom: 25px;
    }

    .privacy-agreement {
        padding: 25px;
    }

    .calendar-table th,
    .calendar-table td {
        padding: 8px 4px;
    }

    .cal-date {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
		.form-row[style*="grid-template-columns: 1fr 1fr 1fr"] {
		    grid-template-columns: 1fr !important;
		}

		.form-row[style*="grid-template-columns: 1fr 1fr"] {
		    grid-template-columns: 1fr !important;
		}

    .form-textarea {
    width: 100%;
    box-sizing: border-box;
		}


}

			input:disabled {
			    background-color: #e0e0e0; /* 밝은 회색 */
			    color: #666;              /* 글자도 흐리게 */
			    cursor: not-allowed;      /* 비활성 느낌 나는 커서 */
			}

			select option:disabled {
			  background-color: #f0f0f0;  /* 옅은 회색 */
			  color: #999;                /* 텍스트도 흐리게 */
			}







        @media (max-width: 480px) {
            .info-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
            
            .label {
                align-self: flex-start;
                min-width: auto;
            }
            
            .value {
                font-size: 14px;
            }
            
				    .form-textarea {
				    width: 100%;
				    box-sizing: border-box;
						}
						
						
    .guide-title {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .guide-item {
        padding: 15px;
    }
    
    .guide-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .guide-step-title {
        font-size: 1rem;
    }
    
    .guide-details li {
        font-size: 0.85rem;
        line-height: 1.5;
    }						

    .bank-info-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .qr-image {
        width: 80px;
        height: 80px;
    }
    
    .value {
        font-size: 14px;
    }						
            
        }
        
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.popup-content {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	width: 900px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 17px;
	cursor: pointer;
}