/* DonateFlow - By Saan Innovation */
.donateflow-wrap { max-width: 600px; margin: 30px auto; padding: 0 15px; }
.df-form-box { background: #fff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); padding: 35px; border-top: 4px solid #BF3D00; }
.df-title { color: #BF3D00; font-size: 24px; margin: 0 0 25px; text-align: center; }
.df-amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.df-amount-btn { padding: 12px 5px; border: 2px solid #BF3D00; background: #fff; color: #BF3D00; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: bold; transition: all 0.2s; }
.df-amount-btn:hover, .df-amount-btn.active { background: #BF3D00; color: #fff; }
.df-field { margin-bottom: 15px; }
.df-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #555; }
.df-field input, .df-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 14px; box-sizing: border-box; transition: border 0.2s; }
.df-field input:focus, .df-field textarea:focus { border-color: #BF3D00; outline: none; }
.df-btn { width: 100%; padding: 14px; background: #BF3D00; color: #fff; border: none; border-radius: 8px; font-size: 17px; font-weight: bold; cursor: pointer; margin-top: 10px; transition: background 0.2s; }
.df-btn:hover { background: #a03300; }
.df-secure { text-align: center; font-size: 12px; color: #999; margin-top: 10px; }
.df-message { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.df-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.df-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
@media(max-width:480px) { .df-amount-grid { grid-template-columns: repeat(2, 1fr); } }
