/* 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); } }

/* ===== CAMPAIGNS ===== */
.df-campaigns-grid { display:grid; gap:25px; margin:20px 0; }
.df-cols-3 { grid-template-columns: repeat(3,1fr); }
.df-cols-2 { grid-template-columns: repeat(2,1fr); }
.df-cols-1 { grid-template-columns: 1fr; }
@media(max-width:768px) { .df-cols-3,.df-cols-2 { grid-template-columns:1fr; } }
.df-campaign-card { background:#fff; border-radius:12px; box-shadow:0 4px 16px rgba(0,0,0,0.1); overflow:hidden; transition:transform 0.2s; }
.df-campaign-card:hover { transform:translateY(-4px); }
.df-camp-img { position:relative; }
.df-camp-img img { width:100%; height:200px; object-fit:cover; display:block; }
.df-camp-percent { position:absolute; bottom:10px; left:10px; background:#28a745; color:#fff; padding:4px 10px; border-radius:20px; font-weight:bold; font-size:14px; }
.df-camp-body { padding:16px; }
.df-progress-bar { background:#eee; border-radius:6px; height:10px; margin:10px 0 6px; overflow:hidden; }
.df-progress-fill { background:linear-gradient(90deg,#BF3D00,#ff6b35); height:10px; border-radius:6px; transition:width 1s ease; }
.df-camp-stats { display:flex; justify-content:space-between; font-size:13px; color:#555; margin-bottom:10px; }
.df-camp-title { font-size:16px; font-weight:bold; color:#1a1a2e; margin:8px 0; line-height:1.4; }
.df-camp-desc { font-size:13px; color:#666; margin-bottom:12px; }
.df-camp-btn { display:block; background:#1a3a5c; color:#fff; text-align:center; padding:10px; border-radius:6px; text-decoration:none; font-weight:bold; font-size:13px; letter-spacing:1px; transition:background 0.2s; }
.df-camp-btn:hover { background:#BF3D00; color:#fff; }

/* ===== PRODUCTS FORM ===== */
.df-section-title { font-size:16px; font-weight:bold; color:#333; border-bottom:2px solid #BF3D00; padding-bottom:6px; margin:20px 0 12px; }
.df-products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:15px; }
@media(max-width:600px) { .df-products-grid { grid-template-columns:repeat(2,1fr); } }
.df-product-item { border:1px solid #eee; border-radius:8px; padding:10px; text-align:center; transition:border 0.2s; }
.df-product-item:hover { border-color:#BF3D00; }
.df-product-item img { width:100%; height:70px; object-fit:cover; border-radius:6px; margin-bottom:6px; }
.df-product-placeholder { font-size:36px; margin-bottom:6px; }
.df-product-name { font-size:12px; font-weight:bold; color:#333; margin-bottom:4px; }
.df-product-price { font-size:11px; color:#BF3D00; margin-bottom:8px; font-weight:600; }
.df-qty-control { display:flex; align-items:center; justify-content:center; gap:8px; }
.df-qty-btn { width:26px; height:26px; border:2px solid #BF3D00; background:#fff; color:#BF3D00; border-radius:50%; cursor:pointer; font-size:16px; font-weight:bold; line-height:1; display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.df-qty-btn:hover { background:#BF3D00; color:#fff; }
.df-qty-val { font-size:15px; font-weight:bold; min-width:20px; text-align:center; }
.df-recurring-box { background:#f0fff4; border:1px solid #c3e6cb; border-radius:8px; padding:12px 16px; margin:12px 0; font-size:14px; }
.df-recurring-box select { margin:0 6px; padding:3px 8px; border-radius:4px; border:1px solid #ccc; }
.df-total-box { display:flex; justify-content:space-between; align-items:center; background:#fff5f0; border:2px solid #BF3D00; border-radius:8px; padding:12px 16px; margin:15px 0; }
.df-total-box span:first-child { font-weight:bold; font-size:15px; }
.df-total-amount { font-size:20px; font-weight:bold; color:#BF3D00; }
.df-amount-btn { position:relative; }
.df-badge { position:absolute; top:-10px; left:50%; transform:translateX(-50%); background:#ff6b35; color:#fff; font-size:9px; padding:2px 6px; border-radius:4px; white-space:nowrap; }

/* ===== SINGLE CAMPAIGN PAGE ===== */
.df-single-wrap { max-width: 1100px; margin: 30px auto; padding: 0 15px; }
.df-single-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: flex-start; }
@media(max-width: 900px) { .df-single-grid { grid-template-columns: 1fr; } }

.df-single-img { width: 100%; border-radius: 12px; margin-bottom: 20px; }

.df-single-stats { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.df-single-goal span { font-size: 13px; color: #666; display: block; }
.df-single-goal strong { font-size: 22px; color: #1a3a5c; }
.df-single-percent-badge { background: #28a745; color: #fff; font-size: 18px; font-weight: bold; padding: 8px 16px; border-radius: 20px; }

.df-single-raised { background: #f0fff4; border: 1px solid #c3e6cb; border-radius: 8px; padding: 12px 16px; margin: 12px 0; display: flex; justify-content: space-between; align-items: center; }
.df-single-raised span { font-size: 13px; color: #666; }
.df-single-raised strong { font-size: 20px; color: #28a745; font-weight: bold; }

.df-single-desc { margin-top: 20px; }
.df-single-desc h3 { font-size: 18px; color: #1a3a5c; border-bottom: 2px solid #BF3D00; padding-bottom: 8px; margin-bottom: 12px; }
.df-single-desc p { font-size: 14px; line-height: 1.7; color: #555; }

.df-donors-list { margin-top: 25px; }
.df-donors-list h3 { font-size: 16px; color: #1a3a5c; border-bottom: 2px solid #BF3D00; padding-bottom: 8px; margin-bottom: 12px; }
.df-donors-list ul { list-style: none; padding: 0; margin: 0; max-height: 300px; overflow-y: auto; }
.df-donors-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.df-donor-icon { font-size: 18px; }
.df-donor-name { flex: 1; color: #333; }
.df-donor-amount { font-weight: bold; color: #BF3D00; }

.df-single-note { font-size: 14px; color: #555; margin-bottom: 12px; font-weight: 600; }

.df-share-box { margin-top: 20px; text-align: center; }
.df-share-box p { font-size: 13px; color: #666; margin-bottom: 8px; }
.df-share-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.df-share-btns a { padding: 8px 16px; border-radius: 6px; text-decoration: none; font-size: 13px; font-weight: bold; color: #fff; }
.df-share-fb { background: #1877f2; }
.df-share-wa { background: #25d366; }
.df-share-tw { background: #1da1f2; }
.df-share-btns a:hover { opacity: 0.85; }

/* Campaign card donate btn now links to single page */
.df-camp-btn { cursor: pointer; }
