@charset "utf-8";

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

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #FFF0E9;
    color: #121212;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#sinseon_page_layout {
    width: 100%;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 36px 16px 60px;
}

.pc_side_wing {
    display: block;
    width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    align-self: stretch;
}

.pc_side_sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pc_brand_card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 36px 20px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
    text-align: center;
}

.pc_brand_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.pc_brand_logo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pc_brand_logo img {
    width: 137px;
    height: 129px;
    aspect-ratio: 137 / 129;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.pc_brand_logo a:hover img {
    transform: scale(1.03);
}

.pc_brand_box {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    background-color: #E9E9E9;
    border-radius: 8px;
}

.pc_search_card {
    margin-top: 16px;
}

.pc_search_form {
    position: relative;
    width: 100%;
    height: 44px;
}

.pc_search_input {
    width: 100%;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #11A55A;
    border-radius: 6px;
    padding: 0 40px 0 14px;
    font-size: 14px;
    color: #121212;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.pc_search_input:focus {
    border-color: #0E8548;
}

.pc_search_input::placeholder {
    color: #B5B5B5;
}

.pc_search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}

.pc_search_tags {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc_tag_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.pc_tag_chip {
    background-color: #FFFFFF;
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #EAEAEA;
    display: inline-block;
    transition: all 0.2s ease;
}

.pc_tag_chip:hover {
    background-color: #11A55A;
    color: #FFFFFF;
    border-color: #11A55A;
}

#sinseon_wrap {
    width: 480px;
    flex-shrink: 0;
    background-color: #FFFFFF;
    min-height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    padding-bottom: 0;
}

#sinseon_container {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    box-sizing: border-box;
    margin-bottom: 40px;
    /* 일반 서브페이지 푸터와의 공통 여백 40px */
}

/* 메인 및 상품상세 페이지는 하단 CS영역이 푸터와 바로 맞닿도록 하단 여백 제거 */
#sinseon_container.is_main,
#sinseon_container.is_item,
#sinseon_container:has(.cs_info_section),
#sinseon_container:has(.sinseon_item_wrap),
#sinseon_container:has(.main_container) {
    margin-bottom: 0 !important;
}

#pc_right_side {
    width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    align-self: stretch;
}

.pc_best_card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
}

.pc_best_title {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    line-height: 1.35;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.pc_best_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pc_best_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pc_best_thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F8F8F8;
    flex-shrink: 0;
}

.pc_best_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.pc_best_item:hover .pc_best_thumb img {
    transform: scale(1.04);
}

.pc_best_info {
    flex: 1;
    min-width: 0;
}

.pc_best_name {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    line-height: 1.35;
    letter-spacing: -0.025em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pc_best_cust_price {
    margin-top: 4px;
    font-size: 12px;
    color: #B5B5B5;
    text-decoration: line-through;
    line-height: 1.4;
}

.pc_best_price_row {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc_best_rate {
    font-size: 16px;
    font-weight: 700;
    color: #EB5757;
    line-height: 1.4;
}

.pc_best_price {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}

#sinseon_header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(237, 237, 237, 0.8);
    z-index: 900;
    transition: background-color 0.25s ease,
                backdrop-filter 0.25s ease,
                -webkit-backdrop-filter 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
}

#sinseon_header.is_scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    backdrop-filter: blur(20px) saturate(190%);
    border-bottom-color: rgba(229, 231, 235, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    line-height: 1;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 56px;
    height: 52px;
    aspect-ratio: 14 / 13;
    object-fit: contain;
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn_menu,
.btn_search,
.btn_cart,
.btn_sub_back,
.btn_sub_search,
.btn_sub_home {
    background: transparent !important;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn_cart {
    position: relative;
}

.cart_badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: #EB5757;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.main_hero_section {
    position: relative;
    width: 100%;
    background-color: #FFF0E9;
    overflow: hidden;
}

.hero_swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero_slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.hero_slide_link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.hero_img_box {
    width: 100%;
    display: block;
}

.hero_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero_paging {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 3px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.hero_paging .bar {
    width: 1px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.quick_category_section {
    background-color: #FFFFFF;
    padding: 20px 16px;
    border-bottom: 8px solid #F5F6F8;
}

.quick_category_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.quick_cat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.quick_cat_icon {
    display: flex;
    height: 81px;
    padding: 15px 21px 16px 21px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 16px;
    background: #F2F5F8;
    margin-bottom: 8px;
    box-sizing: border-box;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.quick_cat_item:hover .quick_cat_icon {
    transform: translateY(-2px);
    background-color: #E8EDF2;
}

.quick_cat_icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.quick_cat_name {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    letter-spacing: -0.02em;
}

.today_deal_section {
    background-color: #FFFFFF;
    padding: 24px 16px;
    border-bottom: 8px solid #F5F6F8;
}

.deal_header {
    margin-bottom: 14px;
}

.deal_title_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.deal_title_top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge_today {
    background-color: #FF4D4D;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.deal_title {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
}

.deal_emoji {
    font-size: 16px;
    margin-left: 2px;
}

.deal_timer_box {
    background-color: #F3F4F6;
    color: #4B5563;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.deal_header_sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal_notice {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #FF6B00;
}

.bolt_emoji {
    font-size: 13px;
}

.deal_more {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    transition: color 0.2s;
}

.deal_more:hover {
    color: #11A55A;
}

.deal_card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.deal_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.deal_img_wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #F8F8F8;
    border-radius: 12px;
    overflow: hidden;
}

.deal_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.deal_card:hover .deal_img {
    transform: scale(1.02);
}

.deal_info {
    padding: 10px 0 0 0;
}

.deal_item_name {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    line-height: 1.35;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deal_price_wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.deal_discount {
    font-size: 16px;
    font-weight: 700;
    color: #FF4D4D;
}

.deal_price {
    font-size: 16px;
    font-weight: 800;
    color: #121212;
}

.mid_banner_section {
    padding: 0;
    background-color: #FFFFFF;
    border-bottom: 8px solid #F5F6F8;
    width: 100%;
    overflow: hidden;
}

.mid_banner_link {
    display: block;
    width: 100%;
    text-decoration: none;
    line-height: 0;
}

.mid_banner_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product_section {
    background-color: #FFFFFF;
    padding: 24px 16px;
    border-bottom: 8px solid #F5F6F8;
}

.section_header {
    margin-bottom: 16px;
}

.section_title {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.025em;
}

.product_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
}

.product_card {
    display: flex;
    flex-direction: column;
}

.product_thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F8F8F8;
    margin-bottom: 10px;
}

.product_thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.product_card:hover .product_thumb img {
    transform: scale(1.04);
}

.product_info {
    display: flex;
    flex-direction: column;
}

.product_name {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    line-height: 1.35;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 38px;
}

.product_cust_price {
    margin-top: 5px;
    font-size: 12px;
    color: #B5B5B5;
    text-decoration: line-through;
    line-height: 1.4;
}

.product_price_row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.product_rate {
    font-size: 16px;
    font-weight: 700;
    color: #EB5757;
}

.product_sale_price {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
}

.section_more_wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn_section_more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    transition: all 0.2s ease;
}

.btn_section_more:hover {
    background-color: #F8F8F8;
    border-color: #DDDDDD;
}

.notice_rolling_section {
    background-color: #FFFFFF;
    padding: 14px 16px;
    border-bottom: 8px solid #F5F6F8;
}

.notice_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notice_content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.notice_label {
    font-size: 14px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.notice_text {
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
}

.notice_arrow_link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.cs_info_section {
    background-color: #FFFFFF;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 8px solid #F5F6F8;
}

.cs_box_help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cs_help_text {
    flex: 1;
}

.cs_help_title {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.025em;
    margin-bottom: 5px;
}

.cs_help_desc {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
    line-height: 1.45;
    letter-spacing: -0.02em;
    word-break: keep-all;
    word-wrap: break-word;
}

@media (max-width: 768px) {

    .cs_help_desc br.pc_br,
    .cs_help_desc br,
    .pc_br {
        display: none;
    }
}

.btn_cs_kakao {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FEE500;
    color: #191919;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.btn_cs_kakao:hover {
    background-color: #FADA0A;
}

.cs_box_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}

.cs_center_info {
    flex: 1;
}

.cs_center_title {
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}

.cs_center_time {
    font-size: 13px;
    font-weight: 400;
    color: #777777;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.cs_center_holiday {
    color: #888888;
}

.cs_center_links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 110px;
    flex-shrink: 0;
}

.btn_cs_dark {
    display: block;
    text-align: center;
    background-color: #191919;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 0;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s;
    letter-spacing: -0.02em;
}

.btn_cs_dark:hover {
    background-color: #333333;
}

#sinseon_footer {
    background-color: #FAFAFA;
    padding: 18px 16px 20px;
    border-top: 1px solid #EEEEEE;
    margin-bottom: 60px;
    box-sizing: border-box;
}

/* 상품상세 페이지 등 하단 네비바가 없는 페이지는 마진 제거 */
body:has(.sinseon_item_wrap) #sinseon_footer,
#sinseon_container.is_item~#sinseon_footer,
#sinseon_container.is_item+#sinseon_footer {
    margin-bottom: 0 !important;
}

.footer_links {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #EDEDED;
    font-size: 12.5px;
    font-weight: 600;
    color: #333333;
}

.footer_links a {
    color: #333333;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}

.footer_links a:hover {
    color: #FF5A00;
}

.footer_links .divider {
    color: #D1D5DB;
    font-size: 11px;
}

.footer_company {
    font-size: 11px;
    color: #888888;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.footer_company p {
    font-size: 11px;
    color: #888888;
    line-height: 1.45;
    margin-bottom: 1px;
}

.footer_company .company_name {
    font-weight: 600;
    color: #444444;
    margin-bottom: 3px;
}

.footer_company .sep {
    color: #DCDCDC;
    margin: 0 4px;
}

.footer_company .copyright {
    margin-top: 6px;
    font-size: 10.5px;
    color: #AAAAAA;
}

#bottom_nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 60px;
    background-color: #FFFFFF;
    border-top: 1px solid #EDEDED;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 850;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.nav_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #999999;
    font-size: 11px;
    font-weight: 500;
    width: 20%;
    height: 100%;
    letter-spacing: -0.02em;
}

.nav_item.active {
    color: #11A55A;
}

.nav_item svg {
    display: block;
}

@media (min-width: 1201px) {
    #sinseon_footer {
        padding: 22px 20px 24px;
        margin-bottom: 0 !important;
    }

    #bottom_nav {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    #sinseon_page_layout {
        padding: 0;
        gap: 0;
        background-color: #FFFFFF;
    }

    .pc_side_wing {
        display: none !important;
    }

    #sinseon_wrap {
        width: 100%;
        max-width: 480px;
        min-height: auto;
        border-radius: 0;
        box-shadow: none;
    }
}

.search_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.search_modal.active {
    display: block;
}

.search_modal_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.search_modal_content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background-color: #FFFFFF;
    padding: 24px 20px 32px;
    z-index: 2;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

.btn_close_search {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: #888888;
    line-height: 1;
}

.search_logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search_box_form {
    position: relative;
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
}

.search_input {
    width: 100%;
    height: 100%;
    border: 1.5px solid #11A55A;
    border-radius: 8px;
    padding: 0 46px 0 14px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.search_submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tags_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.tag_badge {
    background-color: #F5F5F5;
    border-radius: 100px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    transition: background 0.2s ease;
}

.tag_badge:hover {
    background-color: #EAEAEA;
}

.side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s;
}

.side_menu.active {
    visibility: visible;
    pointer-events: auto;
}

.side_menu_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side_menu.active .side_menu_backdrop {
    opacity: 1;
}

.side_menu_panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #FFFFFF;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
}

.side_menu.active .side_menu_panel {
    transform: translateX(0);
}

.menu_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.menu_auth_btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu_user_greeting {
    font-size: 14px;
    color: #222222;
    margin-right: 4px;
}

.btn_menu_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_pill_outline {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #000000;
}

.btn_pill_outline:hover {
    background-color: #F8F8F8;
    border-color: #CCCCCC;
}

.btn_pill_dark {
    background-color: #121212;
    border: 1px solid #121212;
    color: #FFFFFF;
}

.btn_pill_dark:hover {
    background-color: #2A2A2A;
}

.btn_pill_admin {
    background-color: #11A55A;
    border: 1px solid #11A55A;
    color: #FFFFFF;
}

.btn_pill_admin:hover {
    background-color: #0E8A4B;
}

.btn_menu_close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.menu_quick_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 12px;
    background-color: #FFFFFF;
    border-bottom: 8px solid #F5F6F8;
    flex-shrink: 0;
}

.menu_quick_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 72px;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.menu_quick_item:hover {
    transform: translateY(-2px);
}

.menu_quick_icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_quick_label {
    font-size: 14px;
    color: #555555;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0369em;
}

.menu_promo_banner {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}

.menu_promo_link {
    display: block;
    width: 100%;
    text-decoration: none;
    line-height: 0;
}

.menu_promo_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.menu_nav_scroll {
    flex: 1;
    padding: 24px 20px;
    overflow-y: auto;
}

.menu_nav_group {
    margin-bottom: 24px;
}

.menu_nav_group:last-child {
    margin-bottom: 0;
}

.menu_group_title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.menu_link_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu_nav_row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 6px 0;
    transition: opacity 0.2s ease;
}

.menu_nav_row:hover {
    opacity: 0.75;
}

.menu_row_icon {
    width: 40px;
    height: 40px;
    background-color: #F2F5F8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu_row_icon img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.menu_row_text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

#sinseon_sub_header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(237, 237, 237, 0.8);
    z-index: 900;
    transition: background-color 0.25s ease,
                backdrop-filter 0.25s ease,
                -webkit-backdrop-filter 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
}

#sinseon_sub_header.is_scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    backdrop-filter: blur(20px) saturate(190%);
    border-bottom-color: rgba(229, 231, 235, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sub_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
    gap: 12px;
}

.btn_sub_back {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub_header_title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.025em;
    text-align: center;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0 4px;
}

.sub_header_right {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn_sub_home {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_sub_search {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

#sinseon_notice_list {
    background-color: #FFFFFF;
    min-height: auto;
}

.notice_item_list {
    background-color: #FFFFFF;
}

.notice_list_row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EDEDED;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.notice_list_row:hover {
    background-color: #FAFAFA;
}

.notice_row_top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice_badge_important {
    background-color: #EB5757;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 100px;
    line-height: 1.4;
    letter-spacing: -0.025em;
    flex-shrink: 0;
}

.notice_badge_normal {
    background-color: #EDEDED;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 100px;
    line-height: 1.4;
    letter-spacing: -0.025em;
    flex-shrink: 0;
}

.notice_row_title {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.025em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.notice_row_bottom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555555;
    line-height: 1.4;
    letter-spacing: -0.025em;
    margin-top: 2px;
}

.notice_meta_date {
    font-size: 14px;
    color: #555555;
}

.notice_meta_sep {
    color: #EDEDED;
    font-size: 14px;
}

.notice_meta_hit {
    font-size: 14px;
    color: #555555;
}

.notice_empty {
    padding: 80px 20px;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

.notice_admin_bar {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    background-color: #FFFFFF;
    border-top: 1px solid #F0F0F0;
}

.btn_notice_write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #11A55A;
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.notice_pagination {
    padding: 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: #FFFFFF;
}

.notice_pagination .pg_page,
.notice_pagination .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.notice_pagination .pg_current {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 700;
}

.notice_pagination .pg_page {
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    color: #444444;
}

#sinseon_notice_view {
    background-color: #FFFFFF;
    min-height: auto;
}

.notice_view_header {
    padding: 24px 20px 16px;
    border-bottom: 1px solid #EDEDED;
    background-color: #FFFFFF;
}

.notice_view_badge_wrap {
    margin-bottom: 8px;
}

.notice_view_title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.notice_view_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888888;
}

.notice_view_content {
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    min-height: auto;
    background-color: #FFFFFF;
    word-break: break-word;
}

.notice_view_actions {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EDEDED;
    background-color: #FFFFFF;
}

.btn_notice_list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #121212;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.notice_view_admin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn_notice_admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #444444;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

.btn_notice_del {
    color: #EB5757;
    border-color: #EB5757;
}

#sinseon_notice_write {
    background-color: #FFFFFF;
    min-height: auto;
}

.write_field {
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
    background-color: #FFFFFF;
}

.write_chk_field {
    display: flex;
    align-items: center;
}

.write_chk_field label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444444;
    cursor: pointer;
}

.write_label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 8px;
}

.write_input,
.write_select,
.write_textarea {
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #121212;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.write_input:focus,
.write_textarea:focus,
.write_select:focus {
    border-color: #11A55A;
}

.write_btn_group {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    background-color: #FFFFFF;
}

.btn_write_cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
}

.btn_write_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    background-color: #11A55A;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}


@media (min-width: 1025px) {
    #sinseon_page_layout {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        max-width: 1360px;
        margin: 0 auto;
        padding: 40px 16px 80px;
    }

    .pc_side_wing {
        display: block !important;
        align-self: stretch !important;
    }

    #sinseon_wrap {
        width: 480px;
        flex-shrink: 0;
        margin: 0;
        border-radius: 16px;
        overflow: visible;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    }

    #bottom_nav {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    body {
        background-color: #FFFFFF;
    }

    #sinseon_page_layout {
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .pc_side_wing,
    #pc_left_side,
    #pc_right_side {
        display: none !important;
    }

    #sinseon_wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding-bottom: 0 !important;
    }

    #bottom_nav {
        display: flex !important;
        max-width: 100% !important;
    }

    .hero_title {
        font-size: 32px;
    }

    .quick_category_grid {
        gap: 8px;
    }

    .product_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .deal_img_wrap {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .product_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .quick_category_grid {
        gap: 8px;
    }

    .deal_img_wrap {
        height: 240px;
    }

    .side_menu_panel {
        max-width: 85%;
    }
}

.btn_sub_qa_write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.btn_sub_qa_write img {
    display: block;
    width: 24px;
    height: 24px;
}

.sinseon_qa_wrap {
    width: 100%;
    background-color: #FFFFFF;
    min-height: auto;
}

.qa_list_container {
    width: 100%;
}

.qa_item_row {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 14px 20px;
    border-bottom: 1px solid #EDEDED;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.qa_item_row:hover {
    background-color: #FAFAFA;
}

.qa_top_line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa_tag_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border: 1px solid #EDEDED;
    border-radius: 100px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    line-height: 1.4;
    letter-spacing: -0.025em;
    flex-shrink: 0;
}

.qa_title_text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
    letter-spacing: -0.025em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.qa_bottom_line {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
}

.qa_status_txt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.qa_status_txt.qa_status_done {
    color: #11A55A;
}

.qa_status_txt.qa_status_wait {
    color: #9CA3AF;
}

.qa_divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #E5E7EB;
}

.qa_author_txt {
    color: #6B7280;
    font-size: 13px;
}

.qa_date_txt {
    color: #9CA3AF;
    font-size: 13px;
}

.qa_empty_wrap {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qa_empty_txt {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 500;
}

.qa_header_action_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 8px;
}

.qa_total_count {
    font-size: 14px;
    color: #666666;
}

.qa_total_count strong {
    color: #121212;
    font-weight: 700;
}

.btn_qa_primary_write {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background-color: #121212;
    color: #FFFFFF;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_qa_primary_write:hover {
    background-color: #333333;
}

.qa_status_pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.qa_status_pill.done {
    background-color: #E8F7EE;
    color: #11A55A;
}

.qa_status_pill.wait {
    background-color: #F3F4F6;
    color: #8E8E93;
}

.qa_view_wrap {
    padding: 24px 20px 48px;
}

.qa_view_header {
    padding-bottom: 20px;
    border-bottom: 1px solid #EDEDED;
}

.qa_view_cat_badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.qa_view_title {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    line-height: 1.4;
    letter-spacing: -0.025em;
    word-break: break-word;
}

.qa_view_meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #8E8E93;
}

.qa_view_meta .name {
    color: #333333;
    font-weight: 600;
}

.qa_view_content {
    padding: 24px 0;
    border-bottom: 1px solid #EDEDED;
}

.qa_view_images {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qa_view_images img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.qa_view_text {
    font-size: 15px;
    line-height: 1.7;
    color: #222222;
    word-break: break-word;
}

.qa_view_files {
    padding: 16px 0;
    border-bottom: 1px solid #EDEDED;
}

.qa_files_title {
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 8px;
}

.qa_files_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qa_file_item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #11A55A;
    text-decoration: none;
}

.qa_file_item:hover {
    text-decoration: underline;
}

/* 문의 대상 상품 카드 */
.qa_target_product_card {
    margin-bottom: 24px;
    background-color: #F9FAFB;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qa_target_product_card:hover {
    border-color: #121212;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qa_target_prod_link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
}

.qa_target_prod_thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    flex-shrink: 0;
}

.qa_target_prod_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qa_target_prod_info {
    flex: 1;
    min-width: 0;
}

.qa_target_prod_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #11A55A;
    background-color: rgba(17, 165, 90, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.qa_target_prod_name {
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qa_target_prod_price {
    font-size: 14px;
    font-weight: 700;
    color: #FF5A00;
    margin: 0;
}

.qa_target_prod_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qa_answer_section {
    margin-top: 24px;
}

.qa_answer_card {
    background-color: #F8F9FB;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #EDEDED;
}

.qa_answer_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.qa_answer_badge_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa_badge_ans_icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #11A55A;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.qa_ans_title {
    font-size: 15px;
    font-weight: 700;
    color: #121212;
}

.qa_ans_date {
    font-size: 12px;
    color: #9CA3AF;
}

.qa_ans_content {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
    word-break: break-word;
}

.qa_ans_admin_btns {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #E5E7EB;
}

.btn_qa_ans_edit,
.btn_qa_ans_del {
    font-size: 12px;
    color: #6B7280;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #D1D5DB;
    background-color: #FFFFFF;
}

.btn_qa_ans_del {
    color: #EF4444;
}

.qa_admin_answerform_section {
    margin-top: 24px;
}

.qa_answerform_card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #11A55A;
}

.qa_answerform_title {
    font-size: 15px;
    font-weight: 700;
    color: #11A55A;
    margin-bottom: 16px;
}

.qa_view_btn_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #EDEDED;
}

.qa_btn_right {
    display: flex;
    gap: 8px;
}

.btn_qa_sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_qa_sub:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
}

.btn_qa_primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 8px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_qa_primary:hover {
    background-color: #333333;
}

.qa_write_wrap {
    padding: 24px 20px 0;
}

.qa_write_header {
    margin-bottom: 24px;
}

.qa_write_heading {
    font-size: 20px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 6px;
}

.qa_write_sub {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
}

.qa_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qa_form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qa_form_label {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.qa_form_label .req {
    color: #EF4444;
}

.qa_form_input,
.qa_form_select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    color: #121212;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.qa_form_input:focus,
.qa_form_select:focus {
    border-color: #121212;
    outline: none;
}

.qa_form_input::placeholder {
    color: #9CA3AF;
}

.qa_editor_wrap {
    width: 100%;
}

.qa_editor_wrap textarea {
    width: 100%;
    min-height: 180px;
    padding: 14px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.6;
    color: #121212;
    box-sizing: border-box;
    resize: vertical;
}

.qa_editor_wrap textarea:focus {
    border-color: #121212;
    outline: none;
}

.qa_file_inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qa_file_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qa_file_field {
    font-size: 13px;
    color: #4B5563;
}

.qa_chk_label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555555;
    cursor: pointer;
}

.qa_chk_label.mt_6 {
    margin-top: 6px;
}

.qa_form_textarea {
    width: 100%;
    min-height: 180px;
    padding: 14px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.6;
    color: #121212;
    box-sizing: border-box;
    resize: vertical;
}

.qa_form_textarea:focus {
    border-color: #121212;
    outline: none;
}

.sound_only {
    display: inline-block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

.qa_captcha_group {
    margin-top: 6px;
}

.qa_captcha_wrap {
    display: flex;
    align-items: flex-start;
    padding: 12px 14px;
    background-color: #F9FAFB;
    border: 1px solid #EDEDED;
    border-radius: 8px;
}

.qa_captcha_wrap fieldset#captcha {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.qa_form_btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.btn_qa_cancel {
    flex: 1;
    width: 50%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D1D5DB;
    background-color: #FFFFFF;
    color: #4B5563;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

.btn_qa_cancel:hover {
    background-color: #F9FAFB;
}

.btn_qa_submit {
    flex: 1;
    width: 50%;
    height: 50px;
    border: none;
    background-color: #121212;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.btn_qa_submit:hover {
    background-color: #2A2A2A;
}

/* ========================================================
   B2B 대량구매 문의 전용 고도화 스타일 (480px 컨테이너 최적화)
   ======================================================== */
.b2b_write_wrap {
    padding: 24px 20px 0;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.b2b_benefit_banner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.b2b_benefit_card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: #FAFAFA;
    border: 1px solid #EDEDED;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.b2b_benefit_card:hover {
    border-color: #FF5A00;
    background-color: #FFF9F5;
    box-shadow: 0 2px 8px rgba(255, 90, 0, 0.05);
}

.b2b_benefit_icon_box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    color: #FF5A00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.b2b_benefit_body {
    flex: 1;
    min-width: 0;
}

.b2b_benefit_header_line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.b2b_benefit_tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #FF5A00;
    background-color: rgba(255, 90, 0, 0.08);
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.3;
    flex-shrink: 0;
}

.b2b_benefit_title {
    font-size: 13.5px;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
}

.b2b_benefit_desc {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.3;
}

.sinseon_faq_wrap {
    width: 100%;
    min-height: auto;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.faq_search_box {
    padding: 16px 20px;
}

.faq_search_form {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.faq_search_input {
    width: 100%;
    height: 48px;
    padding: 0 48px 0 16px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    font-size: 14px;
    color: #121212;
    background-color: #FFFFFF;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.faq_search_input::placeholder {
    color: #8E8E93;
}

.faq_search_input:focus {
    border-color: #121212;
}

.faq_search_btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_category_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0 0 16px;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    background-color: #EDEDED;
    gap: 1px;
    box-sizing: border-box;
}

.faq_cat_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background-color: #F8F8F8;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    transition: all 0.15s ease;
    text-align: center;
    padding: 0 4px;
    letter-spacing: -0.025em;
}

.faq_cat_btn:hover {
    background-color: #F0F0F0;
}

.faq_cat_btn.active {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 700;
}

.faq_cat_empty {
    height: 44px;
    background-color: #F8F8F8;
    border: none;
    box-sizing: border-box;
}

.faq_list_container {
    width: 100%;
}

.faq_item {
    border-bottom: 1px solid #EDEDED;
    background-color: #FFFFFF;
}

.faq_q_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
    -webkit-tap-highlight-color: transparent;
}

.faq_q_text {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.faq_q_text strong {
    font-weight: 700;
    margin-right: 2px;
}

.faq_arrow_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq_item.open .faq_arrow_icon {
    transform: rotate(180deg);
}

.faq_a_body {
    background-color: #FFFFFF;
    padding: 0 20px 18px;
    box-sizing: border-box;
}

.faq_a_inner {
    display: flex;
    gap: 6px;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.faq_a_prefix {
    font-weight: 700;
    color: #121212;
    flex-shrink: 0;
}

.faq_a_text {
    flex: 1;
    color: #333333;
    white-space: pre-line;
}

.faq_empty_box {
    padding: 60px 20px;
    text-align: center;
}

.faq_empty_text {
    font-size: 14px;
    color: #8E8E93;
}

.faq_pagination_wrap {
    padding: 24px 20px 32px;
    display: flex;
    justify-content: center;
}

body:has(.sinseon_list_wrap) #sinseon_sub_header {
    border-bottom: none;
}

.sinseon_list_wrap {
    background-color: #FFFFFF;
    min-height: auto;
    padding-bottom: 0;
}

.list_top_toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    background-color: #FFFFFF;
}

.list_total_count {
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    letter-spacing: -0.01em;
}

.list_total_count .count_num {
    color: #FF5A00;
    font-weight: 700;
}

.list_sort_box {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sinseon_sort_select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    padding-right: 18px;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    letter-spacing: -0.01em;
}

.sort_chevron {
    position: absolute;
    right: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cate_tab_wrap {
    position: sticky;
    top: 64px;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    background-color: #EDEDED;
    z-index: 850;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cate_tab_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.cate_tab_item {
    background-color: #F8F8F8;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.025em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
    padding: 0 4px;
    word-break: keep-all;
    white-space: nowrap;
    border: none;
    outline: none;
    font-family: inherit;
}

.cate_tab_item:hover {
    background-color: #F0F0F0;
}

.cate_tab_item.active {
    background-color: #121212;
    color: #FFFFFF;
    font-weight: 700;
}

.sinseon_prod_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
    padding: 6px 20px 30px;
    background-color: #FFFFFF;
}

.sinseon_prod_card {
    display: flex;
    flex-direction: column;
}

.prod_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.prod_thumb_box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F8F8F8;
}

.prod_thumb_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.prod_card_link:hover .prod_thumb_box img {
    transform: scale(1.03);
}

.prod_info_box {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}

.prod_title {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    line-height: 1.35;
    letter-spacing: -0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 38px;
}

.prod_cust_price {
    margin-top: 6px;
    font-size: 14px;
    color: #B0B0B0;
    text-decoration: line-through;
    line-height: 1;
    letter-spacing: -0.01em;
}

.prod_price_row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 3px;
    line-height: 1.2;
}

.prod_discount {
    font-size: 16px;
    font-weight: 700;
    color: #FF3B30;
    letter-spacing: -0.02em;
}

.prod_price {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.02em;
}

.sinseon_empty_list {
    padding: 80px 20px;
    text-align: center;
    color: #8E8E93;
    font-size: 14px;
}

.sinseon_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 30px;
    gap: 6px;
}

.sinseon_pagination .pg_page,
.sinseon_pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 14px;
    color: #666666;
    background-color: #F7F7F7;
    text-decoration: none;
}

.sinseon_pagination .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #121212;
}

.sinseon_item_wrap {
    width: 100%;
    background-color: #FFFFFF;
    box-sizing: border-box;
    position: relative;
}

.item_sub_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 16px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
    position: sticky;
    top: 0;
    z-index: 25;
}

.item_back_btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_sub_title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.item_header_dummy {
    width: 34px;
}

.item_hero_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #F9FAFB;
}

.item_hero_img {
    width: 100%;
    height: 100%;
}

.item_hero_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item_hero_badge_bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(28, 28, 28, 0.9);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_hero_badge_bar .badge_num {
    color: #FF6B00;
    font-weight: 700;
    margin: 0 2px;
}

.item_info_section {
    padding: 22px 16px 20px;
    background-color: #FFFFFF;
}

.item_subtitle {
    font-size: 15px;
    color: #6B7280;
    margin: 0 0 8px 0;
}

.item_title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.item_meta_price_row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item_rating_box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.item_rating_box .star_icon {
    color: #F59E0B;
    font-size: 15px;
}

.item_rating_box .rating_score {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.item_rating_box .review_link {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: underline;
    margin-left: 4px;
}

.item_price_box {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.item_price_box .discount_percent {
    font-size: 22px;
    font-weight: 800;
    color: #EF4444;
}

.item_price_box .sale_price {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.item_reviews_preview_wrap {
    background-color: #F9FAFB;
    padding: 20px 16px;
    border-top: 8px solid #F3F4F6;
    border-bottom: 8px solid #F3F4F6;
}

.preview_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.preview_title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.preview_nav_btns {
    display: flex;
    gap: 6px;
    align-items: center;
}

.preview_nav_btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background-color: #FFFFFF;
    color: #4B5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.preview_nav_btn:hover {
    background-color: #F3F4F6;
    border-color: #D1D5DB;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.preview_nav_btn:active {
    transform: scale(0.94);
}

.preview_carousel_container {
    position: relative;
    width: 100%;
}

.preview_carousel_track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.preview_carousel_track.is_dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}

.preview_carousel_track::-webkit-scrollbar {
    display: none;
}

.preview_review_card {
    flex: 0 0 250px;
    width: 250px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px;
    box-sizing: border-box;
}

.card_star_row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.card_star_icon {
    color: #F59E0B;
    font-size: 14px;
}

.card_star_num {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.card_body_row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    height: 56px;
    margin-bottom: 10px;
}

.card_text {
    font-size: 14px;
    color: #374151;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.card_thumb {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #F3F4F6;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.card_thumb:hover {
    opacity: 0.92;
    transform: scale(1.04);
}

.card_thumb img,
.card_thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card_video_badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #FFFFFF;
    font-size: 8.5px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 2px;
    pointer-events: none;
    line-height: 1.2;
    z-index: 2;
}

.card_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888888;
}

.card_report_btn {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.item_tabs_anchor {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    visibility: hidden;
    pointer-events: none;
}

.item_detail_tabs_wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 64px;
    z-index: 100;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    transition: box-shadow 0.2s ease;
}

.item_detail_tabs_wrap.is_stuck {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item_detail_tabs_grid {
    display: flex;
    width: 100%;
}

.item_tab_btn {
    flex: 1;
    height: 50px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.item_tab_btn.active {
    color: #111827;
    font-weight: 700;
    border-bottom: 2px solid #FF6B00;
}

.item_tab_panel {
    display: none;
}

.item_tab_panel.active {
    display: block;
}

.item_explan_container {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
}

.item_explan_inner {
    max-height: 480px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.item_explan_inner.expanded {
    max-height: none;
}

.item_explan_html {
    padding: 20px 16px;
    line-height: 1.65;
    font-size: 15px;
    color: #374151;
}

.item_explan_html img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.item_explan_placeholder {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_explan_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.item_explan_placeholder .placeholder_text {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px 18px;
    border-radius: 4px;
}

.item_more_btn_wrap {
    position: relative;
    padding: 16px;
    background-color: #FFFFFF;
    text-align: center;
}

.item_more_btn_wrap:not(.expanded) {
    box-shadow: 0 -24px 20px -4px rgba(255, 255, 255, 0.95);
}

.item_more_btn {
    width: 100%;
    height: 46px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.item_more_btn:hover {
    background-color: #F9FAFB;
}

.chevron_icon {
    transition: transform 0.2s ease;
}

.item_gosi_section {
    padding: 24px 16px;
    border-top: 8px solid #F3F4F6;
    background-color: #FFFFFF;
}

.gosi_title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
}

.gosi_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gosi_row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 12px;
}

.gosi_label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    line-height: 1.45;
}

.gosi_val {
    font-size: 15px;
    color: #111827;
    font-weight: 600;
    line-height: 1.45;
}

.sales_notice_container {
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    background-color: #FFFFFF;
}

.notice_block_title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.notice_desc {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.review_panel_wrap {
    padding: 20px 16px;
    background-color: #FFFFFF;
}

.review_summary_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0 20px;
    text-align: center;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 16px;
}

.hero_score_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.hero_score_row .hero_star {
    color: #FF6B00;
    font-size: 34px;
    line-height: 1;
}

.hero_score_row .hero_score {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero_count_text {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 14px;
    font-weight: 500;
}

.hero_write_btn_wrap {
    margin-top: 4px;
}

.btn_write_review_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background-color: #FF6B00;
    color: #FFFFFF;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_write_review_pill:hover {
    background-color: #E65A00;
}

.review_full_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review_card_item {
    padding: 20px 0;
    border-bottom: 1px solid #F3F4F6;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.review_card_item:first-child {
    padding-top: 0;
}

.rev_author_row {
    margin-bottom: 4px;
    width: 100%;
    max-width: 100%;
}

.rev_author_name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.rev_score_date_row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rev_score_date_row .rev_star_icon {
    color: #FF6B00;
    font-size: 14px;
}

.rev_score_date_row .rev_score_num {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.rev_score_date_row .rev_date_text {
    font-size: 14px;
    color: #9CA3AF;
    margin-left: 6px;
}

.rev_photo_gallery {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    overflow-x: auto;
}

.rev_photo_thumb {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #F3F4F6;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rev_photo_thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.rev_photo_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rev_photo_thumb:hover img {
    transform: scale(1.08);
}

/* 동영상 썸네일 전용 스타일 (이미지 썸네일과 동일한 깔끔한 스타일) */
.rev_video_thumb_wrap {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F3F4F6;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rev_video_thumb_wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.rev_video_thumb_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rev_video_thumb_wrap:hover video {
    transform: scale(1.08);
}

.card_video_badge,
.rev_video_play_overlay,
.rev_video_badge {
    display: none !important;
}

/* 후기 이미지 라이트박스 모달 */
.rev_img_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
    box-sizing: border-box;
}

.rev_img_modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rev_img_modal_dialog {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rev_img_modal_close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}

.rev_img_modal_close:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.08);
}

.rev_img_modal_content {
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 88vw;
    max-height: 82vh;
}

.rev_img_modal.active .rev_img_modal_content {
    transform: scale(1);
    opacity: 1;
}

.rev_img_modal_content img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    user-select: none;
}

/* 후기 동영상 라이트박스 모달 */
.rev_video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    box-sizing: border-box;
}

.rev_video_modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rev_video_modal_dialog {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rev_video_modal_close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}

.rev_video_modal_close:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.08);
}

.rev_video_modal_content {
    background: #000000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 84vh;
}

.rev_video_modal.active .rev_video_modal_content {
    transform: scale(1);
    opacity: 1;
}

.rev_video_modal_content video {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 12px;
    outline: none;
    background-color: #000000;
}

.rev_text_body {
    font-size: 14px;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    word-break: break-all;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    overflow: hidden;
}

.rev_helpful_section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.helpful_info_text {
    font-size: 12px;
    color: #888888;
}

.helpful_btn_group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.btn_helpful_vote {
    flex: 1;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_helpful_vote:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.btn_helpful_vote.active {
    border-color: #FF6B00;
    color: #FF6B00;
    background-color: #FFF5EE;
    font-weight: 700;
}

.qa_panel_wrap {
    padding: 20px 16px;
    background-color: #FFFFFF;
}

.qa_header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.qa_count_text {
    font-size: 15px;
    color: #6B7280;
}

.qa_num {
    color: #FF6B00;
    font-weight: 700;
}

.btn_write_qa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: #111827;
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.qa_item_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qa_accordion_item {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qa_accordion_item:hover {
    border-color: #D1D5DB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.qa_accordion_item.active {
    border-color: #FF6B00;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.08);
}

.qa_row_header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.2s ease;
    user-select: none;
}

.qa_row_header:hover {
    background-color: #FAFAFA;
}

.qa_accordion_item.active .qa_row_header {
    background-color: #FFFDFB;
    border-bottom: 1px solid #F3F4F6;
}

.qa_status_badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    background-color: #F3F4F6;
    flex-shrink: 0;
    text-align: center;
}

.qa_status_badge.answered {
    color: #11A55A;
    background-color: #E8F7EE;
}

.qa_main_info {
    flex: 1;
    overflow: hidden;
}

.qa_subject {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qa_accordion_item.active .qa_subject {
    color: #FF6B00;
}

.secret_lock_icon {
    color: #9CA3AF;
    flex-shrink: 0;
}

.qa_meta_text {
    font-size: 13px;
    color: #9CA3AF;
}

.qa_arrow_wrap {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s ease;
}

.qa_row_header:hover .qa_arrow_wrap {
    color: #374151;
}

.qa_chevron_icon {
    transition: transform 0.25s ease;
}

.qa_accordion_item.active .qa_chevron_icon {
    transform: rotate(180deg);
    color: #FF6B00;
}

.qa_detail_body {
    display: none;
    background-color: #F9FAFB;
    padding: 16px;
}

.qa_accordion_item.active .qa_detail_body {
    display: block;
    animation: qaFadeIn 0.22s ease-out;
}

@keyframes qaFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa_detail_inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qa_box_question,
.qa_box_answer {
    padding: 14px 16px;
    border-radius: 6px;
    box-sizing: border-box;
}

.qa_box_question {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.qa_box_answer {
    background-color: #F3FBF7;
    border: 1px solid #C6EED8;
}

.qa_box_answer.waiting {
    background-color: #FFFFFF;
    border: 1px dashed #D1D5DB;
}

.qa_box_badge_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.qa_type_pill {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.qa_type_pill.q_badge {
    background-color: #F3F4F6;
    color: #374151;
}

.qa_type_pill.a_badge {
    background-color: #11A55A;
    color: #FFFFFF;
}

.qa_type_pill.wait_badge {
    background-color: #9CA3AF;
    color: #FFFFFF;
}

.qa_ans_date {
    font-size: 12px;
    color: #9CA3AF;
}

.qa_box_text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-all;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.qa_box_text.waiting_text {
    color: #6B7280;
    font-style: italic;
}

.qa_secret_notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    color: #6B7280;
    font-size: 14px;
}

.qa_empty_box {
    text-align: center;
    padding: 48px 0;
    font-size: 15px;
    color: #9CA3AF;
}

.item_bottom_sticky_bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    box-sizing: border-box;
    z-index: 850;
}

.btn_item_wish {
    width: 46px;
    height: 46px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.btn_item_wish.active {
    border-color: #FF6B00;
}

.btn_item_cart_open {
    flex: 1;
    height: 46px;
    border: 1px solid #FF6B00;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #FF6B00;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn_item_cart_open:hover {
    background-color: #FFF5EE;
}

.btn_item_buy_open {
    flex: 1.2;
    height: 46px;
    border: none;
    border-radius: 6px;
    background-color: #FF6B00;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn_item_buy_open:hover {
    background-color: #E65A00;
}

.item_sheet_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    display: none;
}

.item_sheet_backdrop.open {
    display: block;
}

.item_buy_sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 480px;
    background-color: #FFFFFF;
    border-radius: 16px 16px 0 0;
    z-index: 1001;
    padding: 18px 20px 24px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.item_buy_sheet.open {
    transform: translate(-50%, 0);
}

.sheet_top_handle_bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.sheet_handle {
    width: 40px;
    height: 4px;
    background-color: #D1D5DB;
    border-radius: 2px;
}

.sheet_close_btn {
    position: absolute;
    right: 0;
    top: -4px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
}

.sheet_product_preview {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 16px;
}

.sheet_thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #F9FAFB;
    flex-shrink: 0;
}

.sheet_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sheet_pname {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.sheet_pprice {
    font-size: 18px;
    font-weight: 800;
    color: #FF6B00;
}

.sheet_qty_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F9FAFB;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.sheet_qty_label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.sheet_qty_control {
    display: flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.qty_btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty_btn:hover {
    background-color: #F3F4F6;
}

.qty_input {
    width: 48px;
    height: 36px;
    border: none;
    border-left: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    outline: none;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.qty_input::-webkit-outer-spin-button,
.qty_input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.sheet_total_row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    padding: 0 4px;
}

.total_title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.total_price_val {
    font-size: 22px;
    font-weight: 800;
    color: #FF6B00;
}

.sheet_action_btns {
    display: flex;
    gap: 8px;
}

/* 옵션 선택 및 선택된 카드 스타일 고도화 */
.sheet_option_group_wrap {
    margin-bottom: 16px;
}

.sheet_opt_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sheet_opt_label {
    font-size: 13px;
    font-weight: 700;
    color: #4B5563;
}

.sheet_option_select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.sheet_option_select:focus {
    border-color: #FF6B00;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.sheet_selected_list {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-right: 2px;
}

.sheet_selected_list::-webkit-scrollbar {
    width: 4px;
}

.sheet_selected_list::-webkit-scrollbar-thumb {
    background-color: #E5E7EB;
    border-radius: 4px;
}

.selected_opt_card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.selected_opt_card:hover {
    border-color: #D1D5DB;
}

.opt_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.opt_card_title_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.opt_badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: -0.2px;
}

.opt_badge_main {
    background-color: #FFF0E6;
    color: #FF6B00;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.opt_badge_sub {
    background-color: #EFF6FF;
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.opt_card_name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.opt_card_del_btn {
    background: none;
    border: none;
    font-size: 15px;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.15s;
}

.opt_card_del_btn:hover {
    color: #EF4444;
}

.opt_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opt_qty_control {
    display: flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.opt_qty_input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    outline: none;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.opt_qty_input::-webkit-outer-spin-button,
.opt_qty_input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.opt_qty_control .qty_btn {
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.opt_card_price {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.btn_sheet_cart {
    flex: 1;
    height: 50px;
    border: 1px solid #FF6B00;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #FF6B00;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn_sheet_cart:hover {
    background-color: #FFF5EE;
}

.btn_sheet_buy {
    flex: 1.4;
    height: 50px;
    border: none;
    border-radius: 6px;
    background-color: #FF6B00;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn_sheet_buy:hover {
    background-color: #E65A00;
}

body:has(.sinseon_item_wrap) #bottom_nav {
    display: none !important;
}

@media (min-width: 1025px) {
    .sinseon_item_wrap {
        border-left: 1px solid #E5E7EB;
        border-right: 1px solid #E5E7EB;
    }

    .item_bottom_sticky_bar {
        position: sticky;
        bottom: 0;
        z-index: 850;
    }
}

/* ==========================================================================
   최근 본 상품 (History Page)
   ========================================================================== */
.sinseon_history_wrap {
    min-height: auto;
    background-color: #FFFFFF;
    padding: 0 0 0 0;
    box-sizing: border-box;
}

.history_top_toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #EDEDED;
}

.btn_history_clear {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #6B7280;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_history_clear:hover {
    background-color: #FEE2E2;
    border-color: #FCA5A5;
    color: #DC2626;
}

.history_prod_grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .history_prod_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.history_prod_card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    padding: 12px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.history_prod_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #D1D5DB;
}

.history_prod_card .prod_card_link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.history_prod_card .prod_thumb_box {
    border-radius: 8px;
    overflow: hidden;
}

.history_prod_card .prod_info_box {
    padding-top: 10px;
    padding-left: 2px;
    padding-right: 2px;
}

.btn_history_item_del {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn_history_item_del:hover {
    background-color: #EF4444;
    border-color: #EF4444;
}

.btn_history_item_del:hover svg {
    stroke: #FFFFFF;
}

.history_card_actions {
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid #F3F4F6;
}

.btn_history_buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 38px;
    border-radius: 6px;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.btn_history_buy:hover {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn_history_buy svg {
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.btn_history_buy:hover svg {
    transform: translateX(2px);
}

/* 비어있는 상태 UI */
.history_empty_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.history_empty_icon {
    margin-bottom: 16px;
}

.history_empty_title {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 8px;
}

.history_empty_desc {
    font-size: 14px;
    color: #8E8E93;
    margin-bottom: 24px;
}

.btn_history_go_shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_history_go_shop:hover {
    background-color: #333333;
}

/* ==========================================================================
   찜한 상품 (Wishlist Page)
   ========================================================================== */
.sinseon_wishlist_wrap {
    min-height: auto;
    background-color: #FFFFFF;
    padding: 0 0 0 0;
    box-sizing: border-box;
}

.wishlist_top_toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #EDEDED;
}

.btn_wishlist_clear {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #6B7280;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_wishlist_clear:hover {
    background-color: #FEE2E2;
    border-color: #FCA5A5;
    color: #DC2626;
}

.wishlist_prod_grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .wishlist_prod_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.wishlist_prod_card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    padding: 12px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wishlist_prod_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #D1D5DB;
}

.wishlist_prod_card .prod_card_link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wishlist_prod_card .prod_thumb_box {
    border-radius: 8px;
    overflow: hidden;
}

.wishlist_prod_card .prod_info_box {
    padding-top: 10px;
    padding-left: 2px;
    padding-right: 2px;
}

.btn_wishlist_heart {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn_wishlist_heart:hover {
    transform: scale(1.1);
    background-color: #FFF5EE;
    border-color: #FF5A00;
}

.wishlist_card_actions {
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid #F3F4F6;
}

.btn_wishlist_buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 38px;
    border-radius: 6px;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.btn_wishlist_buy:hover {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn_wishlist_buy svg {
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.btn_wishlist_buy:hover svg {
    transform: translateX(2px);
}

/* 비어있는 상태 UI */
.wishlist_empty_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.wishlist_empty_icon {
    margin-bottom: 16px;
}

.wishlist_empty_title {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 8px;
}

.wishlist_empty_desc {
    font-size: 14px;
    color: #8E8E93;
    margin-bottom: 24px;
}

.btn_wishlist_go_shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_wishlist_go_shop:hover {
    background-color: #333333;
}

/* ==========================================================================
   신선소비 구매후기 작성 폼 (itemuseform.skin.php)
   ========================================================================== */
.sinseon_modal_form_wrap {
    max-width: 620px;
    margin: 0 auto;
    padding: 28px 20px 40px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    font-family: inherit;
}

.modal_form_header {
    margin-bottom: 20px;
}

.modal_form_title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px 0;
}

.modal_form_desc {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.modal_product_card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    margin-bottom: 24px;
}

.modal_prod_thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.modal_prod_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal_prod_info {
    flex: 1;
    overflow: hidden;
}

.modal_prod_badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #FF6B00;
    background-color: #FFF5EE;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.modal_prod_name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal_prod_price {
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    margin: 0;
}

.modal_write_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_label {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
}

.form_label .req {
    color: #EF4444;
}

.star_rating_selector {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
}

.star_icons_wrap {
    display: flex;
    gap: 4px;
}

.star_btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #D1D5DB;
    cursor: pointer;
    padding: 0 2px;
    transition: transform 0.15s ease, color 0.15s ease;
    line-height: 1;
}

.star_btn:hover {
    transform: scale(1.2);
}

.star_btn.filled {
    color: #F59E0B;
}

.star_score_label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.star_score_label .score_text {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.star_score_label .score_desc {
    font-size: 13px;
    font-weight: 500;
    color: #FF6B00;
}

.form_input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    color: #111827;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form_input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
    outline: none;
}

.form_input::placeholder {
    color: #9CA3AF;
}

.form_textarea {
    width: 100%;
    min-height: 160px;
    padding: 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.6;
    color: #111827;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form_textarea:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
    outline: none;
}

.form_helper_tip {
    font-size: 12px;
    color: #6B7280;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.modal_form_actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn_form_cancel {
    flex: 1;
    height: 50px;
    border: 1px solid #D1D5DB;
    background-color: #FFFFFF;
    color: #4B5563;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn_form_cancel:hover {
    background-color: #F9FAFB;
}

.btn_form_submit {
    flex: 1;
    height: 50px;
    border: none;
    background-color: #111827;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn_form_submit:hover {
    background-color: #000000;
}

.btn_form_submit:active {
    transform: scale(0.98);
}

/* 상품 상세 믿고보는 후기 모음 상단 액션 및 후기작성 버튼 */
.preview_actions_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn_preview_write_review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: #FFF5EE;
    color: #FF5A00;
    border: 1px solid #FFD8C2;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn_preview_write_review:hover {
    background-color: #FF5A00;
    color: #FFFFFF;
    border-color: #FF5A00;
}

/* ==========================================================================
   공통 8개 단위 더보기 + 버튼 스타일 (DB 부하 방지 및 점진적 로딩)
   ========================================================================== */
.sinseon_more_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 16px;
    width: 100%;
}

.btn_sinseon_load_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 320px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    color: #4B5563;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btn_sinseon_load_more:hover {
    background-color: #FFF5EE;
    border-color: #FFB894;
    color: #FF5A00;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 90, 0, 0.08);
}

.btn_sinseon_load_more:active {
    transform: translateY(0);
}

.btn_sinseon_load_more .more_icon {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #FF5A00;
}

/* ==========================================================================
   신선소비 장바구니 (Cart Page)
   ========================================================================== */
.sinseon_cart_page {
    width: 100%;
    background-color: #F8F9FA;
    min-height: auto;
    padding-bottom: 0;
    box-sizing: border-box;
}

/* 상단 툴바 (전체선택 / 선택삭제) */
.cart_toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EDEDED;
}

.cart_chk_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.sinseon_custom_chk {
    display: none;
}

.chk_custom_box {
    width: 20px;
    height: 20px;
    border: 1.5px solid #D1D5DB;
    border-radius: 4px;
    background-color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-sizing: border-box;
    position: relative;
}

.sinseon_custom_chk:checked+.chk_custom_box {
    background-color: #FF5A00;
    border-color: #FF5A00;
}

.sinseon_custom_chk:checked+.chk_custom_box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.toolbar_txt {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.toolbar_txt strong {
    color: #FF5A00;
}

.btn_cart_sel_del {
    background: none;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_cart_sel_del:hover {
    background-color: #F3F4F6;
    color: #111827;
}

/* 장바구니 상품 목록 */
.cart_item_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.cart_card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart_card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn_cart_single_del {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.btn_cart_single_del:hover svg {
    stroke: #EF4444;
}

.cart_card_body {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart_thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.cart_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart_pinfo {
    flex: 1;
    overflow: hidden;
}

.cart_pname {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart_pname:hover {
    color: #FF5A00;
}

.cart_popt {
    font-size: 12px;
    color: #8E8E93;
    margin-bottom: 4px;
}

.cart_price_unit {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
}

.cart_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #F3F4F6;
}

.cart_qty_control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.btn_qty {
    width: 30px;
    height: 30px;
    background-color: #F9FAFB;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.btn_qty:hover {
    background-color: #E5E7EB;
}

.cart_qty_input {
    width: 36px;
    height: 30px;
    border: none;
    border-left: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    background-color: #FFFFFF;
    outline: none;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.cart_qty_input::-webkit-outer-spin-button,
.cart_qty_input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.cart_subtotal_price {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

/* 결제 예상 금액 계산서 */
.cart_summary_box {
    margin: 4px 16px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.summary_title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.summary_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.row_label {
    font-size: 14px;
    color: #6B7280;
}

.row_val {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.summary_divider {
    height: 1px;
    background-color: #E5E7EB;
    margin: 14px 0;
}

.summary_row_total {
    margin-bottom: 0;
}

.total_label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.total_val {
    font-size: 19px;
    font-weight: 800;
    color: #FF5A00;
    letter-spacing: -0.02em;
}

/* 하단 주문하기 고정 바 */
.cart_bottom_sticky_bar {
    padding: 0 16px 0;
}

.btn_cart_order_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background-color: #FF5A00;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.25);
    letter-spacing: -0.02em;
}

.btn_cart_order_submit:hover {
    background-color: #E65100;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 90, 0, 0.35);
}

.btn_cart_order_submit:active {
    transform: translateY(0);
}

/* 빈 장바구니 뷰 */
.cart_empty_view {
    padding: 80px 20px;
    text-align: center;
    background-color: #FFFFFF;
    margin: 16px 16px 0;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
}

.empty_icon_box {
    margin-bottom: 16px;
}

.cart_empty_view .empty_title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cart_empty_view .empty_desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.4;
}

.btn_cart_go_shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_cart_go_shop:hover {
    background-color: #333333;
}

/* ==========================================================================
   신선소비 마이페이지 (My Page)
   ========================================================================== */
.sinseon_mypage_wrap {
    width: 100%;
    background-color: #F8F9FA;
    padding: 16px 16px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* 1. 회원 프로필 카드 */
.mypage_profile_card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #EDEDED;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.profile_main_box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile_avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF3EC 0%, #FFE5D6 100%);
    border: 2px solid #FFD8C2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile_meta {
    flex: 1;
    min-width: 0;
}

.profile_name_row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.profile_name {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin: 0;
    letter-spacing: -0.02em;
}

.profile_badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #FF5A00;
    background-color: #FFF2EB;
    border: 1px solid #FFD8C2;
    border-radius: 20px;
}

.profile_sub_info {
    font-size: 12.5px;
    color: #777777;
    margin: 0;
}

.profile_sub_info .sep {
    color: #D1D5DB;
    margin: 0 4px;
}

.profile_actions {
    display: flex;
    gap: 8px;
}

.btn_profile_action {
    flex: 1;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #4B5563;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn_profile_action:hover {
    background-color: #E5E7EB;
    color: #111111;
}

.btn_profile_action.btn_logout {
    color: #EF4444;
    border-color: #FEE2E2;
    background-color: #FEF2F2;
}

.btn_profile_action.btn_logout:hover {
    background-color: #FEE2E2;
}

.btn_profile_action.btn_admin {
    color: #3B82F6;
    border-color: #DBEAFE;
    background-color: #EFF6FF;
}

/* 2. 핵심 혜택 및 현황 4열 그리드 */
.mypage_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.stat_card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 14px 4px;
    border: 1px solid #EDEDED;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.stat_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.stat_icon_wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.icon_point {
    background-color: #FFF2EB;
}

.icon_coupon {
    background-color: #E8F8F0;
}

.icon_order {
    background-color: #EFF6FF;
}

.icon_wish {
    background-color: #FEF2F2;
}

.stat_label {
    font-size: 11.5px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 3px;
    white-space: nowrap;
}

.stat_val {
    font-size: 14px;
    font-weight: 700;
    color: #121212;
    white-space: nowrap;
}

.stat_val small {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    margin-left: 1px;
}

/* 3. 공통 섹션 카드 */
.mypage_card_block {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid #EDEDED;
    box-sizing: border-box;
}

.card_block_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.card_block_title {
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    margin: 0;
    letter-spacing: -0.02em;
}

.btn_card_more {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12.5px;
    font-weight: 600;
    color: #888888;
    text-decoration: none;
    transition: color 0.15s;
}

.btn_card_more:hover {
    color: #FF5A00;
}

/* 주문 / 배송 스텝 프로그레스 */
.order_step_progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0 2px;
}

.step_node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 6px;
    flex: 1;
}

.node_circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F3F4F6;
    border: 1.5px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.node_circle.highlight {
    background-color: #FF5A00;
    border-color: #FF5A00;
    color: #FFFFFF;
    box-shadow: 0 3px 8px rgba(255, 90, 0, 0.25);
}

.node_title {
    font-size: 11.5px;
    font-weight: 600;
    color: #4B5563;
    white-space: nowrap;
}

.step_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    margin-bottom: 18px;
}

.order_cancel_bar {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #F3F4F6;
    text-align: right;
}

.order_cancel_bar a {
    font-size: 12px;
    color: #6B7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.order_cancel_bar strong {
    color: #EF4444;
    font-weight: 700;
}

/* 최근 주문 목록 */
.recent_order_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent_order_item {
    display: block;
    padding: 12px;
    background-color: #FAFAFA;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.15s;
}

.recent_order_item:hover {
    background-color: #F3F4F6;
}

.order_item_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.order_date {
    font-size: 11.5px;
    color: #888888;
    font-weight: 500;
}

.order_badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.order_badge.status_wait {
    background-color: #FEF3C7;
    color: #D97706;
}

.order_badge.status_paid {
    background-color: #DBEAFE;
    color: #2563EB;
}

.order_badge.status_prep {
    background-color: #EDE9FE;
    color: #7C3AED;
}

.order_badge.status_ing {
    background-color: #E0E7FF;
    color: #4F46E5;
}

.order_badge.status_done {
    background-color: #D1FAE5;
    color: #059669;
}

.order_badge.status_cancel {
    background-color: #FEE2E2;
    color: #DC2626;
}

.order_item_body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order_thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.order_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order_info {
    flex: 1;
    min-width: 0;
}

.order_prod_name {
    font-size: 13.5px;
    font-weight: 600;
    color: #121212;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order_prod_price {
    font-size: 13.5px;
    font-weight: 700;
    color: #FF5A00;
    margin: 0;
}

.order_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 최근 찜한 상품 그리드 */
.recent_wish_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.wish_grid_item {
    display: block;
    text-decoration: none;
    text-align: left;
}

.wish_item_thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F3F4F6;
    margin-bottom: 6px;
    border: 1px solid #EDEDED;
}

.wish_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wish_item_name {
    font-size: 11.5px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 2px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    line-height: 1.4;
}

.wish_item_price {
    font-size: 12px;
    font-weight: 700;
    color: #121212;
    margin: 0;
}

/* 빈 상태 */
.mypage_empty_box {
    text-align: center;
    padding: 24px 16px;
    background-color: #FAFAFA;
    border-radius: 12px;
    border: 1px dashed #E5E7EB;
}

.mypage_empty_box .empty_text {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.btn_empty_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #FF5A00;
    background-color: #FFF2EB;
    border: 1px solid #FFD8C2;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn_empty_action:hover {
    background-color: #FFE5D6;
}

/* 6. 쇼핑 및 계정 메뉴 그룹 */
.mypage_menu_section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu_group_box {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #EDEDED;
    box-sizing: border-box;
}

.menu_group_heading {
    font-size: 13px;
    font-weight: 700;
    color: #888888;
    margin: 0 0 10px 4px;
    letter-spacing: -0.02em;
}

.menu_link_rows {
    display: flex;
    flex-direction: column;
}

.menu_row_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.menu_row_link:last-child {
    border-bottom: none;
}

.menu_row_link .row_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu_row_link .row_left svg {
    flex-shrink: 0;
}

.menu_row_link:hover {
    color: #FF5A00;
}

.menu_row_link:hover svg {
    stroke: #FF5A00;
}

.row_badge {
    font-size: 12px;
    font-weight: 700;
    color: #FF5A00;
    background-color: #FFF2EB;
    padding: 2px 8px;
    border-radius: 12px;
}

.menu_leave_link {
    color: #9CA3AF;
    font-size: 13px;
}

.menu_leave_link:hover {
    color: #EF4444;
}

.menu_leave_link:hover svg {
    stroke: #EF4444;
}

/* ==========================================================================
   주문 / 배송 조회 (Order Inquiry List)
   ========================================================================== */
.sinseon_orderinquiry_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px 0 20px;
    box-sizing: border-box;
}

.order_page_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #121212;
}

.order_page_title {
    font-size: 22px;
    font-weight: 800;
    color: #121212;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.order_page_subtitle {
    font-size: 13px;
    color: #8E8E93;
    margin: 0;
}

.btn_back_mypage {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    background-color: #F4F5F7;
    color: #555555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_back_mypage:hover {
    background-color: #E5E7EB;
    color: #121212;
}

/* 상태 필터 탭 */
.order_filter_tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.order_filter_tabs::-webkit-scrollbar {
    height: 4px;
}

.order_filter_tabs::-webkit-scrollbar-thumb {
    background-color: #E5E7EB;
    border-radius: 4px;
}

.filter_tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter_tab .tab_count {
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    background-color: #F3F4F6;
    color: #6B7280;
}

.filter_tab:hover {
    border-color: #FF5A00;
    color: #FF5A00;
}

.filter_tab.active {
    background-color: #121212;
    border-color: #121212;
    color: #FFFFFF;
}

.filter_tab.active .tab_count {
    background-color: #FF5A00;
    color: #FFFFFF;
}

/* 기간 필터 바 */
.order_period_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F9FA;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #EFEFEF;
}

.period_label {
    font-size: 13px;
    font-weight: 700;
    color: #666666;
}

.period_btn_group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn_period {
    padding: 5px 12px;
    border-radius: 6px;
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    font-size: 12px;
    font-weight: 600;
    color: #555555;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn_period:hover {
    border-color: #FF5A00;
    color: #FF5A00;
}

.btn_period.active {
    background-color: #FF5A00;
    border-color: #FF5A00;
    color: #FFFFFF;
}

/* 주문 카드 목록 */
.order_card_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.sinseon_order_card {
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sinseon_order_card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #FAFAFA;
    border-bottom: 1px solid #EDEDED;
    gap: 12px;
}

.top_meta_info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666666;
    min-width: 0;
}

.order_date {
    font-weight: 700;
    color: #121212;
    white-space: nowrap;
}

.meta_divider {
    color: #D1D5DB;
}

.order_num {
    white-space: nowrap;
}

.order_num strong {
    color: #121212;
    font-weight: 700;
}

.top_status_badge {
    flex-shrink: 0;
}

.status_badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.badge_wait {
    background-color: #F3F4F6;
    color: #4B5563;
    border: 1px solid #E5E7EB;
}

.badge_paid {
    background-color: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.badge_prep {
    background-color: #FFF7ED;
    color: #EA580C;
    border: 1px solid #FED7AA;
}

.badge_ing {
    background-color: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.badge_done {
    background-color: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.badge_cancel {
    background-color: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

/* 주문 상품 목록 */
.card_items_wrap {
    padding: 16px 20px;
}

.ordered_product_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
}

.ordered_product_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ordered_product_item:first-child {
    padding-top: 0;
}

.item_thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F8F9FA;
    border: 1px solid #EFEFEF;
    flex-shrink: 0;
}

.item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_details {
    flex: 1;
    min-width: 0;
}

.item_title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item_title:hover {
    color: #FF5A00;
}

.item_option_info {
    font-size: 12px;
    color: #888888;
    margin-bottom: 6px;
}

.item_price_row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.item_price {
    font-weight: 700;
    color: #121212;
}

.item_qty {
    color: #666666;
    font-size: 13px;
}

.item_action_col {
    flex-shrink: 0;
}

.btn_item_sub {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    background-color: #FFFFFF;
    color: #555555;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn_item_sub:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    color: #121212;
}

/* 카드 푸터 */
.card_footer_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #FAFAFA;
    border-top: 1px solid #EDEDED;
}

.footer_price_info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pay_method_label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    background-color: #E5E7EB;
    padding: 2px 8px;
    border-radius: 4px;
}

.pay_total_label {
    font-size: 13px;
    color: #666666;
}

.pay_total_amount {
    font-size: 18px;
    font-weight: 800;
    color: #FF5A00;
}

.shipping_note {
    font-size: 12px;
    color: #9CA3AF;
}

.footer_actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn_order_action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn_track {
    background-color: #FFFFFF;
    border: 1px solid #D1D5DB;
    color: #374151;
}

.btn_track:hover {
    background-color: #F3F4F6;
    border-color: #9CA3AF;
}

.btn_primary_detail {
    background-color: #121212;
    color: #FFFFFF;
}

.btn_primary_detail:hover {
    background-color: #FF5A00;
}

/* 빈 상태 */
.sinseon_empty_orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EDEDED;
    text-align: center;
    margin-bottom: 24px;
}

.empty_icon {
    margin-bottom: 16px;
}

.empty_title {
    font-size: 18px;
    font-weight: 700;
    color: #121212;
    margin: 0 0 8px 0;
}

.empty_desc {
    font-size: 14px;
    color: #8E8E93;
    margin: 0 0 24px 0;
}

.btn_empty_shop {
    display: inline-block;
    padding: 12px 28px;
    background-color: #FF5A00;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn_empty_shop:hover {
    background-color: #E04E00;
}

/* 안내사항 박스 */
.order_notice_box {
    background-color: #FFF9F5;
    border: 1px solid #FFE4D6;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 10px;
    margin-bottom: 0;
}

.notice_title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #FF5A00;
    margin: 0 0 12px 0;
}

.notice_list {
    margin: 0;
    padding-left: 18px;
    color: #666666;
    font-size: 12.5px;
    line-height: 1.7;
}

.notice_list li {
    margin-bottom: 6px;
}

.notice_list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   주문조회 모바일 전용 미디어 쿼리 (반응형 최적화)
   ========================================================================== */
@media (max-width: 768px) {
    .sinseon_orderinquiry_wrap {
        padding: 14px 14px 0 14px;
    }

    .order_page_header {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .order_page_title {
        font-size: 18px;
    }

    .order_page_subtitle {
        font-size: 12px;
        line-height: 1.4;
    }

    .btn_back_mypage {
        padding: 6px 10px;
        font-size: 12px;
    }

    .order_filter_tabs {
        gap: 6px;
        padding-bottom: 6px;
        margin-bottom: 12px;
    }

    .filter_tab {
        padding: 6px 11px;
        font-size: 12px;
        gap: 4px;
    }

    .filter_tab .tab_count {
        font-size: 10px;
        padding: 1px 5px;
    }

    .order_period_bar {
        padding: 10px 12px;
        margin-bottom: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .period_label {
        font-size: 12px;
    }

    .period_btn_group {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .btn_period {
        text-align: center;
        padding: 6px 0;
        font-size: 11.5px;
    }

    /* 주문 카드 */
    .order_card_list {
        gap: 14px;
        margin-bottom: 24px;
    }

    .sinseon_order_card {
        border-radius: 12px;
    }

    /* 1. 헤더: 날짜/주문번호 좌측 스택 + 상태 뱃지 우측 수평 정렬 (절대 2줄 줄바꿈 방지) */
    .card_top_bar {
        padding: 12px 14px;
        gap: 8px;
        align-items: center;
    }

    .top_meta_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .top_meta_info .order_date {
        font-size: 13px;
        font-weight: 700;
    }

    .top_meta_info .meta_divider {
        display: none;
    }

    .top_meta_info .order_num {
        font-size: 11px;
        color: #8E8E93;
    }

    .top_status_badge .status_badge {
        font-size: 11.5px;
        padding: 4px 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 2. 주문 상품 목록 */
    .card_items_wrap {
        padding: 12px 14px;
    }

    .ordered_product_item {
        gap: 10px;
        padding: 10px 0;
    }

    .item_thumb {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }

    .item_title {
        font-size: 13.5px;
        margin-bottom: 2px;
    }

    .item_option_info {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .item_price_row {
        font-size: 12.5px;
        gap: 6px;
    }

    .btn_item_sub {
        padding: 5px 8px;
        font-size: 11px;
    }

    /* 3. 푸터: 결제금액 상단 + 액션 버튼 하단 100% 분할 (항상 1열 균등 배치) */
    .card_footer_bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
    }

    .footer_price_info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 6px;
    }

    .footer_price_info .pay_method_label {
        font-size: 11px;
        padding: 2px 6px;
    }

    .footer_price_info .pay_total_label {
        font-size: 12px;
        color: #888888;
        margin-left: auto;
    }

    .footer_price_info .pay_total_amount {
        font-size: 16px;
    }

    .footer_price_info .shipping_note {
        display: none;
    }

    .footer_actions {
        display: flex;
        width: 100%;
        gap: 8px;
    }

    .btn_order_action {
        flex: 1 1 0;
        justify-content: center;
        padding: 10px 0;
        font-size: 12.5px;
        border-radius: 8px;
        text-align: center;
        white-space: nowrap;
    }

    .btn_order_action svg {
        width: 13px;
        height: 13px;
        margin-right: 2px;
    }
}

/* ==========================================================================
   주문 상세 페이지 (Order Inquiry View)
   ========================================================================== */
.sinseon_orderdetail_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .sinseon_orderdetail_wrap {
        padding: 16px 16px 0 16px;
    }
}

.orderdetail_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #EDEDED;
}

.top_left_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.detail_date_txt {
    color: #666666;
    font-weight: 500;
}

.meta_dot {
    color: #CCCCCC;
}

.detail_orderno_txt {
    color: #121212;
}

.detail_orderno_txt strong {
    color: #FF5A00;
    font-weight: 700;
}

.btn_back_inquiry {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: 8px;
    background-color: #F4F5F7;
    color: #555555;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_back_inquiry:hover {
    background-color: #E5E7EB;
    color: #121212;
}

/* 배송 진행 상태 트래커 */
.detail_status_card {
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.status_tracker_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tracker_title {
    font-size: 16px;
    font-weight: 800;
    color: #121212;
    margin: 0;
}

.tracker_badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.step_badge_1 {
    background-color: #F3F4F6;
    color: #4B5563;
}

.step_badge_2 {
    background-color: #EFF6FF;
    color: #2563EB;
}

.step_badge_3 {
    background-color: #FFF7ED;
    color: #EA580C;
}

.step_badge_4 {
    background-color: #ECFDF5;
    color: #059669;
}

.step_badge_5 {
    background-color: #F0FDF4;
    color: #166534;
}

.status_tracker_stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

.track_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.step_circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F3F4F6;
    border: 2px solid #E5E7EB;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step_name {
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
}

.track_step.active .step_circle {
    background-color: #FF5A00;
    border-color: #FF5A00;
    color: #FFFFFF;
}

.track_step.active .step_name {
    color: #121212;
    font-weight: 700;
}

.track_step.current .step_circle {
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.2);
}

.track_line {
    flex: 1;
    height: 3px;
    background-color: #E5E7EB;
    margin: -24px 8px 0 8px;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.track_line.active {
    background-color: #FF5A00;
}

.tracker_invoice_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 20px;
    border: 1px solid #EFEFEF;
}

.invoice_info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.courier_name {
    font-weight: 700;
    color: #121212;
}

.invoice_num {
    color: #FF5A00;
    font-weight: 700;
}

.btn_view_tracking {
    padding: 6px 14px;
    border-radius: 6px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.btn_view_tracking:hover {
    background-color: #FF5A00;
}

/* 섹션 카드 */
.detail_section_card {
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.section_card_title {
    font-size: 16px;
    font-weight: 800;
    color: #121212;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #EDEDED;
}

/* 주문 상품 정보 상세 */
.detail_product_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail_product_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.detail_product_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prod_thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F8F9FA;
    border: 1px solid #EFEFEF;
    flex-shrink: 0;
}

.prod_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod_info {
    flex: 1;
    min-width: 0;
}

.prod_name {
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.prod_name:hover {
    color: #FF5A00;
}

.prod_option {
    font-size: 12px;
    color: #888888;
    margin: 0 0 6px 0;
}

.prod_calc_row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.unit_price {
    font-weight: 600;
    color: #444444;
}

.unit_sep,
.unit_equal {
    color: #9CA3AF;
}

.unit_qty {
    color: #666666;
}

.unit_total {
    font-weight: 800;
    color: #121212;
}

.prod_action_btn {
    flex-shrink: 0;
}

.btn_buy_again {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background-color: #FFFFFF;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_buy_again:hover {
    border-color: #FF5A00;
    color: #FF5A00;
}

/* 2열 그리드 */
.detail_split_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 800px) {
    .detail_split_grid {
        grid-template-columns: 1fr;
    }
}

/* 배송지 테이블 */
.info_table_wrap {
    width: 100%;
}

.info_table {
    width: 100%;
    border-collapse: collapse;
}

.info_table th {
    width: 90px;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    color: #888888;
    text-align: left;
    vertical-align: top;
}

.info_table td {
    padding: 10px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: #121212;
    line-height: 1.5;
}

/* 영수증 브레이크다운 */
.receipt_breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.receipt_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    color: #666666;
}

.receipt_row.discount {
    color: #EF4444;
}

.receipt_row .row_val {
    font-weight: 600;
}

.receipt_total_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 2px dashed #E5E7EB;
}

.receipt_total_row .total_label {
    font-size: 15px;
    font-weight: 800;
    color: #121212;
}

.receipt_total_row .total_val {
    font-size: 20px;
    font-weight: 900;
    color: #FF5A00;
}

.payment_method_box {
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
}

.pm_label {
    color: #888888;
}

.pm_val {
    color: #121212;
    font-weight: 600;
}

/* 하단 버튼들 */
.detail_bottom_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}

.btn_bottom_back {
    padding: 14px 28px;
    border-radius: 10px;
    background-color: #F3F4F6;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_bottom_back:hover {
    background-color: #E5E7EB;
}

.btn_bottom_shop {
    padding: 14px 28px;
    border-radius: 10px;
    background-color: #121212;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_bottom_shop:hover {
    background-color: #FF5A00;
}

@media (max-width: 768px) {
    .sinseon_orderdetail_wrap {
        padding: 14px 14px 0 14px;
    }

    .orderdetail_top_bar {
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .btn_back_list {
        width: 32px;
        height: 32px;
    }

    .detail_date_txt {
        font-size: 12px;
    }

    .detail_orderno_title {
        font-size: 16px;
    }

    .btn_back_inquiry {
        padding: 6px 12px;
        font-size: 12px;
    }

    .detail_status_card {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .status_tracker_header {
        margin-bottom: 16px;
    }

    .tracker_title {
        font-size: 14px;
    }

    .tracker_badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .status_tracker_stepper {
        padding: 0;
    }

    .step_circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .step_name {
        font-size: 10.5px;
    }

    .track_line {
        margin: -18px 4px 0 4px;
        height: 2.5px;
    }

    .tracker_invoice_bar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 12px;
    }

    .tracker_invoice_bar .invoice_info {
        justify-content: space-between;
    }

    .btn_view_tracking {
        text-align: center;
        padding: 8px 0;
    }

    .detail_section_card {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .section_card_title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .detail_product_item {
        gap: 10px;
        padding: 10px 0;
    }

    .prod_thumb {
        width: 60px;
        height: 60px;
    }

    .prod_name {
        font-size: 13.5px;
    }

    .prod_calc_row {
        font-size: 12.5px;
        flex-wrap: wrap;
    }

    .btn_buy_again {
        padding: 6px 12px;
        font-size: 12px;
    }

    .detail_split_grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 16px;
    }

    .detail_bottom_btns {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn_bottom_back,
    .btn_bottom_shop {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 13.5px;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   신선소비 통합 인페이지 모달 레이어 (Modal Layer Overlay)
   ========================================================================== */
.sinseon_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
}

.sinseon_modal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.sinseon_modal_dialog {
    width: 100%;
    max-width: 580px;
    height: 85vh;
    max-height: 800px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(16px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.sinseon_modal_overlay.active .sinseon_modal_dialog {
    transform: scale(1) translateY(0);
}

.sinseon_modal_iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background-color: #FFFFFF;
    flex: 1;
}

@media (max-width: 640px) {
    .sinseon_modal_overlay {
        padding: 0;
        align-items: flex-end;
    }

    .sinseon_modal_dialog {
        max-width: 100%;
        height: 92vh;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sinseon_modal_overlay.active .sinseon_modal_dialog {
        transform: translateY(0);
    }
}

/* ==========================================================================
   신선소비 프리미엄 로그인
   ========================================================================== */
.sinseon_auth_container,
#sinseon_login_wrap {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 0;
    margin-bottom: 0;
    box-sizing: border-box;
    background-color: transparent;
}

.sinseon_auth_card {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
}

/* 1. 상단 브랜드 헤더 */
.auth_header {
    text-align: center;
    margin-bottom: 24px;
}

.auth_logo_link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 4px;
}

.brand_point_badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #FF6B00;
    background: #FFF3EB;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.auth_title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.35;
}

.brand_highlight {
    color: #FF6B00;
}

.auth_subtitle {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* 2. 소셜 간편 로그인 버튼군 */
.social_login_section {
    margin-bottom: 22px;
}

.social_btn_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn_social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14.5px;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn_social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn_social .social_icon {
    position: absolute;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_social .social_text {
    color: inherit;
    font-size: 14.5px;
}

.btn_social .social_text strong {
    font-weight: 800;
}

/* 카카오 버튼 (대표) */
.btn_kakao {
    background-color: #FEE500;
    color: #191919;
    border: 1px solid #FEE500;
}

.quick_badge {
    position: absolute;
    right: 16px;
    background: #191919;
    color: #FEE500;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 12px;
}

/* 네이버 버튼 */
.btn_naver {
    background-color: #03C75A;
    color: #FFFFFF;
    border: 1px solid #03C75A;
}

/* 구글 버튼 */
.btn_google {
    background-color: #FFFFFF;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn_google:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
}

/* 3. 구분선 */
.auth_divider {
    display: flex;
    align-items: center;
    margin: 22px 0;
    gap: 12px;
}

.divider_line {
    flex: 1;
    height: 1px;
    background-color: #E5E7EB;
}

.divider_text {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
    white-space: nowrap;
}

/* 4. 일반 로그인 폼 */
.auth_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form_label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.input_wrap {
    position: relative;
    width: 100%;
}

.auth_input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14.5px;
    color: #111827;
    box-sizing: border-box;
    background-color: #FAFAFA;
    transition: all 0.2s ease;
}

.auth_input:focus {
    outline: none;
    border-color: #FF6B00;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.auth_input::placeholder {
    color: #9CA3AF;
    font-size: 13.5px;
}

.input_wrap.has_icon .auth_input {
    padding-left: 44px;
}

.input_icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.required_dot {
    color: #FF6B00;
    font-weight: 700;
    margin-left: 2px;
}

/* 캡챠 공통 스타일 */
.captcha_section {
    width: 100%;
    margin: 6px 0 4px;
}

fieldset#captcha {
    border: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

fieldset#captcha legend {
    display: none;
}

fieldset#captcha.recaptcha {
    overflow: hidden;
    max-width: 100%;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* kcaptcha 기본형 */
fieldset#captcha:not(.recaptcha) {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

#captcha_img {
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    margin: 0 auto 8px;
    display: inline-block;
}

#captcha_reload,
#captcha_mp3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 6px;
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    font-size: 12px;
    color: #4B5563;
    cursor: pointer;
    margin: 0 2px 8px;
}

#captcha_key {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
    background: #FFFFFF;
    box-sizing: border-box;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
}

#captcha_key:focus {
    outline: none;
    border-color: #FF6B00;
}

#captcha_info {
    font-size: 11.5px;
    color: #6B7280;
    margin-top: 6px;
    display: block;
    text-align: center;
}

.input_with_toggle .auth_input {
    padding-right: 46px;
}

.btn_pw_toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: color 0.2s ease;
}

.btn_pw_toggle:hover {
    color: #4B5563;
}

/* 본인인증 버튼 그룹 */
.cert_btn_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn_cert_action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    background-color: #FFFFFF;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_cert_action:hover {
    background-color: #F9FAFB;
    border-color: #9CA3AF;
}

.btn_cert_action.btn_cert_simple {
    background-color: #FEE500;
    color: #191919;
    border-color: #FEE500;
    font-weight: 700;
}

/* 안내 및 주의사항 카드 */
.auth_notice_card {
    margin-top: 22px;
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice_item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.5;
}

.notice_item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* 자동 로그인 옵션 */
.form_options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 2px;
}

.custom_checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.custom_checkbox input {
    accent-color: #FF6B00;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.custom_checkbox .checkbox_label {
    color: #4B5563;
    font-size: 13.5px;
    font-weight: 500;
}

/* 로그인 메인 버튼 (신선소비 오렌지) */
.btn_auth_submit {
    width: 100%;
    height: 50px;
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.22);
}

.btn_auth_submit:hover {
    background-color: #E65A00;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.32);
}

/* 5. 하단 서브 메뉴 링크 */
.auth_sub_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sub_link {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sub_link:hover {
    color: #111827;
    text-decoration: underline;
}

.sub_divider {
    font-size: 11px;
    color: #D1D5DB;
}

/* 6. 하단 회원가입 유도 배너 */
.auth_signup_promo_card {
    margin-top: 20px;
    background-color: #FFFDF9;
    border: 1px solid #FFE7D4;
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
}

.promo_header {
    margin-bottom: 14px;
}

.promo_tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #FF6B00;
    background-color: #FFF0E5;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.promo_title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.promo_desc {
    font-size: 12.5px;
    color: #6B7280;
    margin: 0;
}

.promo_desc strong {
    color: #111827;
}

.promo_btn_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn_promo_kakao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    background-color: #FEE500;
    color: #191919;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn_promo_kakao:hover {
    background-color: #F5DC00;
}

.promo_kakao_icon {
    display: flex;
    align-items: center;
}

.btn_promo_general {
    display: inline-block;
    font-size: 12.5px;
    color: #888888;
    text-decoration: underline;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.btn_promo_general:hover {
    color: #111827;
}

/* 7. 비회원 주문조회 & 구매 영역 */
.nonmember_inquiry_section,
.guest_order_section {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px dashed #E5E7EB;
}

.nonmember_title,
.guest_title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}

.nonmember_desc,
.guest_desc {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 14px;
    line-height: 1.5;
}

.guest_privacy_box {
    max-height: 120px;
    overflow-y: auto;
    padding: 12px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 12px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 12px;
}

.guest_agree_chk {
    margin-bottom: 14px;
}

.btn_nonmember_submit,
.btn_guest_submit {
    width: 100%;
    height: 48px;
    background-color: #374151;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* ==========================================================================
   신선소비 회원가입 (약관 및 정보입력) 스타일
   ========================================================================== */
.register_step_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.step_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
}

.step_item.active {
    color: #FF6B00;
    font-weight: 700;
}

.step_num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #F3F4F6;
    color: #9CA3AF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step_item.active .step_num {
    background-color: #FF6B00;
    color: #FFFFFF;
}

.step_divider_arrow {
    color: #D1D5DB;
    font-size: 11px;
}

/* 신규가입 혜택 안내 카드 */
.register_benefit_card {
    background: linear-gradient(135deg, #FFF6F0 0%, #FFFDF9 100%);
    border: 1px solid #FFE6D5;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.benefit_header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 10px;
}

.benefit_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit_row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #4B5563;
    line-height: 1.4;
}

.benefit_bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #FF6B00;
    flex-shrink: 0;
}

/* 약관 동의 영역 */
.terms_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.terms_all_agree_card {
    background-color: #FFF8F4;
    border: 1.5px solid #FFD4BC;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terms_all_agree_card:hover {
    border-color: #FF6B00;
}

.terms_all_agree_card .custom_checkbox .checkbox_label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.terms_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms_row {
    border: 1px solid #EDEDED;
    border-radius: 10px;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: border-color 0.2s;
}

.terms_row_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.btn_view_terms {
    font-size: 12px;
    color: #888888;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.btn_view_terms:hover {
    color: #111827;
}

.terms_content_box {
    display: none;
    padding: 14px 16px;
    background-color: #F9FAFB;
    border-top: 1px solid #EDEDED;
    font-size: 12px;
    color: #4B5563;
    line-height: 1.6;
    max-height: 150px;
    overflow-y: auto;
}

.terms_content_box.open {
    display: block;
}

.terms_content_box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
    font-size: 11.5px;
}

.terms_content_box th,
.terms_content_box td {
    border: 1px solid #E5E7EB;
    padding: 6px 8px;
    text-align: left;
}

.terms_content_box th {
    background-color: #F3F4F6;
    font-weight: 600;
    color: #374151;
}

/* 회원정보 입력 폼 스타일링 */
.form_section_title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 24px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form_section_title:first-child {
    margin-top: 0;
}

.input_btn_group {
    display: flex;
    gap: 8px;
}

.input_btn_group .auth_input {
    flex: 1;
}

.btn_form_action {
    height: 48px;
    padding: 0 16px;
    background-color: #374151;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.btn_form_action:hover {
    background-color: #1F2937;
}

.form_field_hint {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
    line-height: 1.4;
}

.form_field_hint.success {
    color: #10B981;
}

.form_field_hint.error {
    color: #EF4444;
}

@media (max-width: 480px) {
    .sinseon_auth_container,
    #sinseon_login_wrap {
        padding: 20px 16px 0;
        margin-bottom: 0;
    }

    .sinseon_auth_card {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .auth_title {
        font-size: 20px;
    }
}

/* ==========================================================================
   상단 이동 플로팅 버튼 (Back to Top Button)
   ========================================================================== */
.btn_scroll_top {
    position: fixed;
    bottom: 86px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #121212;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 840;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s, background-color 0.15s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.btn_scroll_top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn_scroll_top:hover {
    background-color: #F8F8F8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    color: #000000;
}

.btn_scroll_top:active {
    transform: scale(0.92);
}

/* ==========================================================================
   신선소비 컨텐츠 / 약관 및 정책 페이지 (Terms & Privacy Content)
   ========================================================================== */
.sinseon_policy_container {
    width: 100%;
    padding: 20px 16px 50px;
    box-sizing: border-box;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #334155;
}

/* 1. 상단 탭 네비게이션 */
.policy_tabs_nav {
    display: flex;
    background-color: #F1F5F9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px;
}

.policy_tab_btn {
    flex: 1;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy_tab_btn:hover {
    color: #0F172A;
}

.policy_tab_btn.is_active {
    background-color: #FFFFFF;
    color: #FF5A00;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* 2. 헤더 타이틀 영역 */
.policy_header_box {
    margin-bottom: 24px;
    padding: 4px 2px;
}

.policy_header_box .header_title_row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.policy_header_box .policy_page_title {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.policy_header_box .policy_version_chip {
    font-size: 11.5px;
    font-weight: 700;
    color: #FF5A00;
    background-color: #FFF2EB;
    border: 1px solid #FFE0D1;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: -0.01em;
}

.policy_header_box .policy_page_desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.policy_header_box .policy_date_tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #94A3B8;
    background-color: #F8FAFC;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}

/* 3. 본문 뷰어 카드 */
.policy_content_card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 20px;
    box-sizing: border-box;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

/* 조항 섹션 블록 (h2 제목 위/아래 넉넉한 공간) */
.policy_section {
    margin-top: 36px;
    margin-bottom: 0;
}

.policy_section:first-child {
    margin-top: 0;
}

/* 조항 h2 제목 */
.policy_sec_title {
    font-size: 15.5px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.policy_sec_title::before {
    content: '';
    width: 4px;
    height: 16px;
    background-color: #FF5A00;
    border-radius: 2px;
    flex-shrink: 0;
}

/* 본문 문단 */
.policy_paragraph {
    font-size: 13.5px;
    line-height: 1.9;
    color: #475569;
    margin: 0 0 14px 0;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

.policy_paragraph strong {
    color: #0F172A;
    font-weight: 700;
}

/* ol 순서 리스트 (숫자가 왼쪽에 붙지 않고 시원하고 정확한 들여쓰기와 상하 간격) */
.policy_ol {
    list-style: none;
    counter-reset: policy-counter;
    padding-left: 0;
    margin: 12px 0 16px 0;
}

.policy_ol > li {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 14px;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

.policy_ol > li:last-child {
    margin-bottom: 0;
}

.policy_ol > li::before {
    counter-increment: policy-counter;
    content: counter(policy-counter) ".";
    position: absolute;
    left: 4px;
    top: 0;
    font-weight: 800;
    color: #0F172A;
    font-size: 13.5px;
    width: 20px;
}

/* ul 불릿 리스트 */
.policy_ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 16px 0;
}

.policy_ul > li {
    position: relative;
    padding-left: 20px;
    font-size: 13.5px;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 10px;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

.policy_ul > li:last-child {
    margin-bottom: 0;
}

.policy_ul > li::before {
    content: '•';
    position: absolute;
    left: 4px;
    top: -1px;
    color: #FF5A00;
    font-size: 16px;
    font-weight: bold;
}

.policy_ul > li strong {
    color: #0F172A;
    font-weight: 700;
}

/* 하위 서브 리스트 (가나다/대시) */
.policy_sub_list {
    list-style: none;
    padding-left: 4px;
    margin: 8px 0 6px 0;
    background-color: #F8FAFC;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #EDF2F7;
}

.policy_sub_list > li {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
    word-break: keep-all;
}

.policy_sub_list > li:last-child {
    margin-bottom: 0;
}

.policy_sub_list > li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #94A3B8;
    font-weight: bold;
}

/* 표 (Table) 디자인 */
.policy_table_wrap {
    width: 100%;
    overflow-x: auto;
    margin: 16px 0 20px 0;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    -webkit-overflow-scrolling: touch;
}

.policy_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: left;
}

.policy_table th,
.policy_table td {
    padding: 12px 14px;
    border-bottom: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    line-height: 1.65;
    word-break: keep-all;
}

.policy_table th:last-child,
.policy_table td:last-child {
    border-right: none;
}

.policy_table tr:last-child td {
    border-bottom: none;
}

.policy_table th {
    background-color: #F8FAFC;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
}

.policy_table td {
    color: #475569;
}

/* 강조 콜아웃 박스 */
.policy_callout {
    background-color: #FFF9F5;
    border-left: 4px solid #FF5A00;
    border-radius: 0 12px 12px 0;
    padding: 16px 18px;
    margin: 16px 0 20px 0;
    border-top: 1px solid #FFEFE5;
    border-right: 1px solid #FFEFE5;
    border-bottom: 1px solid #FFEFE5;
}

.policy_callout p {
    font-size: 13px;
    color: #9A3412;
    line-height: 1.75;
    margin: 0;
    word-break: keep-all;
}

.policy_callout strong {
    color: #7C2D12;
    font-weight: 700;
}

/* 4. 하단 고객센터 간편 배너 */
.policy_cs_card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cs_info_left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cs_title {
    font-size: 12.5px;
    color: #64748B;
}

.cs_tel {
    font-size: 14.5px;
    font-weight: 800;
    color: #0F172A;
}

.btn_policy_qa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #FF5A00;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 10px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.2s;
    box-shadow: 0 2px 6px rgba(255, 90, 0, 0.2);
}

.btn_policy_qa:hover {
    background-color: #E04E00;
}

@media (max-width: 480px) {
    .sinseon_policy_container {
        padding: 14px 12px 40px;
    }
    .policy_content_card {
        padding: 20px 14px;
    }
    .policy_sec_title {
        font-size: 14.5px;
    }
    .policy_ol > li,
    .policy_ul > li,
    .policy_paragraph {
        font-size: 13px;
    }
    .policy_ol > li {
        padding-left: 24px;
    }
    .policy_cs_card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn_policy_qa {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   #ctt & #ctt_con 내용관리(HTML) 범용 완벽 스타일링
   ========================================================================== */
#sinseon_container:has(#ctt),
#sinseon_container:has(.ctt_provision),
#sinseon_container:has(.ctt_privacy),
#sinseon_container:has(.sinseon_policy_container) {
    background-color: #F8F9FA !important;
}

#ctt {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 16px 40px;
    background-color: #F8F9FA;
    box-sizing: border-box;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #334155;
}

.ctt_admin {
    text-align: right;
    margin-bottom: 12px;
}

#ctt header h1 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.ctt_policy_tabs {
    display: flex;
    background-color: #F1F5F9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}

.ctt_policy_tab_btn {
    flex: 1;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.2s ease;
}

.ctt_policy_tab_btn:hover {
    color: #0F172A;
}

.ctt_policy_tab_btn.is_active {
    background-color: #FFFFFF;
    color: #FF5A00;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#ctt_con {
    background-color: #FFFFFF;
    border: 1px solid #ECEEF2;
    border-radius: 16px;
    padding: 26px 20px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    line-height: 1.85;
    font-size: 13.5px;
}

#ctt_con img {
    max-width: 100%;
    height: auto;
}

.ctt_img {
    text-align: center;
}

#ctt_con h2 {
    font-size: 15.5px;
    font-weight: 800;
    color: #0F172A;
    margin: 36px 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

#ctt_con h2:first-of-type,
#ctt_con > h2:first-child {
    margin-top: 4px;
}

#ctt_con h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background-color: #FF5A00;
    border-radius: 2px;
    flex-shrink: 0;
}

#ctt_con p {
    font-size: 13.5px;
    line-height: 1.9;
    color: #475569;
    margin: 0 0 14px 0;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

#ctt_con p strong,
#ctt_con strong {
    color: #0F172A;
    font-weight: 700;
}

#ctt_con ol {
    list-style: none !important;
    counter-reset: policy-ol-count;
    padding-left: 0 !important;
    margin: 12px 0 18px 0 !important;
}

#ctt_con ol > li {
    position: relative !important;
    padding-left: 28px !important;
    font-size: 13.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 12px;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

#ctt_con ol > li:last-child {
    margin-bottom: 0;
}

#ctt_con ol > li::before {
    counter-increment: policy-ol-count;
    content: counter(policy-ol-count) ".";
    position: absolute;
    left: 4px;
    top: 0;
    font-weight: 800;
    color: #0F172A;
    font-size: 13.5px;
    width: 20px;
    text-align: left;
}

#ctt_con ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 12px 0 18px 0 !important;
}

#ctt_con ul > li {
    position: relative !important;
    padding-left: 18px !important;
    font-size: 13.5px;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 8px;
    word-break: keep-all;
    letter-spacing: -0.015em;
}

#ctt_con ul > li:last-child {
    margin-bottom: 0;
}

#ctt_con ul > li::before {
    content: '•';
    position: absolute;
    left: 2px;
    top: -1px;
    color: #FF5A00;
    font-size: 15px;
    font-weight: bold;
}

#ctt_con table,
#ctt_con .table_policy {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 16px 0 20px 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #E2E8F0 !important;
    font-size: 12.5px;
    text-align: left;
    background-color: #FFFFFF;
}

#ctt_con table th,
#ctt_con table td,
#ctt_con .table_policy th,
#ctt_con .table_policy td {
    padding: 12px 14px !important;
    border-bottom: 1px solid #E2E8F0 !important;
    border-right: 1px solid #E2E8F0 !important;
    line-height: 1.65;
    word-break: keep-all;
}

#ctt_con table th:last-child,
#ctt_con table td:last-child,
#ctt_con .table_policy th:last-child,
#ctt_con .table_policy td:last-child {
    border-right: none !important;
}

#ctt_con table tr:last-child td,
#ctt_con .table_policy tr:last-child td {
    border-bottom: none !important;
}

#ctt_con table th,
#ctt_con .table_policy th {
    background-color: #F8FAFC !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    white-space: nowrap;
}

#ctt_con table td,
#ctt_con .table_policy td {
    color: #475569 !important;
}

#ctt_con .policy_box_highlight,
#ctt_con .policy_callout {
    background-color: #FFF9F5 !important;
    border: 1px solid #FFEFE5 !important;
    border-left: 4px solid #FF5A00 !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 16px 18px !important;
    margin: 20px 0 !important;
    font-size: 13px !important;
    color: #9A3412 !important;
    line-height: 1.8 !important;
    word-break: keep-all !important;
}

#ctt_con .policy_box_highlight strong,
#ctt_con .policy_callout strong {
    color: #7C2D12 !important;
    font-weight: 700 !important;
}

@media (max-width: 480px) {
    #ctt {
        padding: 14px 12px 40px;
    }
    #ctt_con {
        padding: 20px 14px;
    }
    #ctt_con h2 {
        font-size: 14.5px;
        margin-top: 28px;
    }
    #ctt_con p,
    #ctt_con ol > li,
    #ctt_con ul > li {
        font-size: 13px;
    }
    #ctt_con ol > li {
        padding-left: 24px !important;
    }
}