@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");




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

        html {
            overflow-y: scroll;
            scrollbar-gutter: stable;
        }

        html.modal-open {
            overflow: hidden;
        }

        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;
            line-height: 1.6;
            color: #333;
            background: #eaeaea;
            min-height: 100vh;
        }

        button, input {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
            color: #333;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* 메인 배너 */
        .main-banner {
            width: 100%;
            height: 100%;
            background: #fff;
            overflow: hidden;
            line-height: 0;
        }

        .main-banner img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        /* 예약 영역 */
        .booking-section {
            max-width: 1200px;
            margin: 10px auto;
            padding: 20px 20px;
        }

        .booking-section h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #3d4a7a;
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .date-picker-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: flex-end;
            flex-wrap: wrap;
        }

        .date-input-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
        }

        .date-input-group label {
            color: #3d4a7a;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .date-input-group label::before {
            content: '';
            width: 18px;
            height: 18px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d4a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            flex-shrink: 0;
        }

        .date-input-group input {
            padding: 18px 22px;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            border-radius: 10px;
            font-size: 17px;
            min-width: 260px;
            cursor: pointer;
            color: #333;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        }

        .date-input-group input::placeholder {
            color: #999;
        }

        .date-input-group input:hover {
            background: #fafbfc;
            border-color: #3d4a7a;
        }

        .date-input-group input:focus {
            outline: none;
            border-color: #3d4a7a;
            background: #fff;
            box-shadow: 0 0 12px rgba(61, 74, 122, 0.15);
        }

        .search-btn {
            padding: 16px 60px;
            margin-bottom: 2px;
            background: #0b4da2;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
            white-space: nowrap;
        }

        .search-btn:hover {
            background: #053068;;
        }

        /* 서비스 특징 */
        .features-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-item {
            background: #fff;
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            color: #fff;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
        }

        .feature-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .feature-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 상품 리스트 */
        .product-section {
            max-width: 600px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .product-section h2 {
            color: #3d4a7a;
            font-size: 32px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .selected-dates {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            color: #666;
            font-size: 16px;
        }

        .date-info {
            padding: 8px 20px;
            background: #81a53c54;
            border-radius: 10px;
            /* border: 1px solid #d5dae8; */
        }

        .date-info strong {
            color: #3d4a7a;
            font-weight: 600;
            margin-left: 5px;
        }

        .date-separator {
            color: #d0d0d0;
            font-size: 14px;
        }

        .product-list-notice {
            text-align: center;
            margin: 10px 0;
            padding: 20px;
        }

        .product-list-notice p {
            color: #666;
            font-size: 14px;
            margin: 0;
            letter-spacing: -1px;
        }

         .product-list-notice h2 {
            color: #333;
            font-size: 32px;
            font-weight: 500;
            margin: 0;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .product-list-notice h2::before {
            content: '';
            width: 36px;
            height: 36px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            flex-shrink: 0;
        }

        .product-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .product-card {
            background: #fff;
            overflow: hidden;
            border: 1px solid #e5e5e5;
            position: relative;
            display: inline-block;
            max-width: 550px;
        }

        .product-image-wrapper {
            width: 100%;
            background: #FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .product-image {
            max-width: 100%;
            background: #e5e5e5;
            height: auto;
            border-radius: 16px;
            object-fit: contain;
        }

        .product-image:not(img) {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 16px;
        }

        .product-info {
            padding: 30px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-name {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }

        .product-specs {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            width: 100%;
        }

        .product-specs li {
            font-size: 14px;
            color: #555;
            padding: 8px 0;
            position: relative;
            padding-left: 20px;
        }

        .product-specs li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #1a73e8;
            font-weight: bold;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: #1a73e8;
            margin-bottom: 20px;
            text-align: center;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 18px;
            margin-right: 10px;
        }

        .sale-price {
            color: #e74c3c;
        }

        .product-desc {
            color: #666;
            font-size: 14px;
            margin-top: 12px;
            line-height: 1.6;
            text-align: center;
        }

        .product-stock {
            color: #27ae60;
            font-size: 14px;
            margin-top: 10px;
            font-weight: 600;
            display: inline-block;
            padding: 4px 12px;
            background: #e8f8f5;
            border-radius: 20px;
            border: 1px solid #a9dfbf;
        }

        .reserve-btn {
            width: 200px;
            padding: 14px;
            margin-top: 20px;
            background: #0b4da2;
            color: #FFF;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            cursor: pointer;
        }

        .reserve-btn:hover {
            background: #053068;
            color: #FFF;
        }

        .reserve-btn:active {
            transform: translateY(0);
        }

        .no-products {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: #666;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e5e5e5;
        }

        .no-products p {
            font-size: 18px;
            color: #666;
        }

        /* 이용 절차 */
        .process-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 60px 20px;
            background: #fff;
            border-radius: 16px;
        }

        .process-section h2 {
            text-align: center;
            font-size: 32px;
            font-weight: 600;
            color: #333;
            margin-bottom: 50px;
        }

        .process-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .process-item {
            flex: 1;
            min-width: 200px;
            max-width: 220px;
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 40px;
            height: 40px;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f7fa;
            border-radius: 50%;
            color: #3d4a7a;
        }

        .process-icon svg {
            width: 40px;
            height: 40px;
        }

        .process-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .process-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .process-arrow {
            font-size: 24px;
            color: #ddd;
            font-weight: 300;
            flex-shrink: 0;
        }

        /* 푸터 */
        footer {
            background:#373737;
            color: #e0e0e0;
            padding: 40px 10px 20px;
            margin-top: 50px;
            border-top: 1px solid #e5e5e5;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content h2 {
            margin-bottom: 20px;
            font-size: 21px;
            text-transform: uppercase;
            color: #c4c8ff;
        }

        .footer-content p {
            margin: 10px 0;
            line-height: 1.8;
            color: #e0e0e0;
        }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin: 25px 0;
        }

        .footer-links {
            text-align: center;
            margin: 20px 0;
        }

        .footer-links a {
            color: #c4c8ff;
            text-decoration: none;
            font-size: 14px;
            padding: 0 15px;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        .footer-links .separator {
            color: rgba(255, 255, 255, 0.4);
        }

        .copyright {
            text-align: center;
            color: #c0c0c0;
            font-size: 13px;
            margin-top: 15px;
        }

        /* 모달 팝업 */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-content {
            /* background: linear-gradient(135deg, #1e1e2f 0%, #252538 100%); */
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            /* animation: slideUp 0.3s ease; */
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: #3d4a7a;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: none;
        }

        .modal-header h2 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(85vh - 80px);
            color: #333;
            line-height: 1.8;
            background: #fff;
        }

        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #3d4a7a;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #2f3a5f;
        }

        .modal-body h3 {
            color: #3d4a7a;
            font-size: 18px;
            font-weight: 700;
            margin-top: 25px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e5e5e5;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body p {
            margin-bottom: 15px;
            color: #666;
        }

        .modal-body ul {
            margin: 10px 0 20px 20px;
            color: #666;
        }

        .modal-body ul li {
            margin-bottom: 8px;
            padding-left: 10px;
            position: relative;
        }

        .modal-body ul li::before {
            content: "▸";
            position: absolute;
            left: -10px;
            color: #3d4a7a;
        }

        /* 예약 팝업 */
        .reserve-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(3px);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .reserve-modal {
            background: #ffffff;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .reserve-header {
            background: #3d4a7a;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .reserve-header h2 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin: 0;
        }

        .reserve-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .reserve-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .reserve-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(90vh - 80px);
            color: #333;
        }

        .reserve-body::-webkit-scrollbar {
            width: 8px;
        }

        .reserve-body::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .reserve-body::-webkit-scrollbar-thumb {
            background: #3d4a7a;
            border-radius: 10px;
        }

        .reserve-info-box {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .info-row:last-child {
            margin-bottom: 0;
        }

        .info-row.total {
            padding-top: 12px;
            border-top: 1px solid #dee2e6;
            margin-top: 12px;
            font-size: 18px;
            font-weight: 600;
        }

        .info-label {
            color: #666;
            font-weight: 500;
        }

        .info-value {
            color: #333;
            font-weight: 500;
        }

        .info-row.total .info-value {
            color: #333;
            font-size: 21px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group .required {
            color: #e74c3c;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Pretendard', sans-serif;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3d4a7a;
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: #e74c3c;
            background: #fff5f5;
        }

        .form-group .error-message {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            line-height: 1.4;
        }

        .form-group .error-message.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group textarea {
            resize: vertical;
        }

        .privacy-box {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .privacy-title {
            font-weight: 600;
            font-size: 16px;
            color: #333;
            margin-bottom: 12px;
        }

        .privacy-content {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 13px;
            line-height: 1.8;
            color: #666;
        }

        .privacy-content p {
            margin-bottom: 8px;
        }

        .privacy-content p:last-child {
            margin-bottom: 0;
        }

        .privacy-agree {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            color: #333;
        }

        .privacy-agree input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            cursor: pointer;
        }

        .reserve-buttons {
            display: flex;
            gap: 10px;
            margin-top: 25px;
        }

        .reserve-buttons button {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-cancel {
            background: #e9ecef;
            color: #495057;
        }

        .btn-cancel:hover {
            background: #dee2e6;
        }

        .btn-submit {
            background-color: #3d4a7a;
            color: #fff;
        }

        .btn-submit:hover {
            background-color: #2f3a5f;
        }

        /* 모바일 반응형 */
        @media (max-width: 768px) {
            
            /* 메인 배너 모바일 이미지 */
            .main-banner img {
                content: url('../images/main_banner_mo.png');
            }

            /* 예약 영역 */
            .booking-section {
                margin: 20px auto;
                padding: 20px 15px;
            }

            .booking-section h2 {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .date-picker-container {
                flex-direction: column;
                gap: 15px;
            }

            .date-input-group {
                width: 100%;
            }

            .date-input-group input {
                min-width: 100%;
                font-size: 15px;
            }

            .search-btn {
                width: 100%;
                margin-top: 10px;
            }

            /* 서비스 특징 */
            .features-section {
                margin: 30px auto;
            }

            .features-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .feature-item {
                padding: 30px 15px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

            .feature-icon svg {
                width: 25px;
                height: 25px;
            }

            .feature-item h3 {
                font-size: 16px;
            }

            .feature-item p {
                font-size: 13px;
            }

            /* 상품 섹션 */
            .product-section {
                margin: 30px auto;
                padding: 0 15px;
            }

            .section-header {
                margin-bottom: 30px;
            }

            .product-section h2 {
                font-size: 24px;
                letter-spacing: 2px;
            }

            .selected-dates {
                font-size: 13px;
                flex-direction: column;
                gap: 8px;
            }

            .date-info {
                padding: 6px 15px;
                font-size: 13px;
            }

            .date-separator {
                display: none;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card {
                max-width: 100%;
            }

            .product-name {
                font-size: 18px;
            }

            .product-price {
                font-size: 20px;
            }

            /* 이용 절차 */
            .process-section {
                margin: 40px 15px;
                padding: 40px 20px;
            }

            .process-section h2 {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .process-container {
                flex-direction: column;
                gap: 30px;
            }

            .process-item {
                max-width: 100%;
            }

            .process-arrow {
                transform: rotate(90deg);
                font-size: 20px;
            }

            /* 푸터 */
            footer {
                padding: 30px 15px 20px;
                margin-top: 40px;
            }

            .footer-content h2 {
                font-size: 20px;
            }

            .footer-content p {
                font-size: 13px;
            }

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

            .footer-links a {
                padding: 5px 0;
            }

            .footer-links .separator {
                display: none;
            }

            /* 모달 팝업 */
            .modal-content {
                width: 95%;
                max-height: 90vh;
            }

            .modal-header {
                padding: 15px 20px;
            }

            .modal-header h2 {
                font-size: 18px;
            }

            .modal-body {
                padding: 20px;
                font-size: 14px;
            }

            .modal-body h3 {
                font-size: 16px;
            }

            /* 예약 팝업 - 모바일에서 하단 슬라이드 업 */
            .reserve-overlay {
                align-items: flex-end;
            }

            .reserve-modal {
                width: 100%;
                max-width: 100%;
                max-height: 90vh;
                border-radius: 20px 20px 0 0;
                animation: slideUpFromBottom 0.3s ease;
            }

            .reserve-modal.closing {
                animation: slideDownToBottom 0.3s ease;
            }

            .reserve-header {
                padding: 15px 20px;
            }

            .reserve-header h2 {
                font-size: 18px;
            }

            .reserve-body {
                padding: 20px;
            }

            .reserve-info-box {
                padding: 15px;
            }

            .info-row {
                font-size: 13px;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .info-row.total {
                font-size: 16px;
            }

            .info-row.total .info-value {
                font-size: 18px;
            }

            .form-group input,
            .form-group textarea {
                font-size: 14px;
                padding: 10px 12px;
            }

            .privacy-box {
                padding: 15px;
            }

            .privacy-title {
                font-size: 14px;
            }

            .privacy-content {
                padding: 12px;
                font-size: 12px;
            }

            .privacy-agree {
                font-size: 13px;
            }

            .reserve-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .reserve-buttons button {
                width: 100%;
            }
        }

        /* 태블릿 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .booking-section {
                padding: 25px 20px;
            }

            .reserve-overlay {
                align-items: center;
            }

            .reserve-modal {
                max-width: 550px;
                border-radius: 15px;
                animation: slideUp 0.3s ease;
            }
        }

        /* 모바일 슬라이드 업 애니메이션 */
        @keyframes slideUpFromBottom {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        @keyframes slideDownToBottom {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(100%);
            }
        }

        /* Flatpickr 폰트 적용 */
        .flatpickr-calendar,
        .flatpickr-months,
        .flatpickr-weekdays,
        .flatpickr-days,
        .flatpickr-time,
        .flatpickr-current-month,
        .flatpickr-day,
        .flatpickr-weekday,
        .flatpickr-monthDropdown-months,
        .numInputWrapper input,
        .flatpickr-time input {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif !important;
        }
