.token-pricing-widget {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.token-pricing__label {
  display: block;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.token-pricing__range {
  width: 100%;
  margin-bottom: 0.75rem;
  accent-color: #2563eb;
}

.token-pricing__range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  cursor: pointer;
}

.token-pricing__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  cursor: pointer;
}

.token-pricing__range::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  cursor: pointer;
}

.token-pricing__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.token-pricing__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.token-pricing__quantity-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.token-pricing__price {
  text-align: right;
}

.token-pricing__unit,
.token-pricing__total {
  display: block;
  font-size: 1.1rem;
}

.token-pricing__message {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #1e3a8a;
  min-height: 1.25rem;
  transition: opacity 0.2s ease;
  opacity: 0;
}

.token-pricing__message.is-visible {
  opacity: 1;
}

.token-pricing-offer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.token-pricing-offer__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .token-pricing-offer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
  }
}
.token-pricing-offer__tiers {
  display: none;
}
.token-pricing-offer__primary,
.token-pricing-offer__tiers {
  background: #f8fafc;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.token-pricing-offer__primary .token-pricing-widget {
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}

.token-pricing-offer__hint {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #475569;
}

.token-pricing-offer__tiers-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.token-pricing-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-pricing-tier-list__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-left: 4px solid #2563eb;
}

.token-pricing-tier-list__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.token-pricing-tier-list__message {
  display: block;
  color: #475569;
  font-size: 0.95rem;
}
