/* ========================================
   투어 모달 스타일 - Figma 디자인 기반 (최적화됨)
======================================== */

/* CSS 변수 정의 */
:root {
    /* 색상 */
    --primary-color: #FF8400;
    --primary-hover: #e5750a;
    --primary-bg: #FFF5EB;
    --primary-bg-alt: #FFEDD5;
    --text-primary: #0A0A0A;
    --text-secondary: #111827;
    --text-muted: #6B7280;
    --text-light: #797979;
    --text-disabled: #d1d5db;
    --border-color: #D9D9D9;
    --border-focus: #D1D5DB;
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    --bg-gray-alt: #F3F4F6;
    --error-color: #ef4444;
    --success-color: #10b981;
    --warning-bg: #fef3cd;
    --warning-border: #fbbf24;
    --warning-text: #92400e;
    
    /* 타이포그래피 */
    --font-primary: 'Pretendard', sans-serif;
    --font-secondary: 'Europa-Bold', sans-serif;
    
    /* 공통 값 */
    --border-radius: 0px;
    --border-radius-lg: 0px;
    --border-radius-xl: 0px;
    --transition: all 0.2s ease;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 4px 12px 0 rgba(255, 132, 0, 0.25);
    --shadow-focus: 0 0 0 3px rgba(255, 132, 0, 0.1);
    --backdrop-filter: blur(4px);
}

button:focus {
    outline: none!important;
}



/* 모달 오버레이 */
.tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000001;
    display: none;
}

.tour-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: var(--backdrop-filter);
}

/* 모달 컨테이너 */
.tour-modal-container {
    position: relative;
    width: 400px;
    max-width: 90vw;
    max-height: 90vh;
    margin: 5vh auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 모달 헤더 */
.tour-modal-header {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-alt) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 36px 20px 10px 20px;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.tour-modal-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 33px;
    color: var(--text-primary);
    margin: 4px 0 0 0;
}

.tour-modal-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: var(--primary-color);
    margin: 0;
}

.tour-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--border-radius);
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.tour-modal-close:hover {
    color: #374151;
    transform: scale(1.05);
}

.tour-modal-close svg {
    pointer-events: none;
}

/* 모달 콘텐츠 */
.tour-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px 20px;
    min-height: 400px;
}

/* 스텝 공통 */
.tour-step {
    display: none;
}

.tour-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.tour-step-header {
    margin-bottom: 24px;
}

.tour-step-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.tour-step-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

/* Step 공통 레이아웃 */
#tour-step-1.active,
#tour-step-2.active {
    display: flex;
    flex-direction: column;
}

/* 선택된 지점 정보 */
.tour-selected-property {
    padding: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
    font-size: 14px;
}

.tour-selected-property-info-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.tour-selected-property-info-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.tour-selected-property-info-details-item {
    display: flex;
    gap: 24px;
    margin-bottom: 2px;
}

.tour-selected-property-info-details-label {
    color: var(--text-muted);
}

.tour-selected-property-info-details-value {
    color: var(--text-primary);
}



/* 지점 선택 리스트 */
.tour-property-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-property-item {
    width: 100%;
    min-height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    text-align: left;
    visibility: visible;
    opacity: 1;
}

.tour-property-item:last-child {
    margin-bottom: 0;
}

/* Step 1의 지점 아이템 스타일 */
#tour-step-1 .tour-property-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

#tour-step-1 .tour-property-item:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

/* Step 2의 지점 아이템 스타일 - SVG 디자인 적용 */
#tour-step-2 .tour-property-list {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#tour-step-2 .tour-property-item {
    padding: 8px 4px;
    min-height: 34px;
    width: auto;
    flex-grow: 1;
    margin-bottom: 0;
    cursor: pointer;
    background: #ECECEC;
    border: none;
    border-radius: 2px;
    box-shadow: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #797979;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
}

#tour-step-2 .tour-property-item:hover {
    background: #ECECEC;
    transform: none;
    box-shadow: none;
}

#tour-step-2 .tour-property-item.selected {
    font-weight: bold;
    background: #FF8400;
    border: none;
    color: #FFFFFF;
    transform: none;
    box-shadow: none;
}

#tour-step-2 .tour-property-item.selected .tour-property-name,
#tour-step-2 .tour-property-item.selected .tour-property-name-en {
    color: #FFFFFF;
    font-weight: 600;
}

#tour-step-2 .tour-property-item .tour-property-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#tour-step-2 .tour-property-item .tour-property-name {
    font-size: 16px;
    font-weight: normal;
    color: #797979;
    line-height: 1.2;
    margin: 0;
}

#tour-step-2 .tour-property-item .tour-property-name-en {
    font-size: 8px;
    font-weight: 400;
    color: #797979;
    opacity: 1;
    line-height: 1;
    margin: 2px 0 0 0;
}

#tour-step-2 .tour-property-item.selected .tour-property-name {
    color: #FFFFFF;
}

#tour-step-2 .tour-property-item.selected .tour-property-name-en {
    color: #FFFFFF;
}

#tour-step-2 .tour-property-item .tour-property-arrow {
    display: none;
}

/* 지점 정보 공통 스타일 */
.tour-property-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 4px;
}

.tour-property-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
}

.tour-property-name-en {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    opacity: 0.7;
    margin: 2px 0 0 0;
}

.tour-property-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    transition: var(--transition);
}

/* Step 1 지점 선택 호버/선택 상태 */
#tour-step-1 .tour-property-item:hover:not(.selected) .tour-property-name,
#tour-step-1 .tour-property-item:hover:not(.selected) .tour-property-name-en,
#tour-step-1 .tour-property-item.selected .tour-property-name,
#tour-step-1 .tour-property-item.selected .tour-property-name-en {
    color: var(--bg-white);
}

#tour-step-1 .tour-property-item:hover .tour-property-arrow,
#tour-step-1 .tour-property-item.selected .tour-property-arrow {
    color: var(--bg-white);
}

#tour-step-1 .tour-property-item.selected {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

/* 예약 안내 */
.tour-reservation-notice {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-muted);
    margin-top: 32px;
}


/* 지점 정보 스타일 */
.tour-property-info {
    margin: 16px 0;
}

.tour-property-info-description {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: left;
    padding: 8px 0;
}

.tour-property-info-description b {
    color: var(--primary-color);
}

.tour-property-info-link {
    text-align: left;
    margin-bottom: 28px;
}

.tour-property-info-link a,
.privacy_link {
    text-decoration: underline;
    color: var(--primary-color);
    font-size: 14px;
}

.tour-property-info-link a:hover,
.privacy_link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

.tour-property-info-datetime {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-property-info-datetime-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.tour-property-info-datetime-label {
    color: var(--text-primary);
    min-width: 100px;
    font-weight: 600;
}

.tour-property-info-datetime-value {
    color: var(--text-muted);
}

/* 날짜 및 시간 선택 */
.tour-datetime-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 16px;
    box-sizing: border-box;
}

.tour-section-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--text-secondary);
    margin: 16px 0;
    text-align: center;
}

.tour-calendar-section {
    margin-bottom: 12px;
}

.tour-calendar-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 14px;
}

.tour-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tour-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--border-radius);
    background: var(--bg-gray);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tour-calendar-nav:hover {
    background: var(--bg-gray-alt);
    color: #374151;
}

.tour-calendar-nav svg {
    pointer-events: none;
}

.tour-calendar-month {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.tour-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.tour-calendar-day-header {
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.tour-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.tour-calendar-day {
    background: var(--bg-white);
    padding: 6px 0;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-calendar-day:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.05);
}

.tour-calendar-day.selected {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 2px 8px 0 rgba(255, 132, 0, 0.3);
}

.tour-calendar-day.disabled {
    color: var(--text-disabled);
    cursor: not-allowed;
}

.tour-calendar-day.disabled:hover,
.tour-calendar-day.empty:hover {
    background: var(--bg-white);
    transform: none;
}

.tour-calendar-day.other-month {
    color: var(--text-disabled);
}

/* 시간 선택 */
.tour-time-section {
    margin-bottom: 32px;
    padding: 14px;
    border: 1px solid var(--border-color);
}

.tour-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tour-time-button {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-time-button:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.tour-time-button.selected {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.tour-time-button.disabled {
    background: #F3F4F6 !important;
    color: #9CA3AF !important;
    cursor: not-allowed !important;
    border-color: #E5E7EB !important;
    opacity: 0.6;
    pointer-events: none;
}

.tour-time-button.disabled:hover {
    background: #F3F4F6 !important;
    color: #9CA3AF !important;
    border-color: #E5E7EB !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.tour-no-times {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 폼 스타일 */
.tour-form {
    max-width: 100%;
}

.tour-form-row {
    margin-bottom: 20px;
}

.tour-form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tour-form-group {
    margin-bottom: 16px;
}

.tour-form-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: var(--error-color);
}

.tour-form-input,
.tour-form-select,
.tour-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-focus);
    border-radius: var(--border-radius);
    background: var(--bg-white);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition);
    box-sizing: border-box;
    min-height: 48px;
}

.tour-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--bg-white) url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%236B7280"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') no-repeat right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
    cursor: pointer;
}

.tour-form-input:focus,
.tour-form-select:focus,
.tour-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-focus);
}

.tour-form-select:focus {
    background: var(--bg-white) url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23FF8400"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') no-repeat right 12px center;
    background-size: 16px 16px;
}

.tour-form-input.error,
.tour-form-select.error,
.tour-form-textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.tour-form-select.error {
    background: var(--bg-white) url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23ef4444"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') no-repeat right 12px center;
    background-size: 16px 16px;
}

.tour-form-textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 14px;
}

.tour-form-error {
    color: var(--error-color);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* 체크박스 스타일 */
.tour-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.tour-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-focus);
    border-radius: 2px;
    background: var(--bg-white);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-form-checkbox input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tour-form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    color: var(--bg-white);
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tour-privacy-details {
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    font-size: 13px;
    line-height: 18px;
    color: var(--text-muted);
}

.tour-privacy-details p {
    margin: 0 0 8px 0;
}

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

.tour-form-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 16px;
}

/* Step 4 - 완료 페이지 */
.tour-step4-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

/* Success Icon */
.tour-success-icon-container {
    margin-bottom: 32px;
}

.tour-success-icon {
    display: inline-block;
    animation: fadeInUp 0.6s ease;
}

/* Header */
.tour-step4-header {
    margin-bottom: 40px;
}

.tour-step4-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.tour-step4-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-light);
    margin: 0;
}

/* Reservation Info Box */
.tour-reservation-box {
    width: 100%;
    border: 1px solid #ECECEC;
    padding: 10px;
    margin-bottom: 32px;
    text-align: left;
    font-size: 14px;
}

.tour-reservation-box .tour-info-item {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.tour-reservation-box .tour-selected-property-info-details-label {
    min-width: 80px;
}

.tour-reservation-box .tour-contact-info-item {
    text-align: center;
}

.tour-contact-info .tour-contact-info-item .tour-contact-info-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tour-contact-info .tour-contact-info-item .tour-contact-info-value a {
    text-decoration: underline;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 2px;
}

.tour-contact-info .tour-contact-info-item .tour-contact-info-value a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* Footer */
.tour-step4-footer {
    margin-top: 50px;
    width: 100%;
}

.tour-step4-close-btn {
    width: 100%;
    height: 40px;
    background: var(--primary-color);
    border: none;
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.tour-step4-close-btn:hover {
    background: var(--primary-hover);
}

/* 스텝 푸터 */
.tour-step-footer {
    padding: 16px 0px;
    background: var(--bg-white);
    margin-top: 20px;
    display: none !important;
}

#tour-step-2.active .tour-step-footer,
#tour-step-3.active .tour-step-footer,
#tour-step-4.active .tour-step-footer {
    display: block !important;
}

.tour-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

#tour-step-2 .tour-navigation {
    justify-content: flex-end;
}

#tour-step-3 .tour-navigation {
    justify-content: space-between;
    gap: 12px;
}

#tour-step-4 .tour-navigation {
    justify-content: center;
}

/* 버튼 스타일 */
.tour-btn {
    padding: 8px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-width: 160px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}

.tour-btn-primary:hover {
    background: var(--primary-hover);
}

.tour-btn-primary:disabled {
    background: var(--text-disabled);
    cursor: not-allowed;
}

.tour-btn-secondary {
    background: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid var(--border-focus);
}

.tour-btn-secondary:hover {
    background: var(--bg-gray);
    border-color: #9ca3af;
}

/* Step 3 버튼 특별 스타일 */
#tour-step-3 .tour-btn-secondary {
    flex: 0 0 120px;
    min-width: 120px;
    width: auto;
}

#tour-step-3 .tour-btn-primary {
    flex: 1 1 auto;
    min-width: 160px;
    width: auto;
}

#tour-step-3 .tour-contact-notice {
    color: var(--primary-color);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
}

/* 로딩 스타일 */
.tour-loading {
    opacity: 0.7;
    pointer-events: none;
}

.tour-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 접근성 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}