/* 네비게이션 셀픽 이용중 */
    /*.lnb_wrap2 .depth2_ul li[data-menu="B_1"] {
        position: relative;
            padding: 14px 0px;
    }*/
    
    .new-box {
        background-color: #e74c3c;
        color: white;
        padding: 6px 5px;
        border-radius: 3px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        line-height: 1;
    }

.layer-overlay {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 투명도 조절 (0.0 ~ 1.0) */
    z-index: 999;
}
/* 레이어 팝업 */
.layer {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 326px;
    text-align: center;
    z-index: 1000; /* 팝업이 배경보다 위에 위치 */
}
/* 닫기 버튼 */
.close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.layer h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.layer p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
@keyframes lineExpand {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes expand {
  from { width: 0; left: 50%; }
  to { width: 100%; left: 0; }
}
@keyframes slideIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.intro-section,.intro-section0 {
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.intro-section.show,.intro-section0.show {
    opacity: 1;
    transform: translateY(0);
}
.intro-header {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);

    transition: opacity 0.6s ease-out, 
                transform 0.6s ease-out, 
                filter 0.6s ease-out; 
}
.intro-header.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* 가이드 박스 */
.guide-icon {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guide-box:hover .guide-icon {
    transform: scale(1.05);
}

.guide-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.guide-box:hover .guide-icon:before {
    left: 100%;
}


/* 토글 스위치*/
.toggle-switch {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
}

.toggle-switch:before {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toggle-switch:hover {

}

.toggle-switch:active {
    transform: translateY(0);
}



.sell-link {
    display: inline-block;
    color: #337ab7;
    position: relative;
    text-decoration: none !important;
    font-weight: 600;
    outline: none !important;
    border: none !important; 
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.sell-link:hover, 
.sell-link:focus,  
.sell-link:active {
    outline: none !important;
    outline-offset: 0;
    text-decoration: none !important; 
    border: none !important;
    box-shadow: none !important; 
}

.caution-box p a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (prefers-reduced-motion: no-preference) {
    
    .intro-section:nth-child(1) { animation: slideUp 0.6s ease-out 0.1s forwards; }
    .intro-section:nth-child(2) { animation: slideUp 0.6s ease-out 0.2s forwards; }
    .intro-section:nth-child(3) { animation: slideUp 0.6s ease-out 0.3s forwards; }
    .intro-section:nth-child(4) { animation: slideUp 0.6s ease-out 0.4s forwards; }
    .intro-section:nth-child(5) { animation: slideUp 0.6s ease-out 0.5s forwards; }
    .intro-section:nth-child(6) { animation: slideUp 0.6s ease-out 0.6s forwards; }
    
    .intro-section0 { opacity: 0; animation: slideUp 0.6s ease-out 0.05s forwards; }
}


.subtab-item:focus, 
.toggle-switch:focus,
.caution-box p a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}


@media print {
    .subtab-container {
        display: none;
    }
    
    .intro-section0, .intro-section {
        opacity: 1 !important;
        transform: none !important;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .feature-box, .guide-box, .caution-box, .management-box {
        page-break-inside: avoid;
    }
}


.sellpick-text {
     text-align: center;
     margin: 20px 0;
 }

 .sellpick-h2 {
     font-size: 30px;
     font-weight: 600;
     margin-bottom: 20px;
 }
.mypage-wrap2 {
    display: flex;
    gap: 20px;
}

.intro-header h1 {
    font-size: 30px;
    font-weight: 700;
}


.feature-box h3, 
.caution-box h3 {
    font-size: 26px;
    font-weight: 600;
    line-height:  1.4;
}
.management-box h3{
    font-size: 24px;
}
.guide-box h4{
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
}
.info-number{
    font-size: 16px;
    line-height: 1.7;
    color:#ADADAD;
    font-weight: bold;
}
.intro-header p {
    font-size: 16px;
    line-height: 1.7;

} 
.intro-header p {
    font-size: 16px;
    line-height: 1.7;
}
.method p a {
    font-size: 16px;
    
}
.intro-section p,.intro-section0 p {
    font-size: 17px;
    line-height: 1.7;
}

.feature-box li {
    font-size: 16px;
    line-height: 1.6;
    color:#666;
}

.guide-box p {
    font-size: 16px;
    line-height: 1.6;
}

.caution-box p {
    font-size: 16px;
    line-height: 1.6;
}
.caution-box:nth-child(2){
    border-top: 1px solid #ddd;
    padding-top:24px;
}
.product-description {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;

}
.product-description li{
    list-style:disc;
}
.product-table th {
    font-size: 16px;
}

.product-table td {
    font-size: 14px;
}
.sm-red-button,.chat-button, .off-chat-button,.sm-pick-button,.sm-off-button{
    font-size:12px;
}

.pick-button,
.red-button,
.toggle-switch,
.status-on {
    font-size: 16px;
}

.subtab-menu {
    font-size: 16px;
}
.note-wrap .note{
    font-size:16px;
}

@media (max-width: 768px) {
    h1, h2, h3 {
        text-align: center;
        margin: 24px 0 12px 0;
        
    }    
    .intro-header h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .feature-box h3, 
    .guide-box h4, 
    .caution-box h3,
    .management-box h3 {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
    }
    .intro-section,.intro-section0{
        padding: 0!important;
    }
    .intro-header{
        padding: 0 0 20px 0;
        margin-bottom: 0!important;
    }
    .intro-header p,
    .intro-section p,
    .intro-section0 p,
    .feature-box li,
    .method p a {
        font-size: 14px;
    }
    
    .guide-box p,
    .caution-box p,
    .product-description {
        font-size: 14px;
    }
    
    .product-table th,
    .product-table td {
        font-size: 13px;
    }
    .subtab-menu{font-size:14px;}
    .note-wrap .note{
        font-size:12px;
    }
    .red-button,.pick-button, .chat-button, .toggle-switch, .status-on {
        font-size:12px; letter-spacing: -1px;
    }
    .toggle-switch {
        font-size: 14px;
    }
}

.intro-header {
padding: 0 0 20px 0;
/*margin-bottom: 30px;*/
text-align: center;
}
.intro-header h1{
margin: 0 0 20px 0;
}
.intro-header p {
color: #666;
max-width: 800px;
margin: 0 auto;
}
.method p a {color:#444!important;}

/* 서브탭 */     
.subtab-container {
width: 900px;
max-width: 900px;
margin: 0 auto;
opacity: 1;
transform: translateY(0);
transition: all 0.8s ease;    
}
.subtab-container.visible {
opacity: 1;
transform: translateY();
}
.subtab-menu {
display: flex;
flex-wrap: wrap;
/*margin-bottom: 40px;*/
}

.subtab-item {
flex: 1;
min-width: calc(25% - 8px);
padding: 14px 8px;
text-align: center;
cursor: pointer;
color: #444;

font-weight: 600;
transition: all 0.3s ease;
border: 1px solid #ddd;
position: relative;
background: #fff;
}
.subtab-item:hover {
border-color: #666;
color: #333;
}
.subtab-item.active {
background: #333;
color: #fff;
border-color: #333;
font-weight: 500;
}

.screen {
    width: 100%;
    text-align: center;
    position: relative;
}


/* tab 이미지 화면 */
.tab-nav {
  margin-bottom: 20px;
}
.tab-wrap{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}
.pc-wrap h4,.mobile-wrap h4{
    font-weight: 600;
    margin-right:8px;
    width: 120px;
}
.pc-wrap,.mobile-wrap{
    display:flex;
    align-items: center;
}
.tab-btn {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background-color: #eee;
  color: #333;
  cursor: pointer;
  border-radius: 24px;
}
.tab-btn.active {
  background-color: #333;
  color: white;
}
.tab-content {
  display: none;
  text-align: center;  
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}
.tab-content img{
    border-radius: 6px;
}

.wrap-img{
    border-radius: 9px;
    background-color: #f9f9f9;
    padding: 36px;
}

/* 상품소개 */
.intro-section0, 
.intro-section {
    padding: 20px 0;
    text-align: center;
}
.intro-section .wrap-txt{
    background-color: #f9f9f9;
    padding: 36px;
    border-radius: 9px;
}
/* 형광펜 밑줄 효과 */
.highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 3px; 
    z-index: 1;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 100%;
    height: 8px;
    background-color: yellow;
    opacity: 0.7;
    z-index: -1;
}
.highlight02 {
    position: relative;
    display: inline-block;
    padding-bottom: 3px; 
    z-index: 1;
}

.highlight02::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    opacity: 0.5;
    z-index: -1;
}

.intro-section0 p, .intro-section p {
    /*max-width: 800px;*/
    margin: 0 auto;
}

/* 상품특징 */
.features {
    padding:36px;
    border-radius: 9px;
    background-color: #f9f9f9;
}
.wrap-features{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
}
.feature-box {
flex: 0 0 calc(50% - 10px);
background: #fff;
padding: 30px;
border-radius: 6px;
position: relative;
}

.feature-box h3 {
    margin-top: 0;
    text-align: left;
    /*height: 70px;*/
}

/*.free-benefit b{
    font-size: 20px;
}*/
.feature-box ul {
    list-style-type: none;
    margin-top: 15px;
}
.feature-box li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}
.feature-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}
.note-wrap{
    width: 100%;

    color: #888;
    /*margin-top: 10px;*/
}
.note{
    text-align: right;
} 
/* 사용안내 */
.usage-guide {
    padding:36px;
    border-radius: 9px;
    background-color: #f9f9f9;
}
.guide-boxes {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    gap:19px;
}


.guide-box {

    flex: 0 0 31.833333%;
    text-align: center;
    background: #fff;        
    padding:20px 10px;
    border-radius: 6px;
}
.guide-icon {
    width: 140px;
    height: 140px;
    background-color: #E6E6E6;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-button,.pick-button {
    background-color: #00C73C;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}
.sm-red-button {
    background-color: #00C73C;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
}

.chat-button {
  display: inline-flex;
  justify-content: center;
  align-items: center; 
  background-color: #2ecc71;
  color: white;
  padding: 4px 8px;
  border-radius: 28px;

}

.chat-button::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    margin: 0px 3px -1px;
}
.off-chat-button {
     display: inline-flex;
    justify-content: center;
    align-items: center; 
    background-color: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 28px;
    margin: 4px 0;
}
.off-chat-button::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    margin: 0px 3px -1px;
}
.sm-pick-button{
    background-color: #00C73C;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
}
.sm-off-button{
    background-color: #666666;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
}
.guide-box h4 {
    margin: 10px 0;

}
.guide-box p {
    color: #666;
}

/* 주의사항 */
.caution {
    padding:36px;
    background-color: #f9f9f9;
    border-radius: 9px;
    margin-bottom:50px;
}
.caution-box {

}
.caution-box:nth-child(1){
    padding-bottom: 24px;
}
.caution-box h3 {
    text-align: left;
    margin-top: 0;
    margin-bottom:12px;
}
.caution-box p {
    color: #666;
    text-align: left;
}
.vip-gold {
    color: #D4AF37;
    font-weight: bold;
}
.vip-purple {
    color: #9A55E7;
    font-weight: bold;
}
.channel-list {
    margin: 10px 0;
}
.channel-item {
    color: #3498db;
    /*margin-right: 10px;*/
    display: inline-block;
}

/* 셀픽 관리 */

.selfpick-management {
    margin-bottom: 30px;
}

.management-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.warp-management-box{
    background-color: #f5f5f5;
    padding: 62px 36px;
    border-radius: 9px;
}
.warp-management-box3{
    background-color: #f5f5f5;
    padding: 62px 56px;
    margin-top: 20px;
    border-radius: 9px;
}
.management-box {
    flex: 0 0 calc(50% - 10px);


    border-radius: 5px;
    position: relative;
}
.ticket-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.ticket-image {
    width: 200px;
    height: auto;
    margin-bottom: 15px;
}
.management-box h3 {
    /*text-align: left;*/
    margin-bottom: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.product-info{
    text-align: center;
}
.usage-period {
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.toggle-switch {
    position: relative;
    background-color: #00c73c; 
    box-shadow: 4px 4px 4px rgba(1, 1, 1, 0.1);
    color: white;
    padding: 10px 40px 10px 15px; 
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    width: 160px;
    justify-content: center;
    box-sizing: border-box; 
}


.toggle-switch::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 8px;
    transition: all 0.3s ease;
}


.toggle-switch.off {
    background-color: #DB0505;
    color: #fff;
    padding: 10px 15px 10px 40px;
    justify-content: center; 
}

.toggle-switch.off::before {
    left: 8px; 
    right: auto; 
}

/* 셀픽 적용중인 판매상품 */
.applied-products {
    margin-bottom: 30px;
}
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.product-table th {
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 600;
}
.product-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}
.product-image {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.status-on {
    background-color: #2ecc71;
    color: #fff;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
}
.status-on ,.status-on:hover,.status-on:active{
    color:#fff!important; text-decoration: none!important;
}
.layout2{padding:0}

    @media screen and (max-width: 1213px) {
        .guide-boxes {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        }
    }
    @media screen and (max-width: 1024px) {
    .subtab-container {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    .layout2{
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .guide-box {
        flex: 0 0 31.333333%;
        text-align: center;
        background: #fff;
        padding: 20px 10px;
        border-radius: 6px;
    }
    }

    @media (max-width: 768px) {
    .highlight02::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    opacity: 0.5;
    z-index: -1;
}
    
    .feature-box h3{
        /*height:36px;*/
    } 
    .tab-wrap{

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    }
    .pc-wrap,.mobile-wrap{
        display:flex;
            align-items: center;
            height: 40px;
    }
    .pc-wrap h4,.mobile-wrap h4{
    font-weight: 600;
    margin-right:8px;
    width: 80px;
    }   
    .wrap-img {padding:24px 16px;}    
    .tab-btn.active {
    background-color: #333;
    color: white;
    }
    .tab-btn {
    padding: 4px 8px;
    margin: 4px;
    border: none;
    background-color: #eee;
    color: #333;
    cursor: pointer;
    border-radius: 19px;
    font-size:12px;
    }        
    .features,.usage-guide{padding:24px 16px;}
    .feature-box{padding:24px 16px;}
    .caution {padding:24px 16px;}
    .feature-box {
        flex: 0 0 100%;
    }    
    .intro-section .wrap-txt{
        padding: 24px 16px;
    }

    .guide-boxes {
        gap:16px;
    }
    .guide-box {
        flex: 0 0 100%;
        padding: 20px 15px;
        display: flex;
        text-align: left; 
        align-items: flex-start; 
    }
    .guide-icon {
        width: 88px;
        height: 88px;
        margin: auto 15px auto 0;
        flex-shrink: 0;    
        background-color: #E6E6E6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

    }        
    .guide-icon img{
        width:34px;
    }
    .red-button {
        background-color: #2ecc71;
        color: white;
        padding: 5px 8px;
        border-radius: 3px;
    }        
    .pick-button {
        background-color: #e74c3c;
        color: white;
        padding: 5px 8px;
        border-radius: 3px;
    }    
    .chat-button {
        background-color: #2ecc71;
        color: white;
        padding:2px 8px;
        border-radius: 28px;
    }
      
    
    .off-chat-button {
        padding:2px 8px;
        border-radius: 28px;
        margin: 4px 0;        
    }
     .text-content {
        flex: 1;
        text-align: left; 
    }
    .guide-box .info-number {
        text-align: left; /* 좌측 정렬 */
        margin-bottom: 5px;
        font-size: 14px;
        color: #ADADAD;
    } 
    .guide-box h4 {
        text-align: left; /* 좌측 정렬 */
        margin: 0 0 8px 0;
        font-size: 16px;
    }
    .guide-box p {
        text-align: left; /* 좌측 정렬 */
        font-size: 14px;
        margin: 0;
    }
    .management-box {
        flex: 0 0 100%;
    }
    .management-box:nth-child(1){
        padding: 0!important;
    }
    .toggle-container {
        margin: 0 auto;
        margin-top: 0px;
    }
    .wrap-features{gap:16px;}

    .layout2{padding:0 15px;}

    .subtab-container {

        width: 100%;
        max-width: auto;
        margin: 0 auto;
    }
    .subtab-menu {
        /*margin-bottom: 54px;*/
    }
    .subtab-item {
        flex: 1 1 calc(31% - 3px);
        min-width: calc(31% - 3px);

        padding: 12px 8px;
    }

    .product-table {
        font-size: 12px;
    }
    .product-table th, .product-table td {
        padding: 8px 5px;
    }

    /* 테이블 */
    .product-table th:nth-child(1), 
    .product-table td:nth-child(1) {

        width: 80px;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-table th:nth-child(2), 
    .product-table td:nth-child(2) {
        width: 40px;
        min-width: 40px;
    }

    .product-table th:nth-child(3), 
    .product-table td:nth-child(3) {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-table th:nth-child(4), 
    .product-table td:nth-child(4),
    .product-table th:nth-child(5), 
    .product-table td:nth-child(5) {
        width: 70px;
        min-width: 70px;
    }

    .product-table th:nth-child(6), 
    .product-table td:nth-child(6) {
        width: 40px;
        min-width: 40px;
    }

    .product-table th, 
    .product-table td {
        padding: 8px 4px;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .status-on {
        padding: 2px 6px;
        font-size: 11px;
    }        

    .ticket-image {
        width: 150px;
    }

    .management-box:last-child{
        padding: 16px 0 0 0;
    }
    .management-grid{
        gap: 0px;
    }
    .management-box {
        padding: 0;
    }
    .warp-management-box{
        padding: 24px 16px!important;
        }

    .warp-management-box3{
        padding: 24px 46px!important;
        margin-top:16px!important;
    }
    .applied-products {
        margin-bottom: 36px!important;   
    }
     .management-box h3 {
         margin: 0 0 16px;
    }
    .selfpick-management{
        margin-bottom:0;
    }
    .product-table{
        margin-top:0px;
    }
    .screen img.desktop {
        display: none;
    }
    .screen img.mobile {
        display: block;
    }
      
    /* 기본 컨테이너 최적화 */
    .container.default {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    overflow-x: hidden;
    }

    /* 마이페이지 콘텐츠 영역 최적화 */
    .mypage-main-cont2.layout2 {
    width: 100%;
    padding: 0 10px;
    overflow-x: hidden;
    }

    /* 테이블 최적화 */
    .product-table {
    font-size: 11px;
    min-width: 100%;
    table-layout: fixed;
    }

    /* 테이블 컬럼 너비 조정 */
    .product-table th:nth-child(1), 
    .product-table td:nth-child(1) {
    width: 55px;
    }

    .product-table th:nth-child(3), 
    .product-table td:nth-child(3) {
    width: 70px;
    }

    .product-table th:nth-child(2), 
    .product-table td:nth-child(2) {
    width: 40px;
    }

    }

    @media (max-width: 480px) {
        .product-table th:nth-child(1), 
        .product-table td:nth-child(1) {
            width: 60px;
            max-width: 60px;
        }

        .product-table th:nth-child(3), 
        .product-table td:nth-child(3) {
            max-width: 80px;
        }

        .product-table th:nth-child(4), 
        .product-table td:nth-child(4),
        .product-table th:nth-child(5), 
        .product-table td:nth-child(5) {
            width: 64px;
            min-width: 60px;

        }
        .product-image img {
            width: 30px !important;
            height: 30px !important;
        }
        .applied-products {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .product-table {
            min-width: 400px;
        }

      .feature-box h3,
      .guide-box h4,
      .caution-box h3,
      .management-box h3 {
        font-size: 16px;
      }

      .guide-icon {
      }

      .chat-button::after {
        width: 12px;
        height: 12px;
      }
    }