/* DETRIPA /plan-list/ 検索UI(常時表示版)スタイル
   新規クラスはすべて detripa-search- プレフィックス。
   既存の .plan-card / .detripa-plan-list-wrap 等とは無関係。

   チップの配色はトップページ .dpt42-m-scene の実値
   (detripa-premium-top-stable-v2020-new-card-compact-fix.php
   1145〜1154行、#detripa-premium-top-v41 .dpt42-m-scene の
   最終適用ルール)から取得:
     background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,244,.94))
     border: 1px solid rgba(176,135,83,.24)
     border-radius: 16px
     box-shadow: 0 7px 16px rgba(87,55,28,.055)
     color: #16110e / font-size: 12.8px / line-height: 1.12
   アクティブ色は既存の赤グラデーション(#ff6b6b → #ff8870)を使用。 */

.detripa-search-root {
  max-width: 860px;
  margin: 0 auto 14px;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

.detripa-search-form {
  margin: 0 !important;
}

.detripa-search-input {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  border: 1px solid #ead6d0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  font-size: 14px !important;
}

.detripa-search-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px; /* box-shadowが見切れないための余白 */
}
.detripa-search-row::-webkit-scrollbar {
  display: none;
}

.detripa-search-subrow[hidden] {
  display: none;
}

.detripa-search-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,244,.94));
  border: 1px solid rgba(176,135,83,.24);
  box-shadow: 0 7px 16px rgba(87,55,28,.055);
  color: #16110e;
  text-decoration: none;
  font-size: 12.8px;
  line-height: 1.12;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.detripa-search-chip.is-active {
  background: linear-gradient(135deg, #ff6b6b, #ff8870);
  border: 1px solid #ff7a70;
  color: #fff;
  box-shadow: 0 10px 22px rgba(255,90,95,.22);
}

@media (max-width: 480px) {
  .detripa-search-root {
    padding: 0 14px;
  }
  .detripa-search-chip {
    padding: 7px 13px;
    font-size: 12px;
  }
}
