/*
 * Product Count Badge — persistent M-AllMyCity Design System component.
 * Lives inside heroes; generic catalog contexts stay icon-free while activity
 * pages can inherit the visual icon of their primary activity category.
 */
.mmc-product-count-badge{
    align-items:center;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.30);
    border-radius:999px;
    box-sizing:border-box;
    color:#fff;
    display:inline-flex;
    font-weight:800;
    gap:8px;
    line-height:1.15;
    max-width:100%;
    text-shadow:0 2px 8px rgba(3,17,36,.42);
    width:max-content;
}
.mmc-product-count-badge--business{
    font-size:15px;
    margin-top:16px;
    min-height:42px;
    padding:9px 16px;
}
.mmc-product-count-badge--compact{
    font-size:13px;
    margin-top:13px;
    min-height:34px;
    padding:7px 12px;
}
.mmc-product-count-badge__icon{
    display:block;
    flex:0 0 auto;
    height:22px;
    object-fit:contain;
    width:22px;
}
.mmc-product-count-badge--compact .mmc-product-count-badge__icon{
    height:18px;
    width:18px;
}
.mmc-product-count-badge__label{
    display:block;
    min-width:0;
}

/* The activity hero already controls its own vertical rhythm. */
.mmc-hero .mmc-product-count-badge{position:relative;z-index:1}

/* Catalog and Category hero pills use the same component, placed over media. */
.mmc-catalog-taxonomy-banner .mmc-product-count-badge,
.mmc-category-hub__hero .mmc-product-count-badge,
.mmc-editorial-banner .mmc-product-count-badge{
    position:relative;
    z-index:2;
}

@media(max-width:599px){
    .mmc-product-count-badge--business{
        font-size:13px;
        margin-top:12px;
        min-height:38px;
        padding:8px 13px;
    }
    .mmc-product-count-badge--compact{
        font-size:11.5px;
        margin-top:11px;
        min-height:31px;
        padding:6px 10px;
    }
    .mmc-product-count-badge--business .mmc-product-count-badge__icon{
        height:20px;
        width:20px;
    }
    .mmc-product-count-badge--compact .mmc-product-count-badge__icon{
        height:16px;
        width:16px;
    }
}
