/* Donation Form Container */
.donation-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Login Notice */
.donation-login-required {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.donation-login-required h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.donation-login-required a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

/* Donation Form Elements */
.donation-amount-field {
    margin-bottom: 1.5rem;
}

.donation-amount-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.donation-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.donation-input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
}

.donation-amount-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Donate Button */
.donate-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.donate-button {
    display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	background: linear-gradient(135deg, #a628d9, #8f00ff);
	color: #fff;
	border: none;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-button:hover {
    transform: scale(1.05);
	box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.donate-button .donate-icon svg {
  width: 100%;
  height: 100%;
}

.donate-button .donate-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkout Page Specific */
.woocommerce-checkout #place_order {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    background: #2ecc71 !important;
    border: none !important;
    padding: 15px !important;
    font-size: 18px !important;
}

/* Error States */
.donation-input.error {
    border-color: #e74c3c;
}