/* =========================
   Layout Wrapper
========================= */

.patenschaft-wrapper {
    max-width: 720px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

#patenschaft-form h3 {
	color: #38A9E1;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 25px;
	font-weight: 600;
}

#patenschaft-form small {
    color: #777;
}

/* =========================
   Amount Grid
========================= */

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.amount-btn {
	font-size: 18px;
    padding: 16px;
    border: 2px solid #dcdcdc;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #38A9E1;
    background: #eef7fc;
}

.amount-btn.active {
    background: #38A9E1;
    color: white;
    border-color: #38A9E1;
}

/* =========================
   Custom Amount
========================= */

.custom-amount-wrapper {
    margin-top: 20px;
    max-width: 300px;
}

#custom-amount {
    width: 100%;
    padding: 12px;
    border: 2px solid #dcdcdc;
    border-radius: 8px;
    font-size: 18px;
    transition: border 0.2s ease;
	font-weight: 600;
}

#custom-amount:focus {
    border-color: #38A9E1;
    outline: none;
}

/* =========================
   Donation Type
========================= */

.donation-type {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.donation-option {
    flex: 1;
    cursor: pointer;
}

.donation-option input {
    display: none;
}

.donation-option span {
    display: block;
    padding: 15px;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
    background: #f9f9f9;
}

.donation-option input:checked + span {
    border-color: #38A9E1;
    background: #38A9E1;
    color: white;
}

/* =========================
   Inputs
========================= */

#patenschaft-form {
	width: 100% !important;
	max-width: 100% !important;
}
#patenschaft-form input[type="text"],
#patenschaft-form input[type="email"],
#patenschaft-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.2s ease;
}

#patenschaft-form input:focus,
#patenschaft-form select:focus {
    border-color: #38A9E1;
    outline: none;
}

/* =========================
   Submit Button
========================= */

#patenschaft-form button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: #38A9E1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#patenschaft-form button[type="submit"]:hover {
    background: #2c8dc0;
    transform: translateY(-2px);
}

/* =========================
   Messages
========================= */

.success-box {
    padding: 20px;
    background: #e8f8ef;
    border: 2px solid #2fa36b;
    border-radius: 8px;
    margin-bottom: 20px;
}

.error-box {
    padding: 20px;
    background: #fdeaea;
    border: 2px solid #c0392b;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* =========================
   Rechtliches
========================= */

.donation-rechtliches-text {
    margin-top: 25px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

#country-select:disabled {
    background: #f3f3f3;
    cursor: not-allowed;
}

.patenschaft-info-box {
    background: #f8f6f2;
    border: 1px solid #e6e2d8;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
}

.patenschaft-info-box .info-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.patenschaft-info-box ul {
	padding-bottom: 0 !important;
}

.patenschaft-info-box li {
    margin-bottom: 6px !important;
}

.patenschaft-info-box .info-sub {
    margin-top: 0px;
}

