/* landing-rate-to-calc — 稅率表列可點帶入試算 */
table.info-table tbody tr.rate-row {
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
table.info-table tbody tr.rate-row:hover,
table.info-table tbody tr.rate-row:focus-within {
  background: #ecfdf5 !important;
  box-shadow: inset 3px 0 0 #16a34a;
}
table.info-table tbody tr.rate-row:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: -2px;
}
table.info-table tbody tr.rate-row .rate-row__hint {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
table.info-table tbody tr.rate-row:hover .rate-row__hint,
table.info-table tbody tr.rate-row:focus-within .rate-row__hint {
  opacity: 1;
}
/* 運送方式 select 加大觸控 */
.landing-ship-select {
  min-height: 44px;
  font-size: 1rem !important;
  font-weight: 600;
  cursor: pointer;
}
html.has-rate-to-calc table.info-table thead th:first-child::after {
  content: "（點列帶入試算）";
  font-weight: 500;
  font-size: 0.78em;
  opacity: 0.85;
  margin-left: 0.35em;
}
@media (prefers-reduced-motion: reduce) {
  table.info-table tbody tr.rate-row {
    transition: none;
  }
}
