/* 门店列表页样式 */
.store-index { padding: 0; }
.store-search-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 10px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 12px;
}
.store-search-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.store-search-bar .form-control {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 8px 14px;
    font-size: 14px;
    height: auto;
    background: #f8f8f8;
    flex: 1;
    min-width: 120px;
}
.store-search-bar select.form-control {
    flex: 0 0 auto;
    min-width: 90px;
}
.store-search-bar .btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
}
.store-search-bar .btn-search {
    background: var(--primary-color, #E20413);
    color: #fff;
    border: none;
}
.store-search-bar .btn-reset {
    background: #f0f0f0;
    color: #666;
    border: none;
}

/* 门店卡片 */
.store-list { padding: 0 12px 12px; }
.store-item {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.15s;
}
.store-item:active { transform: scale(0.98); }
.store-item-body {
    display: flex;
    gap: 12px;
}
.store-item-img {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
    background: #f0f0f0;
}
.store-item-info {
    flex: 1;
    min-width: 0;
}
.store-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}
.store-item-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.store-item-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    background: #e3f2fd;
    color: #1976d2;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
}
.store-item-meta {
    margin: 0 0 4px;
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.store-item-meta i {
    color: var(--primary-color, #E20413);
    font-size: 12px;
}
.store-item-address {
    margin: 0 0 4px;
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.store-item-extra {
    margin: 0;
    color: #999;
    font-size: 12px;
    display: flex;
    gap: 12px;
}
.store-item-extra i {
    color: #bbb;
    font-size: 12px;
}
.store-item-distance {
    margin-left: auto;
    color: var(--primary-color, #E20413);
    font-weight: 600;
}

/* 空状态 */
.store-empty {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}
.store-empty i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 12px;
}

/* 分页 */
.pagination-container {
    padding: 10px 12px 20px;
}
