/* IMZA Invest — Fee Comparison Bar Chart */
.imza-fee-chart {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.imza-fee-chart-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 .5rem;
}
.imza-fee-chart-sub {
  font-size: .85rem;
  color: #64748b;
  margin: 0 0 1.5rem;
}
.imza-fee-chart-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.imza-fee-chart-tab {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all .15s;
}
.imza-fee-chart-tab:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.imza-fee-chart-tab.active {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  color: white;
}
.imza-fee-chart-bars {
  display: grid;
  gap: 14px;
}
.imza-fee-chart-row {
  display: grid;
  grid-template-columns: 130px 1fr 80px;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
}
@media (max-width: 560px) {
  .imza-fee-chart-row {
    grid-template-columns: 100px 1fr 70px;
    gap: 8px;
    font-size: .82rem;
  }
}
.imza-fee-chart-label {
  font-weight: 600;
  color: #1e293b;
  text-align: right;
}
.imza-fee-chart-label a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed #cbd5e1;
}
.imza-fee-chart-label a:hover {
  color: #10b981;
  border-bottom-color: #10b981;
}
.imza-fee-chart-bar-wrap {
  position: relative;
  height: 28px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
}
.imza-fee-chart-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 6px;
  transition: width .6s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 4px;
}
.imza-fee-chart-bar.cheap {
  background: linear-gradient(90deg, #10b981, #059669);
}
.imza-fee-chart-bar.medium {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}
.imza-fee-chart-bar.expensive {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}
.imza-fee-chart-bar.winner::after {
  content: "👑";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.imza-fee-chart-value {
  font-weight: 700;
  color: #1e293b;
  font-variant-numeric: tabular-nums;
}
.imza-fee-chart-value .sub {
  display: block;
  font-weight: 400;
  font-size: .72rem;
  color: #64748b;
}
.imza-fee-chart-note {
  font-size: .78rem;
  color: #64748b;
  margin: 1.25rem 0 0;
  line-height: 1.5;
}
.imza-fee-chart-note strong {
  color: #1e293b;
}
