#livePriceBox,
#vaultCalculator {
  margin-bottom: 16px;
}

.vault-price-head,
.vault-meta-row,
.vault-calculator-grid,
.vault-preview-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vault-price-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vault-price-sub {
  color: var(--muted2);
  font-size: 11px;
  line-height: 1.6;
}

.vault-refresh-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.22);
}

.vault-refresh-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.vault-price-grid,
.vault-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.vault-price-grid {
  margin-bottom: 12px;
}

.vault-stat,
.vault-preview-card,
.vault-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.vault-stat-label,
.vault-field-label {
  color: var(--muted2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vault-stat-value,
.vault-preview-value,
.vault-mini-value {
  margin-top: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  word-break: break-word;
}

.vault-meta-row {
  justify-content: space-between;
  color: var(--muted2);
  font-size: 10px;
  line-height: 1.5;
}

.vault-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vault-input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
}

.vault-input:focus {
  outline: none;
  border-color: rgba(79, 217, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(79, 217, 255, 0.12);
}

.vault-preview-card {
  flex: 1 1 220px;
}

.vault-preview-note {
  margin-top: 8px;
  color: var(--muted2);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .vault-price-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vault-meta-row {
    flex-direction: column;
  }
}
