.wcqpd-root {
	--wcqpd-accent: #2563eb;
	--wcqpd-bg: #ffffff;
	--wcqpd-text: #172033;
	--wcqpd-muted: color-mix(in srgb, var(--wcqpd-text) 66%, transparent);
	--wcqpd-soft: color-mix(in srgb, var(--wcqpd-accent) 8%, var(--wcqpd-bg));
	--wcqpd-line: color-mix(in srgb, var(--wcqpd-text) 13%, transparent);
	--wcqpd-danger: #b42318;
	--wcqpd-success: #087a55;
	color: var(--wcqpd-text);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.5;
	margin: 28px auto;
	max-width: 980px;
	width: 100%;
}

.wcqpd-root *,
.wcqpd-root *::before,
.wcqpd-root *::after {
	box-sizing: border-box;
}

.wcqpd-root .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.wcqpd-shell {
	background: var(--wcqpd-bg);
	border: 1px solid var(--wcqpd-line);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
	overflow: hidden;
}

.wcqpd-root--donation .wcqpd-shell {
	display: block;
}

.wcqpd-product-media {
	background: var(--wcqpd-soft);
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.wcqpd-product-media::after {
	background: linear-gradient(145deg, transparent 40%, color-mix(in srgb, var(--wcqpd-accent) 12%, transparent));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.wcqpd-product-image {
	display: block;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
	transition: opacity 180ms ease;
	width: 100% !important;
}

.wcqpd-content {
	padding: clamp(26px, 5vw, 48px);
}

.wcqpd-root--donation .wcqpd-content {
	padding: clamp(26px, 5vw, 54px);
}

.wcqpd-header {
	margin: 0 0 28px;
}

.wcqpd-header h2 {
	color: var(--wcqpd-text) !important;
	font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
	font-weight: 750 !important;
	letter-spacing: -0.035em;
	line-height: 1.08 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wcqpd-subtitle {
	color: var(--wcqpd-muted);
	font-size: 1rem;
	margin-top: 12px;
	max-width: 720px;
}

.wcqpd-subtitle p {
	color: inherit;
	margin: 0;
	padding: 0;
}

.wcqpd-eyebrow {
	align-items: center;
	color: var(--wcqpd-accent);
	display: inline-flex;
	font-size: 0.74rem;
	font-weight: 750;
	gap: 7px;
	letter-spacing: 0.09em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.wcqpd-eyebrow svg {
	fill: currentColor;
	height: 17px;
	width: 17px;
}

.wcqpd-choice-group {
	border: 0;
	margin: 0 0 22px;
	min-width: 0;
	padding: 0;
}

.wcqpd-choice-group legend,
.wcqpd-field-label {
	color: var(--wcqpd-text);
	display: flex;
	font-size: 0.83rem;
	font-weight: 720;
	gap: 8px;
	letter-spacing: 0.01em;
	margin-bottom: 9px;
	padding: 0;
}

.wcqpd-selected-value {
	color: var(--wcqpd-accent);
	font-size: inherit;
	font-weight: 650;
}

.wcqpd-choice-list,
.wcqpd-amount-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.wcqpd-choice {
	cursor: pointer;
	display: inline-flex;
	margin: 0;
	position: relative;
}

.wcqpd-choice input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.wcqpd-choice span,
.wcqpd-amount-button {
	align-items: center;
	background: var(--wcqpd-bg);
	border: 1px solid var(--wcqpd-line) !important;
	border-radius: 999px;
	color: var(--wcqpd-text) !important;
	display: inline-flex;
	font-family: inherit;
	font-size: 0.9rem !important;
	font-weight: 650 !important;
	justify-content: center;
	line-height: 1 !important;
	margin: 0 !important;
	min-height: 42px;
	padding: 11px 17px !important;
	text-decoration: none !important;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wcqpd-choice:hover span,
.wcqpd-amount-button:hover {
	border-color: color-mix(in srgb, var(--wcqpd-accent) 45%, transparent) !important;
	transform: translateY(-1px);
}

.wcqpd-choice input:checked + span,
.wcqpd-amount-button.is-selected {
	background: var(--wcqpd-accent) !important;
	border-color: var(--wcqpd-accent) !important;
	box-shadow: 0 5px 14px color-mix(in srgb, var(--wcqpd-accent) 24%, transparent);
	color: #fff !important;
}

.wcqpd-choice input:focus-visible + span,
.wcqpd-amount-button:focus-visible,
.wcqpd-fund-selector:focus-visible,
.wcqpd-submit:focus-visible,
.wcqpd-stepper-button:focus-visible,
.wcqpd-custom-input:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--wcqpd-accent) 32%, transparent);
	outline-offset: 3px;
}

.wcqpd-choice.is-unavailable {
	cursor: not-allowed;
	opacity: 0.38;
}

.wcqpd-variation-summary {
	background: var(--wcqpd-soft);
	border-radius: 14px;
	margin: 4px 0 22px;
	padding: 15px 17px;
}

.wcqpd-variation-summary[hidden] {
	display: none;
}

.wcqpd-variation-price {
	color: var(--wcqpd-text);
	font-size: 1.2rem;
	font-weight: 750;
}

.wcqpd-variation-description {
	color: var(--wcqpd-muted);
	font-size: 0.88rem;
	margin-top: 4px;
}

.wcqpd-variation-description:empty {
	display: none;
}

.wcqpd-variation-description p {
	margin: 0;
}

.wcqpd-purchase-footer {
	align-items: end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin: 12px 0 20px;
}

.wcqpd-product-price {
	color: var(--wcqpd-text);
	font-size: 1.55rem;
	font-weight: 760;
	line-height: 1.2;
}

.wcqpd-product-price[aria-hidden="true"] {
	opacity: 0;
}

.wcqpd-product-price del,
.wcqpd-variation-price del {
	color: var(--wcqpd-muted);
	font-size: 0.8em;
	font-weight: 500;
	margin-right: 5px;
	opacity: 0.75;
}

.wcqpd-product-price ins,
.wcqpd-variation-price ins {
	background: transparent;
	color: inherit;
	text-decoration: none;
}

.wcqpd-quantity {
	flex: 0 0 auto;
}

.wcqpd-stepper {
	align-items: center;
	background: var(--wcqpd-soft);
	border: 1px solid var(--wcqpd-line);
	border-radius: 999px;
	display: flex;
	height: 42px;
	overflow: hidden;
}

.wcqpd-stepper input {
	-moz-appearance: textfield;
	appearance: textfield;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--wcqpd-text) !important;
	font: 700 0.92rem/1 inherit !important;
	height: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: center;
	width: 38px !important;
}

.wcqpd-stepper input::-webkit-inner-spin-button,
.wcqpd-stepper input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wcqpd-stepper-button {
	align-items: center;
	background: transparent !important;
	border: 0 !important;
	border-radius: 50%;
	color: var(--wcqpd-text) !important;
	display: flex;
	font-family: inherit !important;
	font-size: 1.15rem !important;
	height: 40px;
	justify-content: center;
	margin: 0 !important;
	padding: 0 !important;
	width: 38px;
}

.wcqpd-stepper-button:hover {
	color: var(--wcqpd-accent) !important;
}

.wcqpd-submit {
	align-items: center;
	background: var(--wcqpd-accent) !important;
	border: 0 !important;
	border-radius: 14px !important;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--wcqpd-accent) 28%, transparent);
	color: #fff !important;
	cursor: pointer;
	display: flex !important;
	font-family: inherit !important;
	font-size: 1rem !important;
	font-weight: 730 !important;
	gap: 10px;
	justify-content: center;
	line-height: 1.2 !important;
	margin: 0 !important;
	min-height: 54px;
	padding: 15px 20px !important;
	text-align: center;
	text-decoration: none !important;
	transition: box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
	width: 100%;
}

.wcqpd-submit:hover:not(:disabled) {
	box-shadow: 0 13px 30px color-mix(in srgb, var(--wcqpd-accent) 36%, transparent);
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.wcqpd-submit:disabled {
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.48;
}

.wcqpd-submit-arrow {
	fill: currentColor;
	height: 20px;
	transition: transform 180ms ease;
	width: 20px;
}

.wcqpd-submit:hover .wcqpd-submit-arrow {
	transform: translateX(3px);
}

.wcqpd-submit-spinner {
	animation: wcqpd-spin 700ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	border-top-color: #fff;
	display: none;
	height: 19px;
	width: 19px;
}

.wcqpd-root.is-loading .wcqpd-submit-spinner {
	display: block;
}

.wcqpd-root.is-loading .wcqpd-submit-arrow {
	display: none;
}

@keyframes wcqpd-spin {
	to {
		transform: rotate(360deg);
	}
}

.wcqpd-stock-message,
.wcqpd-secure-note {
	align-items: center;
	color: var(--wcqpd-muted);
	display: flex;
	font-size: 0.78rem;
	gap: 7px;
	justify-content: center;
	margin: 12px 0 0;
	text-align: center;
}

.wcqpd-secure-note svg {
	fill: currentColor;
	height: 15px;
	width: 15px;
}

.wcqpd-notice {
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 650;
	margin-top: 15px;
	padding: 12px 15px;
}

.wcqpd-notice[hidden] {
	display: none;
}

.wcqpd-notice.is-error {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: var(--wcqpd-danger);
}

.wcqpd-notice.is-success {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	color: var(--wcqpd-success);
}

.wcqpd-donation-guide {
	align-items: center;
	background: var(--wcqpd-soft);
	border-radius: 14px;
	display: inline-flex;
	gap: 11px;
	margin: 0 0 20px;
	padding: 10px 14px 10px 10px;
}

.wcqpd-guide-number {
	align-items: center;
	background: var(--wcqpd-accent);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 0.78rem;
	font-weight: 750;
	height: 29px;
	justify-content: center;
	width: 29px;
}

.wcqpd-donation-guide strong,
.wcqpd-donation-guide small {
	display: block;
}

.wcqpd-donation-guide strong {
	color: var(--wcqpd-text);
	font-size: 0.86rem;
}

.wcqpd-donation-guide small {
	color: var(--wcqpd-muted);
	font-size: 0.73rem;
}

.wcqpd-fund-categories {
	display: grid;
	gap: 25px;
}

.wcqpd-fund-category {
	margin: 0;
}

.wcqpd-category-heading {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
	margin: 0 0 12px;
}

.wcqpd-category-heading span {
	background: var(--wcqpd-line);
	display: block;
	height: 1px;
}

.wcqpd-category-heading h3 {
	color: var(--wcqpd-muted) !important;
	font-size: 0.74rem !important;
	font-weight: 760 !important;
	letter-spacing: 0.08em;
	line-height: 1.2 !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: center;
	text-transform: uppercase;
}

.wcqpd-fund-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcqpd-fund-card {
	margin: 0;
}

.wcqpd-fund-selector {
	align-items: center;
	background: var(--wcqpd-bg) !important;
	border: 1px solid var(--wcqpd-line) !important;
	border-radius: 14px !important;
	box-shadow: 0 2px 7px rgba(15, 23, 42, 0.04);
	color: var(--wcqpd-text) !important;
	cursor: pointer;
	display: flex;
	font-family: inherit !important;
	gap: 16px;
	justify-content: space-between;
	margin: 0 !important;
	min-height: 76px;
	padding: 14px 15px 14px 17px !important;
	text-align: left;
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.wcqpd-fund-selector:hover {
	border-color: color-mix(in srgb, var(--wcqpd-accent) 46%, transparent) !important;
	box-shadow: 0 5px 14px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
}

.wcqpd-fund-card.is-active .wcqpd-fund-selector {
	background: var(--wcqpd-soft) !important;
	border-color: var(--wcqpd-accent) !important;
	box-shadow: 0 7px 18px color-mix(in srgb, var(--wcqpd-accent) 14%, transparent);
}

.wcqpd-selector-copy {
	display: block;
	min-width: 0;
}

.wcqpd-selector-copy strong,
.wcqpd-selector-copy small {
	display: block;
}

.wcqpd-selector-copy strong {
	color: var(--wcqpd-text);
	font-size: 0.98rem;
	font-weight: 740;
	line-height: 1.25;
}

.wcqpd-selector-copy small {
	color: var(--wcqpd-muted);
	font-size: 0.78rem;
	line-height: 1.4;
	margin-top: 4px;
}

.wcqpd-selector-indicator {
	align-items: center;
	background: var(--wcqpd-bg);
	border: 1.5px solid color-mix(in srgb, var(--wcqpd-text) 24%, transparent);
	border-radius: 50%;
	display: flex;
	flex: 0 0 auto;
	height: 27px;
	justify-content: center;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
	width: 27px;
}

.wcqpd-selector-indicator svg {
	fill: #fff;
	height: 17px;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 160ms ease, transform 160ms ease;
	width: 17px;
}

.wcqpd-fund-card.is-active .wcqpd-selector-indicator {
	background: var(--wcqpd-accent);
	border-color: var(--wcqpd-accent);
	transform: scale(1.04);
}

.wcqpd-fund-card.is-active .wcqpd-selector-indicator svg {
	opacity: 1;
	transform: scale(1);
}

.wcqpd-fund-amounts {
	background: color-mix(in srgb, var(--wcqpd-accent) 4%, var(--wcqpd-bg));
	border: 1px solid color-mix(in srgb, var(--wcqpd-accent) 24%, transparent);
	border-radius: 13px;
	display: none;
	margin-top: 9px;
	padding: 15px;
}

.wcqpd-fund-card.is-active .wcqpd-fund-amounts {
	display: block;
}

.wcqpd-amount-prompt {
	color: var(--wcqpd-text);
	font-size: 0.76rem;
	font-weight: 720;
	margin: 0 0 9px;
}

.wcqpd-amount-button {
	background: var(--wcqpd-soft) !important;
	cursor: pointer;
	flex: 1 1 auto;
	min-width: 68px;
}

.wcqpd-amount-button .woocommerce-Price-currencySymbol {
	margin-right: 1px;
}

.wcqpd-custom-amount {
	align-items: center;
	color: var(--wcqpd-muted);
	display: flex;
	font-size: 0.78rem;
	font-weight: 650;
	gap: 10px;
	justify-content: space-between;
	margin-top: 12px;
}

.wcqpd-money-input {
	align-items: center;
	background: var(--wcqpd-bg);
	border: 1px solid var(--wcqpd-line);
	border-radius: 10px;
	display: flex;
	height: 40px;
	overflow: hidden;
	width: 126px;
}

.wcqpd-money-input:focus-within {
	border-color: var(--wcqpd-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--wcqpd-accent) 13%, transparent);
}

.wcqpd-money-input b {
	color: var(--wcqpd-muted);
	font-size: 0.88rem;
	font-weight: 600;
	padding-left: 11px;
}

.wcqpd-custom-input {
	-moz-appearance: textfield;
	appearance: textfield;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--wcqpd-text) !important;
	font: 650 0.9rem/1 inherit !important;
	height: 38px !important;
	margin: 0 !important;
	min-width: 0;
	padding: 7px 9px 7px 4px !important;
	width: 100% !important;
}

.wcqpd-custom-input::-webkit-inner-spin-button,
.wcqpd-custom-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wcqpd-custom-input:focus {
	outline: 0;
}

.wcqpd-donation-total {
	align-items: center;
	background: var(--wcqpd-soft);
	border: 1px solid color-mix(in srgb, var(--wcqpd-accent) 18%, transparent);
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	margin: 20px 0 14px;
	padding: 16px 18px;
}

.wcqpd-donation-total span,
.wcqpd-donation-total small {
	display: block;
}

.wcqpd-donation-total span {
	color: var(--wcqpd-text);
	font-size: 0.83rem;
	font-weight: 720;
}

.wcqpd-donation-total small {
	color: var(--wcqpd-muted);
	font-size: 0.72rem;
	margin-top: 2px;
}

.wcqpd-total-value {
	color: var(--wcqpd-text);
	font-size: 1.55rem;
	font-weight: 780;
	letter-spacing: -0.025em;
}

.wcqpd-editor-message {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	color: #9a3412;
	margin: 16px 0;
	padding: 12px 15px;
}

@media (max-width: 760px) {
	.wcqpd-shell {
		display: block;
	}

	.wcqpd-product-media {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.wcqpd-fund-grid {
		grid-template-columns: 1fr;
	}

	.wcqpd-content,
	.wcqpd-root--donation .wcqpd-content {
		padding: 25px 20px;
	}

	.wcqpd-header {
		margin-bottom: 23px;
	}
}

@media (max-width: 480px) {
	.wcqpd-root {
		margin: 18px auto;
	}

	.wcqpd-shell {
		border-radius: 18px;
	}

	.wcqpd-purchase-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.wcqpd-quantity {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}

	.wcqpd-field-label {
		margin: 0;
	}

	.wcqpd-fund-card {
		padding: 16px;
	}

	.wcqpd-custom-amount {
		align-items: stretch;
		flex-direction: column;
	}

	.wcqpd-money-input {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wcqpd-root *,
	.wcqpd-root *::before,
	.wcqpd-root *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
