/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/blocks/campaign/style.css ***!
  \***********************************************************************************************************************************************************************************/
/* Campaign/Contributions Block Styles */
/* Note: shared.css is enqueued separately */

.fcp-campaign {
	margin: 24px 0;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--fcp-border, #e0e0e0);
	border-radius: var(--fcp-radius, 12px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Header */
.fcp-campaign__header {
	margin-bottom: 16px;
}

.fcp-campaign__title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--fcp-text, #1a1a1a);
}

/* Progress */
.fcp-campaign__progress {
	margin-bottom: 16px;
}

.fcp-campaign__progress-bar {
	height: 10px;
	background: #e8e8e8;
	border-radius: 5px;
	overflow: hidden;
}

.fcp-campaign__progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--fcp-success, #28a745), #20c997);
	border-radius: 5px;
	transition: width 0.5s ease;
}

.fcp-campaign__progress-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 14px;
}

.fcp-campaign__raised {
	font-weight: 600;
	color: var(--fcp-success, #28a745);
}

.fcp-campaign__goal {
	color: var(--fcp-text-muted, #666);
}

/* Contributors */
.fcp-campaign__contributors {
	font-size: 14px;
	color: var(--fcp-text-muted, #666);
	margin-bottom: 16px;
}

/* Tier Buttons - CSS Grid */
.fcp-campaign__tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

/* Tier buttons use shared .fcp-option-btn styles */

/* Custom Amount */
.fcp-campaign__custom-amount {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--fcp-border, #e0e0e0);
}

.fcp-campaign__amount-input-wrapper {
	display: flex;
	align-items: center;
	flex: 1;
	border: 2px solid var(--fcp-border, #e0e0e0);
	border-radius: var(--fcp-radius-sm, 8px);
	overflow: hidden;
	transition: border-color 0.2s;
}

.fcp-campaign__amount-input-wrapper:focus-within {
	border-color: var(--fcp-primary, #2271b1);
}

.fcp-campaign__currency-symbol {
	padding: 12px 14px;
	font-size: 16px;
	font-weight: 600;
	color: var(--fcp-text-muted, #666);
	background: var(--fcp-bg-light, #f8f9fa);
	border-right: 1px solid var(--fcp-border, #e0e0e0);
}

.fcp-campaign__amount-input {
	flex: 1;
	padding: 12px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	border: none;
	outline: none;
	min-width: 0;
}

.fcp-campaign__amount-input::placeholder {
	color: #999;
	font-weight: 400;
	font-size: 14px;
}

/* Custom amount button - uses shared .fcp-btn styles */
.fcp-campaign__custom-btn {
	padding: 12px 20px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--fcp-primary, #2271b1);
	border: none;
	border-radius: var(--fcp-radius-sm, 8px);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, opacity 0.2s;
}

.fcp-campaign__custom-btn:hover:not(:disabled) {
	background: var(--fcp-primary-hover, #135e96);
}

.fcp-campaign__custom-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Checkout Form */
.fcp-campaign__checkout {
	padding-top: 20px;
	border-top: 1px solid var(--fcp-border, #e0e0e0);
}

.fcp-campaign__selected-amount {
	font-size: 24px;
	font-weight: 700;
	color: var(--fcp-success, #28a745);
	text-align: center;
	margin-bottom: 20px;
}

.fcp-campaign__form-row {
	margin-bottom: 16px;
}

.fcp-campaign__form-row-group {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.fcp-campaign__form-row-group .fcp-campaign__form-row {
	flex: 1;
	margin-bottom: 0;
}

.fcp-campaign__form-row label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	margin-bottom: 6px;
}

.fcp-campaign__email,
.fcp-campaign__name {
	width: 100%;
	padding: 12px;
	font-family: inherit;
	font-size: 16px;
	border: 2px solid var(--fcp-border, #e0e0e0);
	border-radius: var(--fcp-radius-sm, 8px);
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.fcp-campaign__email:focus,
.fcp-campaign__name:focus {
	border-color: var(--fcp-primary, #2271b1);
	outline: none;
}

.fcp-campaign__card-element {
	padding: 14px 12px;
	border: 2px solid var(--fcp-border, #e0e0e0);
	border-radius: var(--fcp-radius-sm, 8px);
	background: #fff;
	transition: border-color 0.2s;
}

.fcp-campaign__card-element.StripeElement--focus {
	border-color: var(--fcp-primary, #2271b1);
}

/* Checkout buttons */
.fcp-campaign__actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.fcp-campaign__submit {
	flex: 1;
	padding: 14px 24px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--fcp-success, #28a745);
	border: none;
	border-radius: var(--fcp-radius-sm, 8px);
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
}

.fcp-campaign__submit:hover:not(:disabled) {
	background: var(--fcp-success-hover, #218838);
}

.fcp-campaign__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.fcp-campaign__spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: fcp-campaign-spin 0.8s linear infinite;
}

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

.fcp-campaign__back {
	padding: 14px 20px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	color: var(--fcp-text-muted, #666);
	background: #f0f0f0;
	border: none;
	border-radius: var(--fcp-radius-sm, 8px);
	cursor: pointer;
	transition: background 0.2s;
}

.fcp-campaign__back:hover {
	background: #e0e0e0;
}

/* Error */
.fcp-campaign__error {
	margin-top: 16px;
	padding: 12px 16px;
	font-size: 14px;
	color: var(--fcp-error-text, #721c24);
	background: var(--fcp-error-bg, #f8d7da);
	border: 1px solid var(--fcp-error-border, #f5c6cb);
	border-radius: var(--fcp-radius-sm, 8px);
}

.fcp-campaign__error:empty {
	display: none;
}

/* Success */
.fcp-campaign__success {
	text-align: center;
	padding: 30px 20px;
}

.fcp-campaign__success-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.fcp-campaign__success-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--fcp-success, #28a745);
	margin: 0 0 8px 0;
}

.fcp-campaign__success-message {
	font-size: 14px;
	color: var(--fcp-text-muted, #666);
	margin: 0;
}


/*# sourceMappingURL=style-index.css.map*/