/* Shop listing — luxury polish (black + #FFD333 gold) */

.shop-page {
    font-family: 'Roboto', sans-serif;
    padding: 8px 0 64px;
    color: #222;
}

.shop-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 28px;
}

.shop-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.shop-chip:hover {
    background: #f4f4f4;
    color: #222;
    text-decoration: none;
}
.shop-chip.is-active {
    background: #FFD333;
    border-color: #FFD333;
    color: #111;
    font-weight: 700;
}
.shop-chip.is-active:hover {
    background: #f0c520;
    border-color: #f0c520;
    color: #111;
}

.shop-heading {
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
    margin: 10px 0 28px;
    padding-bottom: 14px;
}
.shop-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: #FFD333;
}

.shop-count {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-left: 10px;
}
