html.is-iframe #header {
    display: none !important;
}

#siteContainer button {
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif !important;
}

#wrap {
    max-width: 700px !important;
    min-width: 320px !important;
}

body.popup-open {
    overflow: hidden;
}

/* Logged-in user section styles */
.logged-in-profile-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logged-in-action-buttons {
    display: flex;
    margin-top: 16px;
    gap: 8px;
}

.logged-in-action-buttons .btn-link,
.logged-in-action-buttons .btn-webpush-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.logged-in-action-buttons .btn-link:hover,
.logged-in-action-buttons .btn-webpush-link:hover{
    background-color: #f9f9f9;
}

.logged-in-action-buttons .btn-inquiry svg {
    margin-right: 8px;
}

.logged-in-welcome-box {
    text-align: center;
    margin-top: 12px;
}

.logged-in-welcome-box p {
    margin: 0;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

@media (min-width: 600px) {
    .live-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 0 -8px;
    }

    .live-item {
        margin: 0 8px 16px;
    }

    .live-item:not(:last-child) {
        margin-bottom: 16px;
    }
}

/* ========= POPUP STYLES START ========= */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-container.active {
    visibility: visible;
    opacity: 1;
}

#settingsPopup, #retirePopup {
    z-index: 1001;
}

.popup-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: #f0f0f0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.popup-container.active .popup-content {
    transform: translateX(0);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    flex-shrink: 0;
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-back, .btn-header-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.btn-header-icon svg {
    margin-right: 4px;
}

.btn-back {
    z-index: 1;
}

.btn-header-icon {
    z-index: 1;
}

.btn-header-icon svg {
    color: #555;
}

#myPagePopup .popup-body,
#webPushMyPopup .popup-body{
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#settingsPopup .popup-body, #retirePopup .popup-body {
    padding: 0;
    overflow: hidden;
    flex-grow: 1;
}

#settingsFrame, #retireFrame {
    width: 100%;
    height: 100%;
    border: none;
}

.customer-service-box {
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.customer-service-box p {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: bold;
}

.customer-service-box .btn-inquire {
    background-color: #FEE500;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.popup-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    background-color: #fff;
    border-radius: 12px;
}

.popup-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.popup-menu li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.popup-menu svg {
    color: #aaa;
}

/* Accordion styles */
.arrow-icon {
    transition: transform 0.3s ease;
}

.accordion-toggle.active .arrow-icon {
    transform: rotate(90deg);
}

.agreement-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #ffffff;
}

/*.agreement-content.open {*/
/*    max-height: 2000px;*/
/*}*/

.agreement-content .inner-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ========= POPUP STYLES END ========= */

/* Live Item Popup Styles */
.popup-container-live {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-container-live.active {
    visibility: visible;
    opacity: 1;
}


.btn-close-live {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
}

.popup-text-live {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 24px 0;
    line-height: 1.6;
    color: #333;
    width: 100%;
}

.popup-text-live .popup-line-1 {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.btn-popup-subscribe {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #FEE500;
    color: #191919;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

/* Sticky Footer Button */
.sticky-subscribe-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
}

.sticky-subscribe-wrapper.visible {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.sticky-button-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 16px;
}

.btn-sticky-subscribe {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #FEE500;
    color: #191919;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

/* Image Popup Styles */
.popup-container-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-container-image.active {
    visibility: visible;
    opacity: 1;
}

.image-popup-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.image-popup-main-content {
    background-color: #fff;
    width: 100%;
    max-width: 700px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.image-popup-content {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.image-popup-info {
    padding: 16px;
    background-color: #f9f9f9;
    text-align: left;
}

.image-popup-info .live-status {
    font-size: 0.8rem;
    color: #e53935;
    font-weight: bold;
    margin: 0 0 4px;
}

.image-popup-info .live-title-text {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 4px;
    color: #222;
}

.image-popup-info .live-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.slider-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(40, 40, 40, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1004;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.slider-nav:hover {
    opacity: 1;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

@media (max-width: 700px) {
    .slider-nav {
        display: none;
    }
}

.close-image-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.2s;
    z-index: 1005;
}

.close-image-popup:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.image-popup-info .card-status {
    font-size: 16px;
    color: #e53935;
    font-weight: bold;
    margin: 0 0 4px;
}

.image-popup-info .card-title-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px;
    color: #222;
}

.image-popup-info .card-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

#header {
    margin: 0;
    padding: 0;
    position: relative;
}

.top_section {
    position: relative;
    height: 60px;
    background-color: #fff;
}

.top_section .top_cate {
    height: 60px;
    line-height: 60px;
    float: left;
    position: absolute;
    top: 0;
    left: 4%;
}

.top_section .top_cate img {
    width: 25px;
    vertical-align: middle;
}

.top_section .top_logo {
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    text-align: center;
}


.top_section .top_logo a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.c-both {
    clear: both;
}

.c-both:after {
    content: " ";
    display: block;
    clear: both;
}

.red {
    color: #f40006;
}

#siteContainer {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
}

.site-container-700 * {
    box-sizing: border-box;
}

.landing-banner {
    position: relative;
    margin-bottom: 16px;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 414 / 378.45;
    background-color: #fff;

}

.landing-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.favorite-btn-wrapper {
    position: absolute;
    top: 17px;
    right: 16px;
    z-index: 10;
}

.btn-favorite {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fe0000;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1.22;
}

button.btn-favorite {
    padding: 9px 16px 8px 16px;
}

.landing-banner + .landing-content {
    padding-top: 0;
}

.landing-content {
    padding: 16px;
    position: relative;
}

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

.main-notification .profile-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 8px;
}

.landing-main-text {
    font-size: 1.1rem;
    color: #222;
    margin: 0 0 4px 0;
    font-weight: normal;
}

.landing-main-text b {
    font-weight: normal;
}

.landing-main-text .brand-name {
    font-size: 1.2em;
    font-weight: 900;
}

.landing-sub-text {
    font-size: 0.9rem;
    color: #007bff;
    margin: 0;
}

#kakao-sync-login.favorite-action-wrapper,
#kakao-plus-login.favorite-action-wrapper,
.favorite-action-wrapper.web-push-login{
    position: relative;
    margin-top: 10px !important;
}


.red-type .favorite-action-btn {
    background-color: #f40006;
    color: #ffffff;
}

.favorite-action-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1.17;
    background-color: #f40006;
    color: #ffffff;
}

button.favorite-action-btn {
    padding: 17px 16px 16px 16px;
}

.hand-pointer {
    position: absolute;
    bottom: -30px;
    right: 50px;
    z-index: 10;
    pointer-events: none;
}

.pointing-hand {
    font-size: 40px;
    display: inline-block;
    opacity: 0.9;
    transform-origin: bottom center;
    animation: handDynamic 1.5s infinite ease-in-out;
}

@keyframes handDynamic {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.favorite-benefit {
    font-size: 0.9rem;
    margin-top: 24px;
}

.favorite-benefit-inner {
    font-size: 0.9rem;
}

.benefit-main-text {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin: 0 0 16px;
}

.benefit-content {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
    color: #333;
    max-height: calc(1.6em * 5);
    overflow: hidden;
}

/* 펼침 */
.benefit-content.is-expanded {
    max-height: none;
}

/* 더보기 버튼 */
.benefit-more-btn {
    display: none;
    margin: 10px auto 0;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

/* li 5개 초과 시 */
.benefit-more-btn.is-visible {
    display: block;
}

/* 화살표 */
.benefit-more-btn::after {
    content: " ▼";
    font-size: 11px;
}

/* 펼쳐졌을 때 */
.benefit-more-btn::after {
    content: " ▼";
    font-size: 11px;
}

.benefit-more-btn[aria-expanded="true"]::after {
    content: " ▲";
}

.benefit-content li {
    white-space: normal;
    line-height: 1.6;
    font-synthesis: none;
}

.live-area {
    margin-top: 24px;
}

/* 정사각형 타입 START*/
.live-square-inner .live-square-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.live-square-inner .live-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
}

.live-square-inner .live-card:not(:last-child) {
    margin-bottom: 16px;
}

.live-square-inner .card-thumbnail {
    flex-shrink: 0;
    /*margin-right: 16px;*/
    /** CAFE24 공백태그 대응*/
    margin-right: 23.17px;
}

.live-square-inner .card-thumbnail img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
}

.live-square-inner .card-status {
    font-size: 13px;
    color: #e53935;
    font-weight: bold;
    padding-bottom: 4px;
}

.live-square-inner .card-title-text {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4px;
    color: #222;
}

.live-square-inner .card-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* 정사각 타입 END*/

/* 세로형 START*/
.live-vertical-inner .live-vertical-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.live-vertical-inner .live-card {
    display: flex;
}

.live-vertical-inner .live-group {
    margin-top: 22px;
}

.live-vertical-inner .live-card:not(:last-child) {
    margin-bottom: 12px;
}

.live-vertical-inner .card-thumbnail {
    flex-shrink: 0;
    margin-right: 10px;
}

.live-vertical-inner .card-thumbnail img {
    width: 125px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    /*display: block;*/
}

.live-vertical-inner .card-info {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.live-vertical-inner .card-info p {
    /*margin: 0 0 4px;*/
    font-size: 14px;
    margin: 0 !important;
    line-height: 1.3;
}

.live-square-inner .card-info p {
    line-height: 1.3;
}

.live-vertical-inner .card-info .card-status {
    font-size: 16px;
    color: #e53935;
    font-weight: bold;
    /*margin: 13px 0 10px;*/
}

/**/
.live-vertical-inner .card-info .card-title-text {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.live-vertical-inner .card-info .text-col {
    display: flex;
    flex-direction: column;
}

/* 3) 1번째 → 2번째 간격 */
.live-vertical-inner .card-info .card-status {
    padding-top: 13px;
    padding-bottom: 10px;   /* ✅ 여기 */
}

/* 4) 2번째 → 3번째 간격 */
.live-vertical-inner .card-info .card-title-text {
    padding-bottom: 3px;    /* ✅ 여기 */
}

/* 5) line-height 고정 (안드 안정화) */
.live-vertical-inner .card-info .card-title-text,
.live-vertical-inner .card-info .card-desc {
    line-height: 1.3;
}
/**/
.live-vertical-inner .card-info .card-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}


.live-vertical-inner .card-info .card-last-text {
    color: #f40006;
}

.live-vertical-inner .card-status {
    font-size: 15px;
}

.live-vertical-inner .card-profile-box {
    display: flex;
    align-items: center;
    padding-bottom: 13px;
    margin-top: auto;
}

.live-vertical-inner .card-profile-image {
    font-size: 0;
    line-height: 0;
}

.live-vertical-inner .card-profile-image img {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    margin-right: 8px;
}

.live-vertical-inner .card-profile-box .card-profile-text {
    font-size: 14px;
    color: #909090;
}

/* 세로형 END*/
#landingFooter {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #f5f5f5;
    overflow: hidden;
    font-family: "Montserrat", "Noto Sans KR", Arial, sans-serif !important;

}

#landingFooter.hidden {
    display: none;
}

@media (max-width: 1024px) {
    #landingFooter {
        padding-bottom: 80px;
    }
}

#landingFooter .landing-footer-content {
    max-width: 1760px;
    width: 92%;
    margin: 0 auto;
    padding: 100px 0 70px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content {
        margin: 0 auto;
        padding: 40px 0 0 0;
    }
}

#landingFooter .landing-footer-content .bt_wrap2 {
    padding-top: 50px;
    border-top: 1px solid #dadada;
    /*display: flex;*/
    justify-content: space-between;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_wrap2 {
        padding-top: 40px;
        margin-top: 40px;
        flex-direction: column-reverse;
        justify-content: flex-start;
        word-break: keep-all;
        border-top: 1px solid #ebebeb;
    }
}

#landingFooter .landing-footer-content .bt_wrap2 .bt_copyright {
    font-size: 12px;
    font-weight: 400;
    color: #a8a8a8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_wrap2 .bt_copyright {
        font-size: 13px;
    }
}

#landingFooter .landing-footer-content .bt_wrap2 ul {
    display: flex;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_wrap2 ul {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

#landingFooter .landing-footer-content .bt_util {
    margin-bottom: -16px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_util {
        margin-bottom: 0;
    }
}

#landingFooter .landing-footer-content .bt_util ul li {
    margin: 0 0 0 9px;
    padding: 0 0 0 10px;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_util ul li {
        margin: 0 10px 10px 0;
        padding: 0;
        background: none;
    }
}

#landingFooter .landing-footer-content .bt_util ul li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_util ul li a {
        font-size: 13px;
        /*font-weight: 300;*/
    }
}

#landingFooter .landing-footer-content .bt_util ul li:first-child {
    background: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_util ul li:first-child {
        margin: 0 10px 10px 0;
    }
}

#landingFooter .landing-footer-content .bt_info {
    margin-top: 50px;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_info {
        order: 1;
        margin: 40px 0 0 0;
    }
}

#landingFooter .landing-footer-content .bt_info .title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 2;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_info .title {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

#landingFooter .landing-footer-content .bt_info .bt_info_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 500px;
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 2;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_info .bt_info_list {
        line-height: 1.8;
        font-size: 13px;
        word-break: keep-all;
    }
}

#landingFooter .landing-footer-content .bt_info .bt_info_list > div {
    margin: 0 10px 0 0;
}

#landingFooter .landing-footer-content .bt_info .bt_info_list > div span:first-child {
    font-weight: 600;
}

#landingFooter .landing-footer-content .bt_cscenter {
    margin-left: auto;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_cscenter {
        order: 2;
        margin: 40px 0 0 0;
    }
}

#landingFooter .landing-footer-content .title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 2;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_cscenter .title {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

#landingFooter .landing-footer-content .bt_cscenter .bt_txt01 {
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 2;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_cscenter .bt_txt01 {
        font-size: 13px;
        line-height: 1.6;
    }
}

#landingFooter .landing-footer-content .bt_cscenter .bt_txt01 > strong {
    font-weight: 600;
}

#landingFooter .landing-footer-content .pdr10 {
    padding-right: 10px;
}

#landingFooter .landing-footer-content .bt_cscenter .bt_txt02 {
    font-size: 12px;
    font-weight: 400;
    color: #3a3a3a;
    margin-bottom: 10px;
    line-height: 2;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_cscenter .bt_txt02 {
        font-size: 13px;
        line-height: 1.6;
    }
}

#landingFooter .landing-footer-content .bt_cscenter .bt_txt02 > strong {
    font-weight: 600;
    display: block;
}

@media (max-width: 1024px) {
    #landingFooter .landing-footer-content .bt_cscenter .bt_txt02 {
        font-size: 13px;
        line-height: 1.6;
    }
}

#landingSyncStickyContent,
#landingPlusStickyContent {
    display: none;
}

#landingSyncStickyContent.active,
#landingPlusStickyContent.active {
    display: block;
    /*padding-bottom: env(safe-area-inset-bottom);*/
}

.landing-sticky-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
    pointer-events: none; /* 숨김 상태에서 클릭 불가 */
    background-color: transparent;
    margin: 0 auto !important;
    border-top: 0;

}

.landing-sticky-content.visible {
    transform: translateY(0); /* 보이도록 슬라이드 업 */
    visibility: visible;
    pointer-events: auto; /* 클릭 활성화 */
}

.landing-sticky-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.landing-sticky-btn {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    color: #fff;
    line-height: 1.22;
}

.b-yellow.landing-sticky-btn {
    background-color: #FEE500;
    color: #191919;
}

.b-orange.landing-sticky-btn {
    background-color: #FFB400;
    color: #191919;
}

.b-green.landing-sticky-btn {
    background-color: #10B981;
    color: #fff;
}

.landing-footer-menu {
    margin-bottom: 20px;
    clear: both;
}

.landing-footer-menu a {
    font-size: 11px;
    color: #333;
    font-weight: 400;
    line-height: 18px;
    float: left;
    margin-right: 10px;
}

.landing-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.landing-popup.active {
    visibility: visible;
    opacity: 1;
}


.popup-container-live {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-container-live.active {
    visibility: visible;
    opacity: 1;

}

.popup-content-live {
    background-color: #fff;
    padding: 40px 12px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
}

.popup-container-live .close-popup-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
}

.popup-container-live .popup-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 24px 0;
    line-height: 1.6;
    color: #333;
    width: 100%;
}

.popup-container-live .popup-text .popup-line-1 {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.btn-landing-subscribe {
    display: block;
    width: 100%;
    padding: 18px;
    background-color: #FEE500;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    line-height: 1.22;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.popup-container.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    height: 100%;
    background-color: #f0f0f0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.popup-container.active .popup-content {
    transform: translateX(0);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
    flex-shrink: 0;
}

.btn-back {
    z-index: 1;
}

.btn-back, .btn-header-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.popup-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-header-icon {
    z-index: 1;
}

.btn-header-icon svg {
    color: #555;
    margin-right: 4px;
}

#myPagePopup .popup-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.customer-service-box {
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.customer-service-box p {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: bold;
}

.customer-service-box .btn-inquire {
    background-color: #FEE500;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.popup-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    background-color: #fff;
    border-radius: 12px;
}

.popup-menu li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.popup-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.agreement-content.open a {
    display: unset;
    align-items: unset;
    padding: unset;
    text-decoration: underline !important;
    color: #007bff !important;
    font-size: unset;
}

.accordion-toggle.active .arrow-icon {
    transform: rotate(90deg);
}

.popup-menu svg {
    color: #aaa;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.agreement-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #f7f7f7;
}

.agreement-content .inner-content {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.agreement-content.open {
    max-height: 9999px;
}

.fr-view {
    word-wrap: break-word;
}

.logged-in-action-buttons {
    display: flex;
    margin-top: 16px;
    gap: 8px;
}


.logged-in-action-buttons .btn-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.logged-in-action-buttons .btn-inquiry svg {
    margin-right: 8px;
}

.logged-in-welcome-box {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 24px;
}

.logged-in-welcome-box p {
    margin: 0;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

#liveArea .live-square-inner,
#liveArea .live-vertical-inner {
    display: none;
}

.landing-type-1 #liveArea .live-square-inner {
    display: block;
}

.landing-type-2 #liveArea .live-vertical-inner {
    display: block;
}

#kakao-sync-login,
#kakao-plus-login,
#syncSubscript,
#plusSubscript,
.wpn-unsubscribed .webpush-logged-active {
    display: none;
}

#kakao-sync-login.active,
#kakao-plus-login.active,
#syncSubscript.active,
#plusSubscript.active,
.wpn-subscribed .webpush-logged-active.active {
    display: block;
}

.kakao-link-block {
    display: none;
}

.kakao-link-block.active {
    display: block;
}

.kakao-link-block-box {
    height: 20px;
    width: 100%;
    display: none;
}

.kakao-link-block-box.active {
    display: block;
}

.landing-banner-img {
    opacity: 0;
    visibility: hidden;
}

.landing-banner-img.is-loaded {
    opacity: 1;
    visibility: visible;
}

.live-group-wrap {
    position: relative;
}

.live-group {
    position: relative;
    z-index: 1;
}

/* 내용은 blocker 아래가 아니라 위로 */
.live-group-blocker {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: transparent;
    cursor: pointer;
}

.bottom-nav-wrapper {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 65px;
    width: 100%;
    max-width: 700px;
    z-index: 998;
    pointer-events: none; /* 아래 클릭 막지 않게 */
}

.bottom-nav___top {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #dadada;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: auto;
}

.bottom-nav___top a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav___top svg {
    display: block;
    transform: translateY(1px);
}

.bottom-nav___top--show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#wrap .xans-member-login {
    margin: 0 auto 0 auto;
    text-align: center;
}

#landingPopup .xans-member-login {
    margin: 0 !important;
}

#landingPopup form {
    width: 100%;
}

.btn-profile-favorite {
    display: inline-block;
    padding: 9px 16px 8px 16px;
    /*padding: 11px 16px 10px 16px;*/
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: #fe0000;
    line-height: 1.3;
}

.footer_margin {
    margin-top: 100px;
}

@media (max-width: 1024px) {
    .footer_margin {
        margin-top: 50px;
    }
}

.favorite-top-sync, .favorite-top-plus {
    display: none;
}

.favorite-top-sync.active, .favorite-top-plus.active {
    display: block;
}

.btn-my {
    margin-left: 6px;
}

@media (max-width: 1024px) {
    #container #contents.is-pc {
        width: 100%;
        margin: 0 auto;
    }
}


.kakao_login .inner {
    width: 100%;
}


.agreement-content .inner-content span {
    background-color: #f7f7f7 !important;
}

/*.is-main #benefitMoreBtn {*/
/*    display: none;*/
/*}*/


#customerServicePopup .popup-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


#customerServicePopup .agreement-content {
    display: none;
}

#customerServicePopup .agreement-content.open {
    display: block;
    overflow: auto;
}

#customerServicePopup .agreement-content.open .inner-content span {
    color: #000 !important;
}

.wpn-subscribed .card-profile-box .btn-profile-favorite,
.is-logon .card-profile-box .btn-profile-favorite {
    display: none;
}

.title-conversion {
    /*text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.4);*/
    /*color: #fff;*/
    display: flex;
    align-items: center;
    /*gap: 1px;*/
    line-height: 1;
}

.title-conversion .title-text {
    white-space: nowrap;
    color: #007bff;
    padding-right: 6px;
}

.title-conversion .title-text:empty {
    display: none;
}

.people-img {
    display: inline-flex;
    align-items: center;
    transform: translateY(0px);
    padding-right: 1px;
}

.title-conversion .people-img svg circle,
.title-conversion .people-img svg path {
    stroke: #333;
}

.title-conversion .count-label {
    color: #333;
    padding-top: 2px;
}

.signup-box {
    display: flex;
}

.signup-box.is-disabled {
    display: none;
}

