* {
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-touch-callout: none;
}

input, select, textarea {
  font-size: 16px; /* iOS拡大防止 */
}

.tab-active {
  color: #1e40af;
  border-top: 3px solid #1e40af;
}
.tab-inactive {
  color: #64748b;
  border-top: 3px solid transparent;
}

.suggest-box {
  position: absolute;
  z-index: 30;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-height: 220px;
  overflow-y: auto;
  width: 100%;
}
.suggest-item {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item:active, .suggest-item.highlight {
  background: #dbeafe;
}

.chip-btn.chip-selected {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

/* 一覧・編集タブの店舗フィルターチップ（すべて/松原店/忠岡店） */
.store-filter-chip.chip-selected {
  background: #0f766e;
  color: white;
  border-color: #0f766e;
}

/* 産地の行選択ボタン(あ行・か行…)は少し濃い背景で区別 */
.gyou-btn {
  background: #e2e8f0 !important;
}
.gyou-btn.chip-selected {
  background: #1e40af !important;
}

.numpad-input {
  background: #f8fafc;
  cursor: pointer;
}

.numpad-panel {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.4rem;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  padding: 0.6rem;
}

.numpad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.numpad-key {
  padding: 0.9rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  background: #f1f5f9;
  border-radius: 0.5rem;
  color: #1e293b;
}
.numpad-key:active {
  background: #dbeafe;
}

.numpad-done {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.7rem 0;
  background: #1e40af;
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
}
