.tag-page{
    max-width:1400px;
    margin:0 auto;
    padding:28px 32px 50px;
}

.tag-hero{
    display:flex;
    align-items:center;
    gap:22px;
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
    margin-bottom:28px;
}

.tag-hero__icon{
    width:82px;
    min-width:82px;
    height:82px;
    border-radius:20px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.tag-hero h1{
    color:#06123a;
    font-size:36px;
    margin-bottom:8px;
}

.tag-hero p{
    color:#667085;
    line-height:1.55;
}

.tag-products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:20px;
}

.tag-product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.tag-product-card__image{
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:18px;
}

.tag-product-card__image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.tag-product-card__body{
    padding:18px;
}

.tag-product-card__body span{
    display:inline-flex;
    font-size:12px;
    color:#006BFF;
    font-weight:900;
    margin-bottom:8px;
}

.tag-product-card__body h2{
    font-size:18px;
    line-height:1.35;
    margin-bottom:10px;
}

.tag-product-card__body h2 a{
    color:#06123a;
}

.tag-product-card__body p{
    color:#667085;
    font-size:14px;
    line-height:1.45;
    margin-bottom:12px;
}

.tag-product-card__body strong{
    color:#ef233c;
}

.tag-empty{
    background:#fff;
    border-radius:18px;
    padding:24px;
    color:#667085;
    font-weight:800;
}