.title-banner-section {
    margin-bottom: 0px;
    padding: 20px 0;
    background: linear-gradient(90deg, #FF77E6 0%, #FF28D8 100%);
}

.title-banner-section.best {
    background: #FF77E6;
}

.title-banner-section.time_deal {
    background: #FC123E;
}

.title-banner-section.rookie {
    background: #66A2FF;
}

.title-banner {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.title-banner h2 {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.title-banner p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-transform: capitalize;
}

.promotional-main-image {
    width: 100%;
    margin-bottom: 16px;
}

.promotional-main-image img {
    width: 100%;
}

.product-carousel {
    margin-bottom: 80px;
}

.product-card-image-wrapper img {
    width: 100%;
    height: auto;
}

.category-tabs-list {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.category-tabs-list::-webkit-scrollbar {
    display: none;
}

.category-tabs-item {
    padding: 8px 16px;
    border: 1px solid #E5E5EC;
    border-radius: 100px;
    background: #fff;
    color: #767676;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: -0.35px;
}

.category-tabs-item.is-active {
    border-color: #111;
    font-weight: 600;
    color: #111;
}

/* 로딩 화면 */
.loading-img {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    left: 0;
    top: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loading-img img {
    width: 30px;
}