﻿.tp-cat--listing .tp-cat__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0 6px 0;
}

.tp-cat--listing .tp-cat__h1 {
    margin: 0;
    font-size: 20px; 
    line-height: 1.18; 
    letter-spacing: -.015em; 
    font-weight: 700; 
    color: #111827;
}

.tp-cat--listing .tp-cat__meta {
    font-size: 12px; 
    color: #6b7280;
    font-weight: 400; 
    white-space: nowrap;
}

.tp-lst__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0 10px 0;
}

.tp-lst__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px; 
    padding: 0 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(17,24,39,.12);
    box-shadow: 0 10px 22px rgba(17,24,39,.06);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: -.01em;
    transition: transform .10s ease, box-shadow .12s ease;
}

    .tp-lst__chip:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(17,24,39,.10);
    }

.tp-lst__chip--ghost {
    background: rgba(17,24,39,.04);
    border-color: rgba(17,24,39,.10);
    box-shadow: none;
}

.tp-lst__priceGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.tp-lst__lbl {
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 400; 
    margin-bottom: 6px;
}

.tp-lst__in {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(17,24,39,.14);
    padding: 0 12px;
    outline: none;
    font-size: 13px; 
    font-weight: 400; 
    background: #fff;
}

    .tp-lst__in:focus {
        border-color: rgba(17,24,39,.28);
    }

.tp-lst__priceBtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.tp-lst__apply {
    height: 40px;
    border-radius: 999px;
    border: 1px solid #111827;
    background: #111827;
    color: #fff;
    padding: 0 14px;
    font-weight: 700; 
    cursor: pointer;
}

.tp-lst__clear {
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(17,24,39,.14);
    background: #fff;
    color: #111827;
    padding: 0 14px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 920px) {
    .tp-cat--listing .tp-cat__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
