/* ===== CATEGORY SLIDER ===== */
.cat-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0 1.5rem;
}
.cat-track {
    display: flex;
    gap: 1.25rem;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.cat-card {
    flex: 0 0 220px;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
}
.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); }
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.65) 100%);
}
.cat-card-body {
    position: relative;
    z-index: 2;
    padding: 1rem 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.cat-card-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .2rem;
}
.cat-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.cat-card-count {
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    margin-top: .2rem;
}
.cat-badge {
    position: absolute;
    top: .7rem;
    right: .7rem;
    z-index: 3;
    background: var(--accent);
    color: #000;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .15rem .5rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.cat-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    background: rgba(15,20,30,.8);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s;
}
.cat-arrow:hover { background: var(--accent); color: #000; }
.cat-arrow-left  { left: .5rem; }
.cat-arrow-right { right: .5rem; }
.cat-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1rem;
}
.cat-dot {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    transition: background .3s, width .3s;
}
.cat-dot.active { background: var(--accent); width: 38px; }



.custom-pagination .pagination {
    gap: .4rem;
}

.custom-pagination .page-link {
    background: #1a2335;
    border: 1px solid rgba(255,107,0,.15);
    color: #ff6b00;
    border-radius: 10px;
    padding: .6rem .95rem;
    transition: .25s ease;
    font-weight: 600;
}

.custom-pagination .page-link:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255,107,0,.22);
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg,#ff6b00,#ff8533);
    border-color: #ff6b00;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,107,0,.3);
}

.custom-pagination .page-item.disabled .page-link {
    background: #141e2e;
    border-color: #283044;
    color: #6b7280;
}
