/* =========================
   店舗一覧 (page-shops-list)
   ========================= */

.page-shops-list .page-hero {
  padding: 24px 0 16px;
}

.page-shops-list .page-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #181b24;
  margin-bottom: 4px;
}

.page-shops-list .page-subtitle {
  font-size: 13px;
  color: var(--muted);
}

/* フィルタバー */

.page-shops-list .filter-bar {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  box-shadow: 0 6px 14px rgba(20, 25, 50, 0.04);
}

.page-shops-list .filter-label {
  font-size: 12px;
  color: #4b5060;
  font-weight: 600;
}

.page-shops-list .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.page-shops-list .filter-select,
.page-shops-list .filter-input {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 20, 40, 0.12);
  background: #f9f9ff;
  color: #12121a;
  outline: none;
  min-width: 150px;
}

.page-shops-list .filter-input {
  padding-left: 12px;
}

.page-shops-list .filter-select:focus,
.page-shops-list .filter-input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(55, 164, 255, 0.3);
  background: #ffffff;
}

.page-shops-list .filter-reset {
  font-size: 11px;
  color: #3a5ad9;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* SHOP GRID（共通.shop-gridを上書き調整） */

.page-shops-list .shop-grid {
  margin-top: 12px;
}

.page-shops-list .shop-card {
  /* 共通の .shop-card に hover 等は任せつつ、微調整が必要ならここへ */
}

.page-shops-list #shop-empty {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   SHOPS LIST: フィルタ（絞り込み）最終調整
   ========================= */

.page-shops-list .filter-bar {
  align-items: center;
}

.page-shops-list .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* 共通CSSの select { width:100% } を上書き */
.page-shops-list .filter-bar select,
.page-shops-list .filter-bar .filter-select,
.page-shops-list .filter-bar .filter-input {
  width: auto;
  min-width: 180px;
  max-width: 100%;
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
}

/* 「絞り込み」「絞り込みをクリア」を中央揃え */
.page-shops-list .filter-label,
.page-shops-list .filter-reset {
  display: inline-flex;
  align-items: center;
  height: 32px;
  line-height: 1;
  white-space: nowrap;
}

.page-shops-list .filter-reset {
  margin-left: 6px;
}

@media (max-width: 640px) {
  .page-shops-list .filter-bar {
    align-items: stretch;
  }

  .page-shops-list .filter-bar select,
  .page-shops-list .filter-bar .filter-select,
  .page-shops-list .filter-bar .filter-input {
    width: 100%;
    min-width: 0;
    height: auto;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .page-shops-list .filter-label,
  .page-shops-list .filter-reset {
    height: auto;
  }
}

/* =========================
   SHOPS LIST: 店舗カード内の文字サイズ調整
   ========================= */

.page-shops-list .shop-status,
.page-shops-list .shop-area {
  font-size: 11px;
  line-height: 1.4;
}
.page-shops-list .shop-badge {
  font-size: 11px;
}