/* Live Spot Price — compact live metal price beside "Today's ... Prices" headings
   on sell pages (pricing-table + sell-metal templates). */

.prices-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.prices-heading-row h2 {
  margin-bottom: 0;
}

.live-spot-price {
  text-align: right;
  line-height: 1.2;
}

.live-spot-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.live-spot-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.live-spot-toggle {
  display: inline-flex;
  gap: 2px;
}

.live-spot-toggle .toggle-btn {
  background: transparent;
  border: 1px solid var(--gb-gold);
  color: var(--gb-gold);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.live-spot-toggle .toggle-btn:hover {
  background: rgba(201, 169, 98, 0.15);
}

.live-spot-toggle .toggle-btn.active {
  background: var(--gb-gold);
  color: #fff;
}

.live-spot-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-navy, #16284f);
  white-space: nowrap;
}

.live-spot-unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b6b6b;
}

/* Mobile: stack under the heading, left-aligned */
@media (max-width: 600px) {
  .prices-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .live-spot-price,
  .live-spot-value {
    text-align: left;
  }

  .live-spot-top {
    justify-content: flex-start;
  }
}
