.arun-donation-form {
	max-width: 480px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: inherit;
}

.adf-step {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.adf-step-header {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.adf-step:not(.adf-step-current):not(.adf-step-done) .adf-step-header {
	cursor: default;
	opacity: 0.5;
}

.adf-step-title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.adf-step-summary {
	flex: 1;
	text-align: right;
	color: #777;
	font-size: 14px;
}

.adf-step-chevron {
	color: #999;
	transition: transform 0.15s ease;
}

.adf-step-current .adf-step-chevron {
	transform: rotate(180deg);
}

.adf-step-body {
	display: none;
	padding: 0 24px 24px;
}

.adf-step-current .adf-step-body {
	display: block;
}

.adf-toggle {
	display: flex;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 20px;
}

.adf-toggle-btn {
	flex: 1;
	padding: 12px;
	background: #f5f5f5;
	border: none;
	cursor: pointer;
	font-weight: 600;
	color: #555;
}

.adf-toggle-btn.active {
	background: #fff;
	color: #c0202f;
}

.adf-amounts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}

.adf-amount-btn {
	padding: 14px 8px;
	border: 1px solid #ddd;
	background: #f5f5f5;
	border-radius: 6px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	color: #222;
}

.adf-amount-btn.active {
	background: #c0202f;
	color: #fff;
	border-color: #c0202f;
}

.adf-amount-btn[hidden] {
	display: none;
}

.adf-other-wrap {
	margin-bottom: 16px;
}

.adf-other-wrap input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-sizing: border-box;
}

.adf-monthly-preset-note {
	font-size: 13px;
	color: #777;
	margin: -4px 0 16px;
}

.adf-fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 8px;
}

.adf-field span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #444;
}

.adf-field input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-sizing: border-box;
}

.adf-error {
	color: #c0202f;
	font-size: 13px;
	margin: 8px 0 0;
}

.adf-step-footer {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
}

.adf-btn {
	padding: 14px 24px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.adf-btn-next {
	background: #c0202f;
	color: #fff;
	margin-left: auto;
}

.adf-btn-next:hover {
	background: #9e1a26;
}

.adf-btn-back {
	background: #f0f0f0;
	color: #444;
}

.adf-paypal-button-container {
	min-height: 45px;
}

.adf-status-notice,
.adf-thankyou {
	text-align: center;
	font-size: 14px;
	color: #555;
	padding: 14px;
	background: #f5f5f5;
	border-radius: 6px;
	margin: 0 0 16px;
}

.adf-thankyou {
	color: #1a7a3d;
	background: #eaf6ee;
	font-weight: 600;
}
