/* Buzz Donation – public styles */
.buzz-donation-form-wrap {
    max-width: 560px;
    margin: 24px auto;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.buzz-form-title { margin-top: 0; font-size: 22px; }
.buzz-progress { background: #f3f4f6; border-radius: 8px; overflow: hidden; height: 24px; position: relative; margin: 12px 0 20px; }
.buzz-progress-bar { background: linear-gradient(90deg, #16a34a, #22c55e); height: 100%; transition: width .4s; }
.buzz-progress-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; }

.buzz-field { margin: 14px 0; }
.buzz-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.buzz-field input[type="text"], .buzz-field input[type="email"], .buzz-field input[type="number"],
.buzz-field input[type="tel"], .buzz-field textarea, .buzz-field select {
    width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 15px; box-sizing: border-box;
}
.buzz-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.buzz-amount-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.buzz-amount-btn {
    flex: 1 1 calc(33% - 8px); padding: 12px; background: #f3f4f6; border: 1px solid #e5e7eb;
    border-radius: 8px; cursor: pointer; font-weight: 600; transition: all .15s;
}
.buzz-amount-btn:hover { background: #e5e7eb; }
.buzz-amount-btn.active { background: #2563eb; color: #fff; border-color: #2563eb; }

.buzz-tribute-fields { border: 1px dashed #d1d5db; border-radius: 8px; padding: 12px; }
.buzz-tribute-fields legend { font-weight: 600; padding: 0 6px; }
.buzz-tribute-fields input, .buzz-tribute-fields textarea, .buzz-tribute-fields select { margin-top: 8px; }

.buzz-gateway-tabs { display: flex; gap: 16px; }
.buzz-gateway-tabs label { display: flex; align-items: center; gap: 6px; font-weight: 500; }

.buzz-stripe-card { padding: 12px; border: 1px solid #d1d5db; border-radius: 8px; margin: 8px 0; }
.buzz-card-errors { color: #dc2626; font-size: 13px; min-height: 18px; }

.buzz-submit-btn {
    width: 100%; padding: 14px; background: #16a34a; color: #fff; border: none;
    border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 12px;
}
.buzz-submit-btn:hover:not(:disabled) { background: #15803d; }
.buzz-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.buzz-form-message { margin-top: 12px; padding: 10px; border-radius: 6px; font-size: 14px; display: none; }
.buzz-form-message.success { display: block; background: #dcfce7; color: #166534; }
.buzz-form-message.error   { display: block; background: #fee2e2; color: #991b1b; }

/* Pet grid */
.buzz-pet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.buzz-pet-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.buzz-pet-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.buzz-pet-card h3 { margin: 12px 16px 4px; }
.buzz-pet-card p  { margin: 4px 16px; font-size: 14px; color: #4b5563; }
.buzz-pet-meta { font-style: italic; color: #6b7280; }
.buzz-pet-fee { padding: 8px 16px; background: #f9fafb; }
