.t888-list-loadmore-btn {
    font-size: .875rem;
    padding: 1rem 2rem;
    color: var(--secondary-color);
    background: var(--primary-color);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-flex;
}

.t888-list-loadmore-wrap {
    text-align: center;
}

.t888-list-loadmore-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.t888-list-loadmore-btn.loading::before {
    order: 2;
}

/* =================================================
   PRODUCT SLIDER – Header & Nav only
   Card styles come from t888-sale-box.css via
   shared classes: t888-sale-box-wrapper + product-grid-layout-3
   ================================================= */
.t888-product-slider-wrapper {
    margin-bottom: 50px;
    width: 100%;
}

/* ---- Header ---- */
.t888-slider-header {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.t888-slider-header .slider-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--third-color, #6aaa81);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
}

.t888-slider-header .title-icon img {
    height: 26px;
    display: inline-block;
}

/* Colored underline: red / yellow / green */
.title-underline {
    display: flex;
    justify-content: center;
    gap: 0;
    height: 4px;
    margin-bottom: 8px;
}

.title-underline .ul-red {
    width: 55px;
    height: 4px;
    background: #e13a3a;
}

.title-underline .ul-yellow {
    width: 55px;
    height: 4px;
    background: #f5c300;
}

.title-underline .ul-green {
    width: 55px;
    height: 4px;
    background: var(--third-color, #6aaa81);
}

/* ---- Nav arrows ---- */
.t888-slider-header .slider-nav {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    gap: 8px;
}

.t888-slider-header .slider-nav div {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--third-color, #6aaa81);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    position: static;
    margin: 0;
}

.t888-slider-header .slider-nav div::after {
    display: none;
}

.t888-slider-header .slider-nav div:hover {
    background: var(--primary-color, #333);
}

/* ---- Swiper slides need height auto ---- */
.t888-product-slider-wrapper .swiper-slide {
    height: auto;
}