/* Wishing Well - Wedding contribution form */

.wishing-well-form {
	max-width: 420px;
	margin: 0 auto;
	padding: 2rem;
	font-family: inherit;
}

.wishing-well-form-inner {
	background: #fafafa;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wishing-well-section {
	margin-bottom: 1.5rem;
}

.wishing-well-section:last-of-type {
	margin-bottom: 0;
}

.wishing-well-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
	font-size: 0.95rem;
}

.wishing-well-amounts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wishing-well-amount-btn,
.wishing-well-custom-wrap {
	flex: 0 0 auto;
}

.wishing-well-amount-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4rem;
	padding: 0.6rem 1rem;
	border: 2px solid #d4d4d4;
	background: #fff;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.wishing-well-amount-btn:hover {
	border-color: #a78b71;
	background: #fdfbf9;
}

.wishing-well-amount-btn.selected {
	border-color: #8b7355;
	background: #f5efe8;
	color: #5c4a3a;
}

.wishing-well-custom-wrap {
	display: inline-flex;
	align-items: center;
	border: 2px solid #d4d4d4;
	background: #fff;
	border-radius: 8px;
	padding: 0 0.75rem;
	min-width: 6rem;
}

.wishing-well-custom-wrap:focus-within {
	border-color: #8b7355;
	outline: none;
}

.wishing-well-custom-prefix {
	color: #666;
	font-size: 1rem;
	margin-right: 0.25rem;
}

.wishing-well-custom-amount {
	border: none;
	background: transparent;
	width: 4rem;
	padding: 0.6rem 0;
	font-size: 1rem;
}

.wishing-well-custom-amount:focus {
	outline: none;
}

.wishing-well-input,
.wishing-well-textarea {
	width: 100%;
	padding: 0.65rem 0.9rem;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
}

.wishing-well-input:focus,
.wishing-well-textarea:focus {
	border-color: #8b7355;
	outline: none;
}

.wishing-well-textarea {
	resize: vertical;
	min-height: 80px;
}

.wishing-well-error {
	color: #c53030;
	font-size: 0.875rem;
	margin-top: 0.35rem;
}

.wishing-well-submit-wrap {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e8e8e8;
}

.wishing-well-submit {
	width: 100%;
	padding: 0.9rem 1.5rem;
	background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.1s;
}

.wishing-well-submit:hover:not(:disabled) {
	opacity: 0.95;
}

.wishing-well-submit:active:not(:disabled) {
	transform: scale(0.99);
}

.wishing-well-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.wishing-well-notice {
	padding: 1rem;
	background: #fef3c7;
	border: 1px solid #f59e0b;
	border-radius: 8px;
	color: #92400e;
}
