/* [S] 페이지 타이틀 */
.nbs-title {
    padding: 52px 0 28px;
    font-size: 36px;
    line-height: 46px;
    color: #131518;
}
.nbs-title > p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
}
/* [E] 페이지 타이틀 */

/* [S] 탭 메뉴 */
.nbs-tab-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    border-bottom: 2px solid #DADDE0;
}
.nbs-tab-menu {
    display: flex;
    height: 100%;
    align-items: center;
    margin-bottom: -2px;
    font-size: 16px;
}
.nbs-tab-item {
    display: flex;
    align-items: center;
    height: 100%;
    color: #757D86;
}
.nbs-tab-item .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
}
.nbs-tab-item + .nbs-tab-item { margin-left: 40px; }
.nbs-tab-item.active {
    color: #131518;
    font-weight: 700;
    border-bottom: 2px solid #131518;
}
@media (max-width: 1199px) {
    .nbs-title { display: none; }
    .nbs-tab-wrapper {
        height: 44px;
        padding: 0 16px;
        border-bottom-width: 1px;
    }
    .nbs-tab-menu {
        border: none;
        font-size: 14px;
        margin-bottom: 0;
    }
    .nbs-tab-item.active { border: none; }
    .nbs-tab-item.active a, .nbs-tab-item:first-child a  { background: none !important; }
    .nbs-tab-item + .nbs-tab-item { margin-left: 20px; }
}
@media (min-width: 1200px) {
    .nbs-tab-menu { height: 60px; }
}
/* [E] 탭 메뉴 */

/* [S] 카테고리 메뉴 */
.nbs-category-list { background: #fff; z-index: 10; }
.nbs-category-list .swiper-container { padding: 28px 0; }
.nbs-category-list .swiper-slide {
    height: 32px;
    width: auto;
    color: #757D86;
    border: 1px solid #DADDE0;
    border-radius: 16px;
    font-size: 13px;
    line-height: 18px;
}
.nbs-category-list .swiper-slide.active {
    color: #fff;
    background-color: #131518;
    border-color: #131518;
}
.nbs-category-list .swiper-slide:last-child { margin-right: 0; }
.nbs-category-list .swiper-slide .btn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}
.nbs-category-list .swiper-slide.active .btn { font-weight: 700; }
@media (max-width: 1199px) {
    .nbs-category-list.fixed {
        position:fixed;
        left: 0;
        right: 0;
    }
    .nbs-category-list .swiper-container { padding: 16px; }
}
@media (min-width: 1200px) {
    .nbs-category-list .swiper-wrapper { flex-wrap: wrap; row-gap: 8px }
    .nbs-category-list .swiper-slide { margin-right: 8px; }
}
/* [E] 카테고리 메뉴 */

/* [S] 국가 선택 셀렉트 박스 */
.tab-best-sellers { position: relative; }
.cntry-select-box-wrapper {
    position:relative;
    height: 20px;
}
.cntry-select-box {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.selected-cntry {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 28px;
    background:  url("../../resources/images/common/ico_chevron_down.png") 100% 50% no-repeat;
    background-size: 20px 20px;
}
.cntry-name { font-size: 14px; color: #131518 }
.cntry-img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0.5px solid #DADDE0;
}
.cntry-img.without-border { border: none; }
@media (max-width: 1199px) {
    .cntry-select-box-wrapper { height: 16px; }
    .selected-cntry {
        gap: 4px;
        padding-right: 18px;
        background-size: 14px 14px;
    }
    .cntry-name { font-size: 13px; }
}
/* [E] 국가 선택 셀렉트 박스 */

/* [S] 베스트 페이지 전체 레이아웃 */
@media (max-width: 1199px) {
    /* [S] 기존 best-seller-list 클래스 css 수정(exchange.css) */
    .product-unit-wrap .unit-list.best-seller-list {
        grid-gap: 40px 12px;
        grid-template-columns: repeat(2, calc(50% - 6px)); }
    .product-unit-wrap .unit-list.best-seller-list > li {
        padding: 0;
        border: none;
    }
    /* [E] 기존 best-seller-list 클래스 css 수정 */
    .nbs-content-body .main { padding-bottom: 60px; }
}
@media (min-width: 1200px) {
    /* [S] 기존 best-seller-list 클래스 css 수정(exchange.css) */
    .product-unit-wrap { padding-top: 0 !important; }
    .product-unit-wrap .unit-list.best-seller-list {
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 60px 25px;
    }
    .product-unit-wrap .unit-list.best-seller-list > li { width: 220px; }
    .product-unit-wrap .unit-list.best-seller-list > li:nth-child(4) ~ li {
        padding: 0;
    }
    /* [E] 기존 best-seller-list 클래스 css 수정 */
    .nbs-content-body { padding: 278px 0 349px !important; margin: -278px auto -349px !important; }
    .nbs-content-body .main { padding-bottom: 100px; }
    .nbs-content-body .product-unit-wrap .unit-list { margin-top: 0; }
}
/* [E] 베스트 페이지 전체 레이아웃 */

/* [S] 상품 카드 */
.product-unit-wrap .best-seller-list > li .unit-thumb {
    position: relative; cursor: pointer;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.product-unit-wrap .best-seller-list > li .unit-thumb::after {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: rgba(0, 0, 0, 0.03);
}
.product-unit-wrap .best-seller-list > li .unit-thumb a { height: 100%; }
.product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #131518;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge span {
    border:none;
    background: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Roboto", "NotoSansJP", Arial, sans-serif;
}
.product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge.rank100 span { font-size: 12px; }
.product-unit-wrap .best-seller-list > li .unit-desc { margin: 0; }
.product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dt {
    padding: 12px 42px 10px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Roboto", "NotoSansJP", Arial, sans-serif;
    color: #131518;
}
.product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dd {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Roboto", "NotoSansJP", Arial, sans-serif;
    color: #131518;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
    padding-right: 8px;
    word-break: break-all;
}

.product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dt.outOfStock { color: #99A1A8; }
.product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dd.outOfStock { color: #99A1A8; }

.product-unit-wrap .best-seller-list > li .unit-desc a .price-info {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-unit-wrap .best-seller-list > li .unit-desc a .price-info strong { font-size: 16px; color: #131518; line-height: 22px; }
.product-unit-wrap .best-seller-list > li .unit-desc a .price-info strong.point { color: #FF514D; }
.product-unit-wrap .best-seller-list > li .unit-desc a .price-info span { font-size: 13px; color: #99A1A8; line-height: 18px; margin: 0; }
.product-unit-wrap .best-seller-list > li .unit-desc a .price-info.outOfStock span,
.product-unit-wrap .best-seller-list > li .unit-desc a .price-info.outOfStock strong {
    color: #99A1A8;
}
.product-unit-wrap .best-seller-list > li .unit-desc a .rating-info span { margin-top: 16px; font-size: 13px; font-weight: 400; color: #757D86; padding-left: 14px; line-height: 18px; height: 18px; }
.product-unit-wrap .best-seller-list > li .unit-desc a .rating-info span::after {
    content: "";
    background: url("../images/common/ico_star.svg") 0 0 no-repeat;
    background-size: 10px 10px;
}
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info { font-weight: 400; margin: 0; }
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info p:first-child { margin-top: 16px; }
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info p span { font-weight: 400; font-size: 12px; line-height: 16px; padding: 2px 4px; background: #F6F7F9; }
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info > p.txt-save span { color: #FF514D; }
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info > p.txt-buy span { color: #1890FF; }
.product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info > p.txt-gift span { color: #5FBE00; }
.product-unit-wrap .best-seller-list > li .unit-desc .unit-btn {
    position: absolute;
    top: 11px;
    right: 8px;
}
.product-unit-wrap .best-seller-list > li .unit-desc .unit-btn button.add-cart {
    box-sizing: content-box;
    padding: 8px;
    margin: -8px;
    width: 22px;
    height: 22px;
    background: url("../images/common/ico_shopping_bag.svg") center center no-repeat;
    background-size: 22px;
}
.best-seller-out-of-stock {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}
.top-in-korea-out-of-stock {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
@media (max-width: 1199px) {
    .product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge {
        width: 20px;
        height: 20px;
    }
    .product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge span { font-size: 12px; }
    .product-unit-wrap .best-seller-list > li .unit-thumb a .rank-badge.rank100 span  { font-size: 10px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dt { padding: 12px 34px 8px 0; font-size: 13px; line-height: 18px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dd { font-size: 13px; line-height: 18px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .price-info { gap: 0; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .price-info strong { font-size: 14px; line-height: 20px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .price-info span { font-size: 12px; line-height: 16px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .rating-info span { margin-top: 12px; font-size: 12px; padding-left: 12px; height: 16px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .rating-info span::after { background-size: 8px 8px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info p:first-child { margin-top: 12px; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .benefits-info p span { font-size: 10px; line-height: 14px; }
    .product-unit-wrap .best-seller-list > li .unit-desc .unit-btn { top: 12px; }
    .product-unit-wrap .best-seller-list > li .unit-desc .unit-btn button.add-cart {
        padding: 9px;
        margin: -9px;
        width: 18px;
        height: 18px;
        background-size: 18px;
    }
    .product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dt.outOfStock { color: #99A1A8; }
    .product-unit-wrap .best-seller-list > li .unit-desc a .brand-info dd.outOfStock { color: #99A1A8; }

    .product-unit-wrap .best-seller-list > li .unit-desc a .price-info.outOfStock span,
    .product-unit-wrap .best-seller-list > li .unit-desc a .price-info.outOfStock strong {
        color: #99A1A8;
    }
    .best-seller-out-of-stock {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
    }
    .top-in-korea-out-of-stock {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
    }
}
/* [E] 상품 카드 */

/* [S] 툴팁 */
.nbs-tooltip {
    position: relative;
    font-size: 14px;
    line-height: 20px;
}
.nbs-tooltip-btn {
    color: #C9CDD2;
    padding-right: 20px;
    background: url(../images/common/icon_info_3.svg) 100% 50% no-repeat;
    background-size: 16px 16px;
}
.nbs-tooltip-body {
    position: absolute;
    padding: 12px 34px 12px 12px;
    width: 300px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px 0px #00000040;
    top: calc(100% + 8px);
    right: -10px;
    border-radius: 4px;
    z-index: 10;
    display: none;
}
.nbs-tooltip-body.on {
    display: block;
}
.nbs-tooltip-body::after {
    content: '';
    bottom: 100%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    right: 12px;
}
.nbs-tooltip .close {
    width: 12px;
    height: 12px;
    background:url("../images/common/icon_close_3.svg") no-repeat center center;
    position: absolute;
    top: 12px;
    right: 12px;
}
@media (max-width: 1199px) {
    .nbs-tooltip {
        font-size: 12px;
        line-height: 16px;
    }
    .nbs-tooltip-body { width: 210px; }
    .nbs-tooltip-btn { background-size: 14px; padding-right: 16px; }
}
/* [E] 툴팁 */

.best-sellers-review .best-sellers-review-list {
    padding-top: 0;
}
@media (max-width: 1199px) {
    .best-sellers-review .best-sellers-review-list {
        padding: 0 16px 0;
    }
}

/* [S] TOP IN KOREA 넛지 */
svg path { vector-effect: non-scaling-stroke; }
#best-korea-nudge {
    position: relative;
    grid-column: 1 / 6;
    width: 100%;
    margin: 20px 0;
}
#best-korea-nudge::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    margin-left: calc((100vw - 1200px) / 2 * -1);
    background-color: #E5E7EA;
    position: absolute;
}
#best-korea-nudge .wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 56px 0 60px;
}
#best-korea-nudge .wrapper .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #131518;
}
#best-korea-nudge .wrapper .view-more-btn {
    position: absolute;
    top: 70px;
    right: 0;
    font-size: 16px;
    line-height: 22px;
    color: #99A1A8;
    cursor: pointer;
    display: flex;
    align-items: center;
}
#best-korea-nudge .wrapper .view-more-btn .icon-view-more,
#best-korea-nudge .wrapper .view-more-btn .icon-view-more svg { width: 18px; height: 18px; }
#best-korea-nudge .wrapper .view-more-btn .icon-view-more svg path { stroke: #99A1A8; stroke-width: 1.4px; }
#best-korea-nudge .swiper-slide {
    height: auto;
}
#best-korea-nudge .swiper-slide.view-more { display: none; }
@media (min-width: 1200px) {
    #best-korea-nudge .wrapper .swiper-container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 18px;
        margin-top: 20px;
    }
}
@media (max-width: 1199px) {
    #best-korea-nudge { grid-column: 1 / 3; margin: 0; }
    #best-korea-nudge::before { margin-left: -16px; }
    #best-korea-nudge .wrapper { padding: 32px 0 40px; }
    #best-korea-nudge .wrapper .title { font-size: 18px; line-height: 24px; }
    #best-korea-nudge .wrapper .swiper-container {
        margin-top: 16px;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 16px;
    }
    #best-korea-nudge .wrapper .view-more-btn {
        top: 34.5px;
        font-size: 14px;
        line-height: 20px;
    }
    #best-korea-nudge .wrapper .view-more-btn .icon-view-more,
    #best-korea-nudge .wrapper .view-more-btn .icon-view-more svg { width: 14px; height: 14px; }
    #best-korea-nudge .wrapper .view-more-btn .icon-view-more svg path { stroke-width: 1.1px; }
    #best-korea-nudge .swiper-slide { width: calc((100vw - 32px) / 1.8641); }
    #best-korea-nudge .swiper-slide.view-more {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
    }
    #best-korea-nudge .swiper-slide.view-more .clickable-area {
        padding: 34px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
    #best-korea-nudge .swiper-slide.view-more .icon-arrow-right,
    #best-korea-nudge .swiper-slide.view-more .icon-arrow-right svg { width: 18px; height: 18px; }
    #best-korea-nudge .swiper-slide.view-more .icon-arrow-right svg path { stroke: #99A1A8; stroke-width: 1.4px; }
    #best-korea-nudge .swiper-slide.view-more span { font-size: 14px; line-height: 20px; color: #99A1A8; }
}


#best-korea-nudge .skeleton { background-color: #F6F7F9; }
#best-korea-nudge .skeleton::before { background: linear-gradient(90deg, #F6F7F9 0%, #F0F1F4 50%, #F6F7F9 100%); }
#best-korea-nudge .skeleton-text { height: 36px; width: 320px; margin: 0; }
#best-korea-nudge .skeleton-img { height: 315px; }
@media (max-width: 1199px) {
    #best-korea-nudge .skeleton-text { height: 24px; width: 140px; margin: 0; }
    #best-korea-nudge .skeleton-img {
        width: calc((100vw - 32px) / 1.8928);
        height: calc(((100vw - 32px) / 1.8928) - 24px + 144px);
    }
}

#best-korea-nudge .brand-video-prd-unit {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 12px 0;
    height: 315px;
    background-color: #FFFFFF;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img::after {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img .rank-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 24px;
    height: 24px;
    background-color: #131518;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img img {
    display: block;
    width: 100%;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img .img-dim {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.03);
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info button.add-cart {
    box-sizing: content-box;
    padding: 8px;
    margin: -8px;
    min-width: 22px;
    height: 22px;
    background: url("../images/common/ico_shopping_bag.svg") center center no-repeat;
    background-size: 22px;
    font-size: 0;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info span.text {
    font-size: 14px;
    line-height: 20px;
    color: #131518;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: break-spaces;
    word-break: break-all;
}

#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info span.text.out-of-stock {
    color: #99A1A8;
}

button.restock-noti.active span.bell_on {
    display: block;
}
button.restock-noti.active span.bell_off {
     display: none;
}

button.restock-noti span.bell_on {
    display: none;
}
button.restock-noti span.bell_off {
    display: block;
}
.brand-info .restock-noti {
    align-self: flex-start;
}
.bell .korea-best {
    width: 18px;
    height: 18px;
}
.korea-best path {
    stroke-width: 1.4;
}
@media (min-width: 1200px) {
    .bell .korea-best {
        width: 22px;
        height: 22px;
    }

    .korea-best path {
        stroke-width: 1.7;
    }
}
.best-seller.bell_on svg path {
    fill: #99A1A8;
    vector-effect: non-scaling-stroke;
}

.best-seller.bell_off svg path {
    stroke: #99A1A8;
    vector-effect: non-scaling-stroke;
}

#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .price-info span {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #99A1A8;
    text-decoration: line-through;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .price-info strong {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #FF514D;
}
#best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .price-info :is(strong, span).out-of-stock {
    color: #99A1A8;
}
@media (max-width: 1199px) {
    #best-korea-nudge .brand-video-prd-unit {
        padding: 12px 12px 32px;
        height: 100%;
    }
    #best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-img .rank-badge {
        top: -12px;
        left: -12px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 16px;
    }
    #best-korea-nudge  .brand-video-prd-unit .brand-video-prd-unit-info .brand-info {
        font-size: 13px;
        line-height: 18px;
    }
    #best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info span {
        font-size: 13px;
        line-height: 18px;
    }
    #best-korea-nudge .brand-video-prd-unit .brand-video-prd-unit-info .brand-info button.add-cart {
        min-width: 18px;
        height: 18px;
        background-size: 18px;
    }
    #best-korea-nudge  .brand-video-prd-unit .brand-video-prd-unit-info .price-info {
        gap: 0;
    }
    #best-korea-nudge  .brand-video-prd-unit .brand-video-prd-unit-info .price-info span {
        font-size: 12px;
        line-height: 16px;
    }
    #best-korea-nudge  .brand-video-prd-unit .brand-video-prd-unit-info .price-info strong {
        font-size: 14px;
        line-height: 20px;
    }
}
/* [E] TOP IN KOREA 넛지 */

/* [S] 베스트 페이지 통 스켈레톤 */
#skeleton.best-page-skeleton .tab-list { padding: 19px 0; border-bottom: 2px solid #F0F1F4; }
#skeleton.best-page-skeleton .tab-list > div { width: 80px; height: 20px; }
#skeleton.best-page-skeleton .category-list { display: flex; padding: 28px 0; gap: 8px; }
@media (max-width: 1199px) {
    #skeleton.best-page-skeleton.container { padding:0; }
    #skeleton.best-page-skeleton .nbs-title { display: none; }
    #skeleton.best-page-skeleton .tab-list { padding: 12px 0 12px 16px; }
    #skeleton.best-page-skeleton .tab-list > div { width: 70px; }
    #skeleton.best-page-skeleton .category-list { padding: 16px 0 16px 16px; }
    #skeleton.best-page-skeleton .category-list > div:nth-child(n+3) { display: none; }
    #skeleton.best-page-skeleton .best-seller-list > li:nth-child(n+26) { display: none; }
    #skeleton.best-page-skeleton #best-korea-nudge { display: none; }
}
/* [S] 베스트 페이지 통 스켈레톤 */