/* [1] 공통 변수 */
:root {
    --point-color: #643fce;
    --point-light: #f3e5f5;
    --tab-height: 60px;
    --border-color: #e5e5e5;
}

#sit_info {
    display: block !important;
    width: 100%;
    position: relative;
    margin-top: 60px;
    clear: both;
    font-family: 'Notosans KR', sans-serif;
    border: none;
    box-sizing: border-box;
}

.sit_info_inner {
    width: 100%;
}

#sit_info {
    padding: 0;
}

/* [2] 탭 네비게이션 (디자인 복구: 폴더형 박스 스타일) */
#sit_tab_nav {
    width: 100%;
    height: var(--tab-height, 60px);
    background: #fff;
    z-index: 99;
    box-sizing: border-box;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    /* [수정] sticky 속성으로 변경 */
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

/* [추가] 탭 네비게이션이 상단에 고정될 때 그림자 효과 */
#sit_tab_nav.is_stuck {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tab_list {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
}

.tab_list li {
    flex: 1;
    text-align: center;
    height: 100%;
    position: relative;
    border-bottom: 1px solid var(--point-color);
    /* 전체 하단 보라색 선 */
}

.tab_list li.on {
    border-bottom: 1px solid #fff;
    /* 하단 흰색으로 덮어서 뚫린 효과 */
}

/* 탭 링크 기본 스타일 (비활성) */
.tab_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    background: #f9f9f9;
    /* 비활성 탭 배경색 */
    border-top: 1px solid #eee;
    /* 상단 연한 선 */
    border-right: 1px solid #eee;
    /* 우측 연한 선 */
    border-bottom: none;
    /* 하단은 컨테이너 선이 보이게 */
    box-sizing: border-box;
    transition: all 0.2s;
}

.tab_list li:first-child a {
    border-left: 1px solid #eee;
}

/* [활성화] 탭 스타일 (박스 형태, 하단 뚫림) */
.tab_list li.on a {
    color: var(--point-color);
    font-weight: 800;
    background: #fff;
    border-top: 2px solid var(--point-color);
    /* 상단 굵은 보라색 */
    border-left: 1px solid var(--point-color);
    /* 좌측 보라색 */
    border-right: 1px solid var(--point-color);
    /* 우측 보라색 */
    margin-bottom: -1px;
    /* 부모 테두리 덮기 위해 1px 내림 */
    position: relative;
    z-index: 2;
}

/* [3] 섹션 공통 */
.section_anchor {
    display: block;
    width: 100%;
    clear: both;
    padding-top: 30px;
    padding-bottom: 30px;
}

.info_subsection {
    display: block;
    width: 100%;
    clear: both;
    margin-bottom: 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.essential_info_wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

#anchor_info {
    display: block;
    width: 100%;
    clear: both;
    padding-top: 60px;
    padding-bottom: 60px;
}

.info_section_title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    padding-left: 5px;
}

.sec_header_wrap {
    width: 100%;
    border-bottom: 2px solid var(--point-color);
    padding-bottom: 15px;
    margin-bottom: 0;
}

.sec_title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* [4] 필수 표기 정보 테이블 */
.tbl_ess_info {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    border-top: 1px solid #e0e0e0;
}

.tbl_ess_info th,
.tbl_ess_info td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
}

.tbl_ess_info th {
    background: #f9f9f9;
    font-weight: 700;
    color: #333;
    width: 180px;
}

.tbl_ess_info td {
    color: #555;
    line-height: 1.6;
}

.skill_badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 4px;
}

.sb_blue {
    background: #e3f2fd;
    color: #1e88e5;
}

.sb_green {
    background: #e8f5e9;
    color: #43a047;
}

.sb_red {
    background: #ffebee;
    color: #e53935;
}

.goal_list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.goal_list li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.comp_list li {
    margin-bottom: 6px;
    color: #666;
    display: flex;
    align-items: center;
}

.comp_list i {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

/* [포함사항 섹션] */
.inclusions_section_title {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions_section_title i {
    color: var(--point-color);
    font-size: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 0px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    display: flex;
    align-items: center;
    min-height: 24px;
    margin: 10px 0;
}

.check-list-icon {
    color: #10b981;
    margin-right: 14px;
    font-family: 'Noto Sans KR', sans-serif;
}

/* [준비물 섹션] */
.required_items_section_title {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.required_items_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.required_items_list li {
    position: relative;
    padding-left: 0px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    display: flex;
    align-items: center;
    min-height: 24px;
    margin: 10px 0;
}

.required-items-icon {
    color: #9ca3af;
    margin-right: 14px;
    font-family: 'Noto Sans KR', sans-serif;
}

/* [유의사항 섹션] */
.cautions_section {
    background: #fffbeb;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.cautions_section_title {
    font-size: 18px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

#sit_inf_explan {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

#anchor_review {
    padding: 60px 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

#anchor_qa {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

#anchor_guide {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.cautions_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cautions_list li {
    position: relative;
    padding-left: 0px;
    color: #92400e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    display: flex;
    align-items: center;
    min-height: 24px;
    margin: 10px 0;
}

.cautions-icon {
    color: #92400e;
    margin-right: 8px;
    font-family: 'Noto Sans KR', sans-serif;
}

/* [공통 스타일] */
.icon-point {
    color: var(--point-color);
}

.icon-point-lg {
    color: var(--point-color);
    font-size: 28px;
}

.goal-icon {
    color: var(--point-color);
    margin-right: 8px;
}

.feature-icon-emoji {
    font-size: 48px;
    text-align: center;
    line-height: 1;
}

.feature-icon-fallback {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-fallback i {
    font-size: 60px;
    color: #ccc;
}

.content-text {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    margin-bottom: 80px;
}

.badge-recommend {
    background: #fff;
    color: var(--point-color);
    border: 1px solid var(--point-color);
}

.badge-best {
    background: #fff;
    color: var(--point-color);
    border-color: var(--point-color);
}

/* [체험특징 섹션] */
.experience_features_section_title {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.feature_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: none;
    transition: all 0.3s;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--point-color);
}

.feature_icon {
    margin: 32px 0;
}

.feature_title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.feature_content {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* [체험프로그램 순서 섹션] */
.experience_program_section_title {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program_list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.program_list::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.program_list li {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.program_list li:last-child::after {
    content: '';
    display: none;
}

.program_item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.program_step_number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-top: 0;
}

.program_content {
    flex: 1;
    padding-top: 4px;
}

.program_title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    margin-top: 0;
}

.program_text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* [대중교통 섹션] */
.transit_type_badge {
    border: 2px solid;
    border-radius: 12px;
    padding: 6px 12px;
    min-width: 80px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

/* [오시는길 섹션] */
.directions_section {
    margin-bottom: 60px;
    background: #f9fafb;
    padding: 60px 10px;
}

.directions_wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.directions_section_title {
    font-size: 32px;
    margin-bottom: 24px;
}

.directions_map_wrapper {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.directions_map_container {
    flex: 0 0 50%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.directions_map_container #map {
    width: 100%;
    height: 100%;
}

.directions_info_container {
    flex: 1;
}

.direction_subsection {
    margin-bottom: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
}

.direction_subsection_title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.direction_subsection_title.transit_title {
    margin-bottom: 15px;
}

.direction_text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.direction_text.preformatted {
    white-space: pre-wrap;
}

.transit_items_container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transit_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transit_item_info {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.contact_phone_link {
    color: #6366f1;
    text-decoration: none;
}

.contact_phone_link:hover {
    text-decoration: underline;
}

.btn_copy_address {
    background: none;
    border: none;
    padding: 0;
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
    transition: all 0.2s;
}

.btn_copy_address:hover {
    color: #643fce;
}

.btn_copy_address.copied {
    color: #10b981;
}

.map_buttons_container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.open_kakao_map_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #6366f1;
    color: #6366f1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.open_kakao_map_btn:hover {
    background: #f8f7ff;
}

.open_kakao_map_btn svg {
    width: 18px;
    height: 18px;
}

.open_naver_map_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #6366f1;
    color: #6366f1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.open_naver_map_btn:hover {
    background: #f8f7ff;
}

.open_naver_map_btn svg {
    width: 18px;
    height: 18px;
}

/* [체험 시간표 섹션] */
.experience_schedule_section {
    margin-bottom: 60px;
    background: #fff;
    padding: 60px 0;
}

.experience_schedule_wrapper {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.schedule_section_title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.schedule_section_subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.schedule_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 달력 영역 */
.schedule_calendar_section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    margin-top: 0;
}

/* 월 네비게이션 */
.info-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.info-calendar-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: #6366f1;
    cursor: pointer;
    padding: 0 8px;
    transition: all 0.2s;
    font-weight: bold;
}

.info-calendar-nav:hover:not(.disabled) {
    color: #4f46e5;
}

.info-calendar-nav.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.info-current-month {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    min-width: 150px;
    text-align: center;
}

.schedule_calendar_grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.schedule_calendar_day {
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    position: relative;
}

.schedule_calendar_day .day-number {
    font-size: 14px;
    font-weight: 700;
}

.schedule_calendar_day .day-status {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.schedule_calendar_day.header {
    background: transparent;
    border: none;
    cursor: default;
    font-size: 12px;
    color: #999;
    font-weight: 700;
}

.schedule_calendar_day.header.sunday {
    color: #ef4444;
}

.schedule_calendar_day.header.saturday {
    color: #3b82f6;
}

.schedule_calendar_day.sunday .day-number {
    color: #ef4444;
}

.schedule_calendar_day.saturday .day-number {
    color: #3b82f6;
}

.schedule_calendar_day.available {
    border-color: #e5e5e5;
    background: #f9fafb;
}

.schedule_calendar_day.available:hover {
    background: #f0f0f0;
    border-color: #6366f1;
}

.schedule_calendar_day.available .day-status {
    color: #10b981;
}

.schedule_calendar_day.available.selected {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.schedule_calendar_day.available.selected .day-status {
    color: #fff;
}

.schedule_calendar_day.available.selected.sunday .day-number,
.schedule_calendar_day.available.selected.saturday .day-number {
    color: #fff;
}

.schedule_calendar_day.disabled {
    color: #d1d5db;
    background: transparent;
    border: none;
    cursor: not-allowed;
}

.schedule_calendar_day.disabled .day-status {
    color: #d1d5db;
}

/* 시간 선택 영역 */
.schedule_time_section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    margin-top: 0;
}

.selected_date_display {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.schedule_time_slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.schedule_time_slot {
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule_time_slot .time {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.schedule_time_slot .remaining {
    font-size: 13px;
    color: #6b7280;
}

.schedule_time_slot:hover:not(.disabled) {
    border-color: #6366f1;
    background: #f9f7ff;
}

.schedule_time_slot.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

.schedule_time_slot.disabled .remaining {
    color: #ccc;
}

.schedule_time_slot.disabled {
    color: #d1d5db;
    background: #f5f5f5;
    cursor: not-allowed;
    border-color: #e5e5e5;
}

.schedule_time_slot.selected {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.schedule_time_slot.selected:hover {
    background: #6366f1;
    color: #fff;
}

.schedule_time_slot.selected .time {
    color: #fff;
}

.schedule_time_slot.selected .remaining {
    color: #fff;
}

.schedule_time_slot .time {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.schedule_time_slot .status {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

/* 인원 선택 영역 */
.people_selection_section {
    margin-top: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    display: none;
}

.people_selection_section.show {
    display: block;
}

.people_selection_section h5 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

.people_range_display {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.people_selector_group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.people_btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
}

.people_btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.people_input {
    width: 60px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 0;
}

.people_input:focus {
    border-color: #6366f1;
    outline: none;
}

.people_purchase_btn {
    margin-top: 16px;
    width: 100%;
    height: 44px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.people_purchase_btn:hover {
    background: #4f46e5;
}

/* 반응형 */
@media (max-width: 991px) {
    .schedule_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .schedule_calendar_grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }

    .schedule_calendar_day {
        border-radius: 6px;
    }

    .schedule_calendar_day .day-number {
        font-size: 13px;
    }

    .schedule_calendar_day .day-status {
        font-size: 9px;
        margin-top: 1px;
    }

    .schedule_calendar_day.header {
        font-size: 11px;
    }

    .schedule_time_slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* [모바일 지도 반응형] */
@media (max-width: 991px) {
    .directions_section {
        background: #fff;
        padding: 40px 0;
    }

    .direction_subsection {
        padding: 24px 0;
        margin-bottom: 20px;
    }

    .directions_map_wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .directions_map_container {
        flex: 0 0 auto;
        height: 350px;
    }
}


/* [9] 리뷰 & FAQ & 환불 */
.review_summary {
    display: flex;
    align-items: center;
    padding: 0 0 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.rs_score {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.star_yellow {
    color: #ffc107 !important;
    font-size: 20px !important;
}

.review_sort {
    margin-left: auto;
    font-size: 14px;
    color: #999;
}

.review_sort span.active {
    color: #333;
    font-weight: 700;
}
.sort_item{
    cursor: pointer; 
}
.review_item {
    padding: 35px 0;
    border-bottom: 1px solid var(--border-color);
}

.review_item.last {
    border-bottom: none;
}

.review_item.empty {
    text-align: center;
    padding: 50px 0;
    border-bottom: none;
}

.ri_header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.ri_profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
    color: #fff;
    object-fit: cover;
}

a.ri_creator_profile_link {
    color: inherit;
    text-decoration: none;
}

a.ri_creator_profile_link:hover {
    color: var(--point-color, #0066cc);
}

.ri_profile a.ri_creator_profile_link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.ri_meta div {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ri_meta span {
    font-size: 14px;
    color: #888;
}

.ri_content {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ri_images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ri_images img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.btn_helpful {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn_helpful:hover {
    border-color: #999;
    color: #333;
}
.btn_helpful:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f5f5f5;
}

.btn_helpful.is_helpful_voted {
    opacity: 1;
    cursor: pointer;
    background: #eef2f6;
    border-color: #c5cdd8;
}

.btn_helpful.is_processing {
    pointer-events: none;
    opacity: 0.7;
}

.bg_green {
    background-color: #2ecc71;
}

.btn_review_more {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--point-color);
    cursor: pointer;
    border: none;
    background: none;
}

.qa_list dl {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.qa_list dt {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.qa_list dt span {
    color: var(--point-color);
    margin-right: 12px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.qa_list dd {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-left: 0;
    padding-left: 30px;
}

.refund_box {
    background: #fff;
    padding: 30px 0;
}

.rf_group {
    margin-bottom: 35px;
}

.rf_title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    display: block;
}

.rf_desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* [모바일 반응형] */
@media (max-width: 991px) {
    #sit_info {
        padding: 0 20px;
        margin-top: 40px;
    }

    .section_anchor {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .sec_title {
        font-size: 20px;
    }

    #sit_tab_nav {
        height: auto;
        top: 80px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0;
    }

    #sit_tab_nav::-webkit-scrollbar {
        display: none;
    }

    .tab_list {
        width: auto;
        min-width: 100%;
        display: flex;
        gap: 0;
    }

    .tab_list li {
        flex: 0 0 auto;
        width: auto;
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        min-width: auto;
    }

    .tab_list li a {
        font-size: 13px;
        padding: 8px 0;
        border: none !important;
        background: transparent !important;
        color: #666;
    }

    .tab_list li.on a {
        color: var(--point-color);
        border-bottom: 3px solid var(--point-color) !important;
        background: transparent !important;
    }

    /* 체험특징 섹션 반응형 */
    .features_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .feature_card {
        padding: 24px 16px;
    }

    .feature_icon {
        margin: 20px 0;
    }

    .feature_title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature_content {
        font-size: 13px;
    }

    .tbl_ess_info {
        display: block;
        border-top: none;
    }

    .tbl_ess_info tbody {
        display: block;
    }

    .tbl_ess_info tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
    }

    .tbl_ess_info th {
        display: block;
        width: 100%;
        background: #f9f9f9;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 20px;
    }

    .tbl_ess_info td {
        display: block;
        width: 100%;
        padding: 20px;
        border-bottom: none;
    }

    .btm_banner {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .btm_banner h3 {
        font-size: 20px;
    }

    .btm_banner p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .video_overlay_grad {
        height: 120px;
    }

    .play_btn_icon {
        width: 60px;
        height: 60px;
    }

    .play_btn_icon::after {
        border-width: 10px 0 10px 18px;
    }

    .video_caption_text {
        bottom: 20px;
        font-size: 16px;
    }

    .usage_guide_wrap {
        margin-bottom: 60px;
    }

    .ug_header {
        font-size: 18px;
        padding: 20px 0;
    }

    .ug_body {
        padding: 20px;
    }

    .ug_list {
        gap: 15px;
    }

    .ug_list li {
        width: 100%;
        padding: 25px 20px;
    }

    .purchase_options_wrap {
        margin-bottom: 60px;
    }

    .po_header h2 {
        font-size: 24px;
    }

    .po_list {
        flex-direction: column;
        gap: 20px;
    }

    .po_item {
        transform: none !important;
    }

    .po_content {
        padding: 30px 20px 30px;
    }

    .po_btn {
        height: 60px;
        font-size: 17px;
    }

    .po_benefit_banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px 20px;
    }

    .pobb_left,
    .pobb_right {
        width: 100%;
    }

    .pobb_right {
        flex-direction: column;
        gap: 10px;
    }

    .pobb_item {
        min-height: auto;
        padding: 20px;
    }

    /* 크리에이터 박스 모바일 대응 */
    .creator_box_wrap {
        margin-bottom: 60px;
    }

    .creator_box {
        padding: 30px 20px;
    }

    .cb_profile_area {
        flex-wrap: wrap;
    }

    .btn_creator_detail {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .review_summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rs_score {
        margin-left: 0;
    }

    .review_sort {
        margin-left: 0;
    }

    .ri_header {
        flex-direction: column;
    }

    .ri_profile {
        margin-bottom: 15px;
    }

    .ri_images {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .ri_images img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }
}

/* --- 모바일 소형(max-width: 480px) --- */
@media (max-width: 480px) {
    #sit_tab_nav {
        height: auto;
        top: 80px;
        padding: 0;
    }

    .tab_list li {
        padding: 10px 12px;
    }

    .tab_list li a {
        font-size: 12px;
        padding: 6px 0;
    }

    /* 체험특징 소형 모바일 */
    .features_grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature_card {
        padding: 20px 16px;
    }

    .feature_icon {
        margin: 16px 0;
        font-size: 32px;
    }

    .feature_title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .feature_content {
        font-size: 12px;
        color: #6b7280;
    }

    /* 시간 선택 섹션 모바일 */
    .schedule_time_section h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .selected_date_display {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .schedule_time_slots {
        gap: 10px;
    }

    .schedule_time_slot {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule_time_slot .time {
        font-size: 14px;
    }

    .schedule_time_slot .remaining {
        font-size: 12px;
    }

    /* 인원 선택 섹션 모바일 */
    .people_selection_section {
        padding: 15px;
        margin-top: 15px;
    }

    .people_selection_section h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .people_range_display {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .people_btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .people_input {
        width: 50px;
        height: 32px;
        font-size: 12px;
    }

    .people_purchase_btn {
        height: 40px;
        font-size: 14px;
    }
}

/* --- 모바일 소형(max-width: 480px) --- */
@media (max-width: 480px) {
    #sit_tab_nav {
        height: auto;
        top: 80px;
        padding: 0;
    }

    .tab_list li {
        padding: 10px 12px;
    }

    .tab_list li a {
        font-size: 12px;
        padding: 6px 0;
    }

    /* 시간 선택 섹션 소형 모바일 */
    .schedule_time_section h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .selected_date_display {
        font-size: 13px;
        padding: 9px 10px;
        margin-bottom: 12px;
    }

    .schedule_calendar_grid {
        gap: 5px;
    }

    .schedule_calendar_day {
        border-radius: 5px;
    }

    .schedule_calendar_day .day-number {
        font-size: 12px;
    }

    .schedule_calendar_day .day-status {
        font-size: 8px;
        margin-top: 0px;
    }

    .schedule_calendar_day.header {
        font-size: 10px;
    }

    .schedule_time_slots {
        gap: 8px;
    }

    .schedule_time_slot {
        padding: 10px;
    }

    .schedule_time_slot .time {
        font-size: 13px;
    }

    .schedule_time_slot .remaining {
        font-size: 11px;
    }

    /* 인원 선택 섹션 소형 모바일 */
    .people_selection_section {
        padding: 12px;
        margin-top: 12px;
    }

    .people_selection_section h5 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .people_range_display {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .people_btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .people_input {
        width: 45px;
        height: 28px;
        font-size: 11px;
    }

    .people_purchase_btn {
        height: 36px;
        font-size: 13px;
    }
}