/* Ash & Anchor — tackle price list page */

/* ============== TIER BADGE COLORS ============== */

.tier-t-line .tier-badge    { background: #e8eef7; color: #1e3a6d; border: 1px solid #a8bde0; }
.tier-t-line .tier-rule     { background: #a8bde0; }

.tier-t-floats .tier-badge  { background: #ddf1f5; color: #1a6b7c; border: 1px solid #8dd3de; }
.tier-t-floats .tier-rule   { background: #8dd3de; }

.tier-t-hooks .tier-badge   { background: #fff5e0; color: #9a6a00; border: 1px solid #f5c842; }
.tier-t-hooks .tier-rule    { background: #f5c842; }

.tier-t-weights .tier-badge { background: #f0efed; color: #4a4540; border: 1px solid #bbb5ae; }
.tier-t-weights .tier-rule  { background: #bbb5ae; }

.tier-t-terminal .tier-badge { background: #eee8f5; color: #5a3a8a; border: 1px solid #c0a8e0; }
.tier-t-terminal .tier-rule  { background: #c0a8e0; }

.tier-t-plastics .tier-badge { background: #e8f5ee; color: #276b42; border: 1px solid #a8d8b8; }
.tier-t-plastics .tier-rule  { background: #a8d8b8; }

.tier-t-jigs .tier-badge    { background: #f0f5e8; color: #4a6a20; border: 1px solid #b8d090; }
.tier-t-jigs .tier-rule     { background: #b8d090; }

.tier-t-bait .tier-badge    { background: #efe9de; color: #5a4020; border: 1px solid #c8a878; }
.tier-t-bait .tier-rule     { background: #c8a878; }

.tier-t-hardbait .tier-badge { background: #fef0e8; color: #a04000; border: 1px solid #f0a870; }
.tier-t-hardbait .tier-rule  { background: #f0a870; }

.tier-t-tools .tier-badge   { background: #eaedf0; color: #3a4a58; border: 1px solid #a8b8c8; }
.tier-t-tools .tier-rule    { background: #a8b8c8; }

.tier-t-kits .tier-badge    { background: #1e3a6d; color: var(--gold); border: 1px solid var(--gold); }
.tier-t-kits .tier-rule     { background: var(--gold); }

.tier-t-combos .tier-badge  { background: #1e3a6d; color: var(--gold); border: 1px solid var(--gold); }
.tier-t-combos .tier-rule   { background: var(--gold); }

/* ============== TACKLE GRID ============== */

.tackle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 4px;
}

/* ============== TACKLE ITEM ============== */

.tackle-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(43,29,24,0.08);
}

.tackle-item-info {
  flex: 1;
  min-width: 0;
}

.tackle-item-name {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.tackle-item-note {
  font-family: var(--sans);
  font-size: 0.70rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1px;
  line-height: 1.4;
}

.tackle-item-price {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--lake-deep);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 420px) {
  .tackle-grid { grid-template-columns: 1fr; gap: 0; }
}
