/* ================================================================
   shop-list.css —— 店铺列表页独有样式
   引入顺序：common.css → shop-list.css
================================================================ */

/* 店铺卡片网格 */
.shop-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.shop-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    background: var(--white);
    transition: all 0.25s ease;
}
.shop-card:hover {
    border-color: var(--main);
    box-shadow: 0 2px 8px rgba(68, 114, 156, 0.12);
}
.shop-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.shop-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* 店铺列表页广告位 margin */
.shop-list .ad-area {
    margin: 0 0 30px 0;
}

/* 店铺列表响应式 */
@media (max-width: 768px) {
    .shop-card-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}