/* RL MARKET 2.0 - PRICE HISTORY */
.rl-price-history-section {
  margin-top: 2rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #E2E8F0;
}
.rl-price-history-section h2 {
  font-size: 1.125rem; font-weight: 800;
  color: #0F172A; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.rl-price-history-section h2 i { color: #10B981; }

.rl-price-history-wrap {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.5rem;
  align-items: center;
}

.rl-price-history-info {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 1rem;
  background: #F8FAFC;
  border-radius: 12px;
}
.rl-ph-row {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: .8125rem; color: #64748B;
}
.rl-ph-row strong { color: #0F172A; font-size: 1rem; }
.rl-ph-diff {
  text-align: center;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: .8125rem;
  font-weight: 700;
}
.rl-ph-diff.lowest { background: #D1FAE5; color: #065F46; }
.rl-ph-diff.high { background: #FEE2E2; color: #B91C1C; }

@media (max-width: 768px) {
  .rl-price-history-wrap { grid-template-columns: 1fr; }
}
