/**
 * Frontend styles for WooCommerce Variable Donations
 *
 * @package WC_Variable_Donations
 */

/* Donation form styling */
.donation-product-wrapper {
	margin-bottom: 2em;
}

.donation-description {
	margin-bottom: 1.5em;
	line-height: 1.6;
}

.donation-amount-wrapper {
	margin-bottom: 1.5em;
}

.donation-amount-wrapper label {
	display: block;
	margin-bottom: 0.5em;
	font-weight: bold;
}

.donation-input-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	width: 100%;
	max-width: 300px;
}

.donation-currency-symbol {
	padding: 0 0.75em;
	background: #f7f7f7;
	border: 1px solid #d3ced2;
	border-right: none;
	line-height: 2.5em;
	border-radius: 4px 0 0 4px;
}

.donation-amount-input {
	flex: 1;
	height: 2.617924em;
	padding: 0 0.75em;
	border: 1px solid #d3ced2;
	border-radius: 0 4px 4px 0;
}

.donation-minimum-note {
	font-size: 0.9em;
	color: #777;
	margin-bottom: 1em;
}

.donation-amount-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-bottom: 1.5em;
}

.donation-quick-select {
	background: #f7f7f7;
	border: 1px solid #d3ced2;
	padding: 0.5em 1em;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #515151;
	font-size: 0.9em;
}

.donation-quick-select:hover {
	background: #ebebeb;
}

.donation-quick-select.active {
	background: #ebe9eb;
	border-color: #aaa;
}

.donation-input-wrapper input { margin-bottom: 0; }
.donation-quick-select, button.donation-quick-select { background: #eee!important; border: 1px solid #ccc!important; padding: 5px!important; }

/* Mobile responsiveness */
@media (max-width: 768px) {
	.donation-amount-suggestions {
		gap: 0.4em;
	}

	.donation-quick-select {
		padding: 0.4em 0.8em;
		font-size: 0.85em;
	}
}
