.next-cash-qty-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.next-qty-stepper {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--line);
	border-radius: 999px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--paper);
}

.next-qty-stepper__btn {
	width: 34px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	font-size: 16px;
	color: var(--ink);
	cursor: pointer;
	line-height: 1;
}

.next-qty-stepper__btn:hover {
	background: rgba(0, 0, 0, .04);
}

.next-qty-stepper__input {
	width: 34px;
	height: 40px;
	text-align: center;
	border: none;
	border-right: 1px solid var(--line);
	border-left: 1px solid var(--line);
	font-size: 14px;
	color: var(--ink);
	background: transparent;
	-moz-appearance: textfield;
}

.next-qty-stepper__input::-webkit-outer-spin-button,
.next-qty-stepper__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.next-cash-qty-row .btn-buy {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13.5px;
	padding-left: 8px;
	padding-right: 8px;
}
.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__info {
	order: 2;
}

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

.next-purchase-option-row__icon {
	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;
	margin-inline-start: 6px;
}

.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;
}