.next-purchase-options__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--rust);
  color: var(--rust);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 13.5px;
  transition: background-color .15s ease, color .15s ease;
}

.next-purchase-options__toggle:hover {
  background: var(--rust);
  color: #fff;
}

.next-purchase-options__toggle .js-toggle-icon {
  transition: transform .15s ease;
  display: inline-block;
}

.next-purchase-options {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-margin-top: 110px;
}

.next-purchase-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border-right: 3px solid var(--muted);
}

.next-purchase-option-row__btn {
  order: 1;
}

.next-purchase-option-row__icon {
  order: 2;
}

.next-purchase-option-row__info {
  order: 3;
}

.next-purchase-badge {
  order: 4;
}

.next-purchase-option-row--installment {
  border-right-color: var(--teal);
}

.next-purchase-option-row--credit {
  border-right-color: var(--gold);
}

.next-purchase-option-row__icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.low-stock-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--rust);
  background: rgba(192, 71, 46, .08);
  padding: 6px 10px;
  border-radius: var(--radius);
  margin: 10px 0;
  width: fit-content;
}

.next-purchase-option-row + .next-purchase-option-row {
  border-top: 1px solid var(--line);
}

.next-purchase-option-row__btn {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--rust);
  border: 1px solid var(--rust);
  color: #fff;
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 13px;
  transition: background-color .15s ease, border-color .15s ease;
}

.next-purchase-option-row__btn:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  color: #fff;
}

.next-purchase-option-row__btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.next-purchase-option-row__info {
  flex: 1;
  min-width: 0;
}

.next-purchase-option-row__price {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

.next-purchase-option-row__desc {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}

.next-purchase-badge {
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: var(--radius);
  flex-shrink: 0;
  white-space: nowrap;
  text-align: center;
  min-width: 64px;
  background: var(--surface, rgba(0, 0, 0, .04));
  color: var(--muted);
}

.next-purchase-badge--installment {
  background: var(--teal-soft);
  color: var(--teal);
}

.next-purchase-badge--credit {
  background: var(--gold);
  color: #fff;
}
