/* ===== Area Pills (khu vực) ===== */
.pj-area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}

.pj-area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 23, 42, .65);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    text-decoration: none;
    white-space: nowrap;
    transition: all .15s ease;
}

.pj-area-pill:hover {
    border-color: rgba(245, 197, 66, .5);
    color: #0A2647;
    background: rgba(245, 197, 66, .08);
}

.pj-area-pill.is-active {
    background: #0A2647;
    color: #fff;
    border-color: #0A2647;
}

.pj-area-pill__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    background: rgba(255, 255, 255, .2);
    color: inherit;
}

.pj-area-pill.is-active .pj-area-pill__count {
    background: rgba(245, 197, 66, .3);
    color: #F5C542;
}

/* ===== Filter Bar ===== */

.pj-filter {
    margin: 18px 0 48px;
}

.pj-filter__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

/* Search area (chiếm dài như mẫu) */
.pj-filter__search {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .06);
}

.pj-filter__icon {
    font-size: 14px;
    line-height: 1;
}

.pj-filter__input {
    width: 100%;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px;
    color: var(--text-muted);
}

.pj-filter__input::placeholder {
    color: var(--text-muted);
}

/* Select pills */
.pj-filter__field {
    flex: 0 0 auto;
}

.pj-filter__select {
    min-width: 160px;
    height: 44px;
    padding: 0 38px 0 14px;
    margin-bottom: 0px;
    border-radius: 999px;
    border: 1px solid #F3F4F6;
    background: #fff;
    color: var(--text-main-light);
    font-weight: 600;
    font-size: 13px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(15, 23, 42, .45) 50%),
        linear-gradient(135deg, rgba(15, 23, 42, .45) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 18px,
        calc(100% - 13px) 18px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.pj-filter__select:focus {
    border-color: rgba(245, 197, 66, .55);
    box-shadow: 0 0 0 4px rgba(245, 197, 66, .18);
}

.pj-filter__btn {
    flex: 0 0 auto;
    padding: 8px 30px;
    margin-bottom: 0px;
    border-radius: 20px;
    border: 0;
    cursor: pointer;
    background: var(--color-cta-bg);
    letter-spacing: 1.4px;
    color: var(--color-primary);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(10, 38, 71, .25);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.pj-filter__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(10, 38, 71, .30);
}

.pj-filter__btn:active {
    transform: translateY(0);
    opacity: .92;
}

/* Responsive: xuống hàng như hợp lý */
@media (max-width: 1024px) {
    .pj-filter__bar {
        flex-wrap: wrap;
    }

    .pj-filter__search {
        flex: 1 1 100%;
    }

    .pj-filter__field {
        flex: 1 1 160px;
    }

    .pj-filter__select {
        width: 100%;
        min-width: 0;
    }

    .pj-filter__btn {
        width: 100%;
    }
}

/* ===== Empty State ===== */
.pj-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 16px;
}

.pj-empty__icon {
    font-size: 48px;
    line-height: 1;
    filter: grayscale(1);
    opacity: .35;
}

.pj-empty__title {
    margin: 0;
    font-size: 22px;
    font-weight: var(--weight-black);
    color: #0f172a;
    letter-spacing: -0.01em;
}

.pj-empty__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(15, 23, 42, .55);
    max-width: 480px;
}

.pj-empty__desc strong {
    color: #0f172a;
    font-weight: 700;
}

.pj-empty__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.pj-empty__btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s ease;
}

.pj-empty__btn--primary {
    background: #0A2647;
    color: #fff;
}

.pj-empty__btn--primary:hover {
    background: #0d3060;
    transform: translateY(-1px);
}

.pj-empty__btn--ghost {
    background: transparent;
    color: #0A2647;
    border: 1.5px solid rgba(10, 38, 71, .25);
}

.pj-empty__btn--ghost:hover {
    border-color: rgba(245, 197, 66, .55);
    background: rgba(245, 197, 66, .08);
}

/* ===== Header giống mẫu ===== */

.pj-head {
    background: #fff;
    padding: 26px 0 18px;
    margin-bottom: 81px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.pj-bc {
    font-size: 11px;
    letter-spacing: .14em;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(10, 38, 71, .55);
    margin-bottom: 10px;
}

.pj-bc__link {
    color: rgba(10, 38, 71, .55);
    text-decoration: none;
    transition: opacity .12s ease;
}

.pj-bc__link:hover {
    opacity: .85;
}

.pj-bc__sep {
    margin: 0 8px;
    color: rgba(10, 38, 71, .35);
}

.pj-bc__current {
    color: #F5C542;
    /* vàng */
}

.pj-head__title {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: var(--weight-black);
    letter-spacing: -0.02em;
    color: #0A2647;
    /* xanh đậm */
}

.pj-head__sub {
    margin: 0;
    max-width: 720px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(15, 23, 42, .55);
}

@media (max-width: 768px) {
    .pj-head__title {
        font-size: 30px;
    }
}