.popular_products {
    margin: 16px 0 10px;
    /* padding: 16px 18px 18px; */
    /* border: 1px solid #e8edf3; */
    /* border-radius: 10px; */
    /* background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); */
    box-sizing: border-box;
}

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

.popular_products__title {
    font-family: 'Pretendard', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #212121;
}

.popular_products .point-color {
    color: #0062a6 !important;
}

.popular_products__paging {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 112px;
}

.popular_products__nav-btn,
.popular_top_products__nav-btn,
.recent_keyword_products__nav-btn,
.best_category_products__nav-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    background: #fff;
    color: #4a5a6a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .15s ease;
}

.popular_products__nav-btn:hover {
    border-color: #0062aa;
    color: #0062aa;
}

.popular_products__page-status {
    min-width: 34px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #5d6d7e;
}

.popular_products__current-page {
    color: #0062aa;
}

.popular_products__body {
    padding-top: 2px;
}

.popular_products__page {
    display: none;
}

.popular_products__page.active {
    display: block;
}

.popular_products__list {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    justify-content: space-between;
    border: 1px solid #e4e4e4;
    background: #fff;
    box-sizing: border-box;
}

.popular_products__item {
    flex: 1;
    min-width: 0;
    padding: 0 6px;
    box-sizing: border-box;
    text-align: center;
}

.popular_products__item:last-child {
    border-right: 0;
}

.popular_products__thumb-link {
    display: block;
    position: relative;
    max-width: 188px;
    height: auto;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s ease, transform .15s ease;
}

.popular_products__rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: #0062a6;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    border-radius: 0 0 4px 0;
    z-index: 1;
}

.popular_products__thumb-link:hover {
    border-color: #0062aa;
    transform: translateY(-1px);
}

.popular_products__thumb-link img {
    display: block;
    max-width: 188px;
    height: auto;
}

.popular_products__keyword {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    color: #212121;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    background: #e8f4fd;
    border-radius: 20px;
    box-sizing: border-box;
}

.popular_products__keyword:hover {
    color: #fff;
    background: #0062a6;
}

.popular_top_products,
.recent_keyword_products,
.best_category_products {
    margin: 16px 0 10px;
    /* padding: 16px 18px 18px; */
    /* border: 1px solid #e8edf3; */
    /* border-radius: 10px; */
    /* background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); */
    box-sizing: border-box;
    overflow: hidden;
}

.popular_top_products__header,
.recent_keyword_products__header,
.best_category_products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.popular_top_products__title,
.recent_keyword_products__title,
.best_category_products__title {
    font-family: 'Pretendard', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #212121;
}

.popular_top_products__title .point-color,
.recent_keyword_products__title .point-color,
.best_category_products__title .point-color {
    color: #0062a6 !important;
}

.popular_top_products__paging,
.recent_keyword_products__paging,
.best_category_products__paging {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 112px;
}

.popular_top_products__nav-btn:hover,
.recent_keyword_products__nav-btn:hover,
.best_category_products__nav-btn:hover {
    border-color: #0062aa;
    color: #0062aa;
}

.popular_top_products__page-status,
.recent_keyword_products__page-status,
.best_category_products__page-status {
    min-width: 34px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #5d6d7e;
}

.popular_top_products__current-page,
.recent_keyword_products__current-page,
.best_category_products__current-page {
    color: #0062aa;
}

.popular_top_products__page,
.recent_keyword_products__page,
.best_category_products__page {
    display: none;
}

.popular_top_products__page.active,
.recent_keyword_products__page.active,
.best_category_products__page.active {
    display: block;
}

.popular_top_products__list,
.recent_keyword_products__list,
.best_category_products__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.popular_top_products__item,
.recent_keyword_products__item,
.best_category_products__item {
    min-width: 0;
}

.popular_top_products__thumb-link,
.recent_keyword_products__thumb-link,
.best_category_products__thumb-link {
    display: block;
    width: 100%;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s ease, transform .15s ease;
}

.popular_top_products__thumb-link:hover,
.recent_keyword_products__thumb-link:hover,
.best_category_products__thumb-link:hover {
    border-color: #0062aa;
    transform: translateY(-1px);
}

.popular_top_products__thumb-link img,
.recent_keyword_products__thumb-link img,
.best_category_products__thumb-link img {
    display: block;
    width: 100%;
    height: auto;
}

.popular_top_products__name,
.recent_keyword_products__name,
.best_category_products__name {
    display: block;
    margin-top: 8px;
    color: #212121;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.popular_top_products__name:hover,
.recent_keyword_products__name:hover,
.best_category_products__name:hover {
    color: #0062aa;
}

.popular_top_products__price,
.recent_keyword_products__price,
.best_category_products__price {
    margin-top: 4px;
    min-height: 18px;
    text-align: right;
    line-height: 1.2;
}

.popular_top_products__price-member-only,
.recent_keyword_products__price-member-only,
.best_category_products__price-member-only {
    color: #0062aa;
    font-size: 12px;
    font-weight: 600;
}

.popular_top_products__price-value,
.recent_keyword_products__price-value,
.best_category_products__price-value {
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.popular_top_products__price-unit,
.recent_keyword_products__price-unit,
.best_category_products__price-unit {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

/* Keep 5th item (noline) title style identical to others in main sections */
.popular_top_products .f_list_box ul li.noline p.title,
.recent_keyword_products .f_list_box ul li.noline p.title,
.best_category_products .f_list_box ul li.noline p.title {
    font-size: 14px;
}
