/* public/components/pricing/pricing.css */

.calc-result {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  justify-items: center;
}

.calc-rate {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  font-family: var(--mono);
  line-height: 1;
}

.calc-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  vertical-align: super;
  margin-left: 4px;
}

.calc-label {
  font-size: 11px;
  color: var(--text2);
  margin-top: 6px;
}

.calc-breakdowns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.calc-breakdown {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.calc-breakdown-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--mono);
}

.calc-breakdown-label {
  font-size: 9px;
  color: var(--text3);
  margin-top: 2px;
}

.range-wrapper {
  margin-bottom: 12px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text2);
  margin-bottom: 6px;
}

.range-val {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--text);
  background: var(--bg3);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 11px;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent) var(--val, 0%), var(--bg3) var(--val, 0%));
  border-radius: 2px;
  outline: none;
  direction: ltr;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  height: 4px;
  border-radius: 2px;
}

input[type=range]::-moz-range-track {
  background: var(--bg3);
  height: 4px;
  border-radius: 2px;
}

input[type=range]::-moz-range-progress {
  background: var(--accent);
  height: 4px;
  border-radius: 2px;
}
