/* ============================================
   PRACTICAL TIPS — COMPONENTS
============================================ */

.tip-block {
  margin-bottom: 20px;
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tip-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.tip-icon-circle.navy  { background: var(--navy); }
.tip-icon-circle.verm  { background: var(--vermillion); }
.tip-icon-circle.gold  { background: var(--gold); }

.tip-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.tip-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  margin-left: 6px;
}

.tip-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  padding-left: 40px;
}

.tip-body p { margin-bottom: 6px; }
.tip-body p:last-child { margin-bottom: 0; }

.tip-body strong {
  color: var(--navy);
  font-weight: 600;
}

/* JR Pass table */
.jr-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
}

.jr-table thead tr {
  background: var(--navy);
  color: white;
}

.jr-table thead th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.jr-table thead th:not(:first-child) { text-align: center; }

.jr-table tbody tr { border-bottom: 0.5px solid rgba(0,0,0,0.08); }

.jr-table tbody tr:nth-child(even) { background: rgba(15,21,53,0.03); }

.jr-table tbody tr.highlight-row {
  background: rgba(201,150,58,0.1);
  font-weight: 600;
}

.jr-table td {
  padding: 8px 12px;
  color: var(--text);
  vertical-align: middle;
}

.jr-table td:not(:first-child) { text-align: center; }

.jr-table td .yen {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.jr-table td .eur {
  font-size: 10px;
  color: var(--text-light);
  display: block;
}

.rec-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Locker size grid */
.locker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.locker-card {
  background: var(--white);
  border: 1px solid rgba(15,21,53,0.1);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}

.locker-size-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.locker-emoji { font-size: 20px; display: block; margin-bottom: 4px; }

.locker-price {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.locker-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* How-to steps */
.steps-list {
  padding-left: 40px;
  margin-top: 8px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}

.step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Tip inline callout */
.tip-callout {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

.tip-callout.info {
  background: rgba(15,21,53,0.05);
  border-left: 2.5px solid var(--navy);
  color: var(--text);
}

.tip-callout.gold-note {
  background: rgba(201,150,58,0.08);
  border-left: 2.5px solid var(--gold);
  color: #6b5010;
}

.tip-callout.warn {
  background: rgba(200,75,49,0.06);
  border-left: 2.5px solid var(--vermillion);
  color: var(--vermillion);
}

/* ============================================
   MOBILE
============================================ */
@media (max-width: 640px) {
  .tip-body,
  .steps-list { padding-left: 0; }

  .jr-table { font-size: 11px; }
  .jr-table thead th { padding: 6px 8px; font-size: 10px; }
  .jr-table td { padding: 6px 8px; }

  .locker-grid { grid-template-columns: 1fr; }

  .jr-table,
  .locker-grid { margin-left: 0 !important; width: 100% !important; }

  .tip-callout { margin-left: 0 !important; }
}
