.products-banner-slider {
    position: relative;
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pbs-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.pbs-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.pbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
}

.pbs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0,0,0,0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease;
}

.pbs-btn.prev { left: 10px; padding-right: 2px; }
.pbs-btn.next { right: 10px; padding-left: 2px; }

.pbs-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.pbs-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.pbs-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pbs-dot.active {
    background: #0d6efd;
    width: 18px;
    border-radius: 10px;
    border-color: transparent;
}

#listView table {
    table-layout: fixed;
    width: 100%;
}

#listView th:nth-child(1),
#listView td:nth-child(1) { width: 35%; }

#listView th:nth-child(2),
#listView td:nth-child(2) { width: 15%; }

#listView th:nth-child(3),
#listView td:nth-child(3) { width: 10%; }

#listView th:nth-child(4),
#listView td:nth-child(4) { width: 15%; }

#listView th:nth-child(5),
#listView td:nth-child(5) { width: 25%; }

@media (max-width: 768px) {

    #listView {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #listView table {
        min-width: 0 !important;
        width: 100% !important;
    }

}

#loadMoreContainer {
    margin-top: 4rem;
    margin-bottom: 5rem;
}

#btnLoadMore {
    background-color: #212529;
    color: #ffffff;
    border: 1px solid #212529;
    border-radius: 8px;
    padding: 14px 45px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

#btnLoadMore:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(3px);
}

#btnLoadMore:active {
    transform: translateY(-1px);
}

#btnLoadMore:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    opacity: 0.8;
    cursor: not-allowed;
}

.all-products-loaded {
    color: #adb5bd;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.all-products-loaded::before,
.all-products-loaded::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #dee2e6;
}

.all-products-loaded::before { right: 100%; }
.all-products-loaded::after { left: 100%; }

.end-of-products {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 40px 0 10px;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.end-of-products::before,
.end-of-products::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #d1d5db,
        transparent
    );
}

@media (max-width: 768px) {
    .products-page-content {
        margin-top: 24px;
    }

    #filterToggleBtn[aria-expanded="true"] .filter-chevron {
    transform: rotate(180deg);
    }
    .filter-chevron {
        transition: transform 0.3s ease;
    }
}