/* ================================================================
   shop.css —— 店铺详情页独有样式
   引入顺序：common.css → shop.css
================================================================ */

/* 店铺信息卡片 */
.shop-info {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    background: #fff;
    margin-bottom: 25px;
}
.shop-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.shop-desc {
    font-size: 14px;
    color: var(--text-gray);
}

/* 快速切换店铺标签栏 */
.switch-tag-bar {
    margin-bottom: 25px;
}
.bar-tip {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.switch-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.switch-tag {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #fff;
}
.switch-tag:hover {
    border-color: var(--main);
    color: var(--main);
    background: #f8fafc;
}
.switch-tag.active {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

/* 店铺详情页广告位 margin */
.shop-detail .ad-area {
    margin: 0 0 30px 0;
}