.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 STYLE --- */
.t888-product-slider-wrapper {
    margin-bottom: 50px;
}

.t888-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    flex-wrap: wrap;
}

.t888-slider-header .slider-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    /* Căn giữa tiêu đề theo mẫu */
    text-transform: uppercase;
}

.t888-slider-header .title-icon img {
    height: 30px;
}

.t888-slider-header .slider-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.t888-slider-header .slider-nav div {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #6aaa81;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    /* Gỡ bỏ position: absolute của swiper default */
    margin: 0;
}

.t888-slider-header .slider-nav div::after {
    display: none;
    /* Gỡ dấu icon default của Swiper */
}

.t888-slider-header .slider-nav div:hover {
    background: #568b69;
}

.t888-slider-header .title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #ffb347, #ffcc33, #6aaa81);
    margin: 10px auto 0;
    flex-basis: 100%;
}

/* --- GRID SLIDE ITEM --- */
.grid-product-slide {
    padding: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.grid-product-slide:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.grid-product-slide .product-thumbnail-outer {
    border-radius: 10px;
    overflow: hidden;
}

.grid-product-slide .product-thumbnail-outer img {
    border-radius: 10px;
    transition: transform 0.8s ease;
}

.grid-product-slide:hover .product-thumbnail-outer img {
    transform: scale(1.05);
}

.new-circle,
.hot-circle {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    background: #4a90e2;
    /* Blue circle for NEW */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hot-circle {
    background: #f44336;
}

.grid-product-slide .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #6aaa81;
}

.grid-product-slide .regular-price {
    font-size: 14px;
    color: #999;
}

.grid-product-slide .product-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    margin-bottom: 15px !important;
}

.grid-product-slide .product-title a {
    color: #111;
}

.slide-action-wrap .grid3-quantity-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 36px;
    background: #f9f9f9;
}

.slide-action-wrap .grid3-quantity-input-wrapper span {
    padding: 0 10px;
    cursor: pointer;
    font-weight: 700;
    user-select: none;
}

.slide-action-wrap .grid3-qty-val {
    min-width: 25px;
    text-align: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.slide-add-cart-btn {
    width: 70px;
    height: 36px;
    background: linear-gradient(135deg, #6aaa81, #568b69);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slide-add-cart-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.slide-view-btn {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}