/* Activist Blog Donations — front-end styles */

.abc-donation-form {
	max-width: 480px;
	margin: 24px 0;
	padding: 24px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fff;
}

.abc-donation-amounts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.abc-amount-choice {
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 8px 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}

.abc-donation-form input[type="text"],
.abc-donation-form input[type="email"],
.abc-donation-form input[type="number"] {
	width: 100%;
	padding: 8px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.abc-donation-method {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin: 16px 0;
}

.abc-donate-button {
	background: #E4002B;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
}

.abc-donate-button:hover {
	background: #B8001F;
}

.abc-anon-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.85rem;
	color: #555;
	line-height: 1.4;
}

/* Manual payment details block */

.abc-payment-details {
	max-width: 480px;
	margin: 24px 0;
	padding: 20px 24px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #faf7f8;
}

.abc-pay-option {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #ddd;
}

.abc-pay-option:last-child {
	border-bottom: none;
}

.abc-copy-field {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}

.abc-copy-field code {
	background: #fff;
	border: 1px solid #ccc;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.9rem;
	word-break: break-all;
}

.abc-copy-btn {
	border: 1px solid #E4002B;
	background: #fff;
	color: #E4002B;
	border-radius: 4px;
	padding: 5px 10px;
	font-size: 0.85rem;
	cursor: pointer;
	white-space: nowrap;
}

.abc-copy-btn:hover {
	background: #E4002B;
	color: #fff;
}

.abc-warning {
	color: #E4002B;
	font-size: 0.85rem;
	margin: 4px 0 0;
}

.abc-note {
	font-size: 0.85rem;
	color: #666;
}

/* Donation total widget — premium treatment */

.abd-donation-total {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 18px;
	background: linear-gradient(155deg, #00543D 0%, #006A4E 45%, #8a0016 100%);
	box-shadow: 0 10px 30px rgba(0, 84, 61, 0.25);
}

/* A soft diagonal light sweep for a bit of polish/depth, not an animation
   that would distract — just a static highlight. */
.abd-total-shine {
	position: absolute;
	top: -60%;
	left: -20%;
	width: 70%;
	height: 220%;
	background: linear-gradient(120deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 60%);
	transform: rotate(12deg);
	pointer-events: none;
}

.abd-total-inner {
	position: relative;
	padding: 26px 20px 22px;
	text-align: center;
	color: #fff;
}

.abd-total-line {
	display: block;
}

.abd-total-amount {
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.abd-total-currency {
	font-size: 1rem;
	font-weight: 600;
	margin-left: 5px;
	opacity: 0.9;
}

.abd-total-label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	opacity: 0.8;
	margin-top: 4px;
}

.abd-donate-now-btn {
	display: block;
	margin: 18px auto 0;
	max-width: 220px;
	background: #fff;
	color: #8a0016;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 11px 20px;
	border-radius: 30px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.18);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.abd-donate-now-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.22);
	color: #B8001F;
}

.abd-accepted-methods {
	margin: 14px 0 0;
	font-size: 0.7rem;
	letter-spacing: 0.03em;
	color: rgba(255,255,255,0.75);
}


.abd-donor-list {
	margin-bottom: 16px;
}

.abd-donor-list-heading {
	font-size: 0.95rem;
	margin: 0 0 10px;
}

.abd-donor-row {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 0.85rem;
}

.abd-donor-top {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.abd-donor-details {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 0.75rem;
	color: #999;
	margin-top: 2px;
}

.abd-donor-method {
	font-weight: 600;
	color: #E4002B;
}

.abd-donor-ref {
	font-family: monospace;
	letter-spacing: 0.02em;
}

.abd-donor-name {
	font-weight: 600;
	color: #333;
}

.abd-donor-amount {
	color: #E4002B;
	font-weight: 600;
}

.abd-no-donors {
	font-size: 0.85rem;
	color: #888;
}

/* FAQ accordion */

.abd-faq {
	max-width: 700px;
	margin: 32px 0;
}

.abd-faq-heading {
	font-size: 1.2rem;
	margin: 0 0 16px;
	color: #00543D;
}

.abd-faq-item {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 4px 18px;
	background: #fff;
}

.abd-faq-item[open] {
	border-color: #006A4E;
}

.abd-faq-question {
	padding: 12px 0;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 24px;
}

.abd-faq-question::-webkit-details-marker {
	display: none;
}

.abd-faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #E4002B;
	transition: transform 0.15s ease;
}

.abd-faq-item[open] .abd-faq-question::after {
	content: '−';
}

.abd-faq-answer {
	padding-bottom: 14px;
	color: #555;
	font-size: 0.92rem;
	line-height: 1.6;
}

.abd-faq-answer p {
	margin: 0 0 10px;
}

.abd-faq-answer p:last-child {
	margin-bottom: 0;
}
