/* 品牌详情页：快速切换标签 */
.brand-tag-bar {
    margin-bottom: 25px;
}
.bar-title {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-list a {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}
.tag-list a:hover {
    border-color: var(--main);
    color: var(--main);
}
.tag-list a.active {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

/* 产品网格卡片 */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.product-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.25s ease;
}
.product-card:hover {
    border-color: var(--main);
    box-shadow: 0 2px 8px rgba(68,114,156,0.12);
}
.card-img {
    width: 100%;
    height: 160px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}
.card-img img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}
.card-info {
    padding: 14px;
}
.card-title {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
    margin-bottom: 8px;
}
.card-price {
    color: var(--price);
    font-weight: 600;
    font-size: 15px;
}

/* 品牌头部信息块（logo+简介） */
.brand-header{
    padding:24px;
    border:1px solid var(--border);
    border-radius:6px;
    background:var(--white);
    margin-bottom:30px;
    display:flex;
    gap:24px;
    align-items:center;
}
.brand-header-logo{
    width:140px;
    height:140px;
    flex-shrink:0;
    border:1px solid var(--border);
    background:var(--bg-gray);
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.brand-header-logo img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}
.brand-header-info h1{
    font-size:22px;
    color:var(--text-dark);
    margin-bottom:10px;
}
.brand-header-desc{
    font-size:14px;
    color:var(--text-gray);
    line-height:1.7;
}
@media(max-width:768px){
    .brand-header{
        flex-direction:column;
        text-align:center;
        gap:16px;
        padding:16px;
    }
    .brand-header-logo{
        width:100px;
        height:100px;
    }
}