 *, *::before, *::after { box-sizing: border-box; } 
    body {
      font-family: 'Poppins';
      background: #f4f4f6;
      color: var(--secondary);
      min-height: 100vh;
    }
 
    /* ── NAVBAR ─────────────────────────────── */
    .navbar {
      background: #fff;
      border-bottom: 1px solid #ebebeb;
      height: 64px;
      position: sticky; top: 0; z-index: 999;
    }
    .brand { font-family:'Poppins'; font-weight:800; font-size:1.35rem; color:var(--primary); text-decoration:none; }
    .btn-nav { background:var(--primary); color:#fff; border:none; border-radius:50px; padding:8px 20px; font-weight:600; font-size:0.85rem; }
    .btn-nav:hover { background:var(--primary-dark); color:#fff; }

    /* ── BREADCRUMB ─────────────────────────── */
    .bc-bar { background:#fff; border-bottom:1px solid #f0f0f0; padding:10px 0; }
    .breadcrumb { margin:0; font-size:0.8rem; }
    .breadcrumb-item a { color:var(--primary); text-decoration:none; }
    .breadcrumb-item.active { color:#999; }
    /* ── PAGE WRAPPER ───────────────────────── */
    .page-wrap { max-width: 1020px; margin: 0 auto; padding: 36px 16px 80px; }

    /* ── CAMPAIGN BANNER ────────────────────── */
    .campaign-banner {
      background: #fff;
      border-radius: 1rem;
      border: 1.5px solid var(--border);
      overflow: hidden;
      margin-bottom: 28px;
      display: flex;
      align-items: stretch;
    }
    .banner-img {
      width: 130px; flex-shrink: 0;
      object-fit: cover;
    }
    .banner-img-placeholder {
      width: 130px; flex-shrink: 0;
      background: linear-gradient(135deg, #ffe0cc, #fff3e0);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
    }
    .banner-body {
      padding: 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .banner-label { font-size: 0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:#aaa; margin-bottom:4px; }
    .banner-title { font-weight:800; font-size:1.05rem; margin:0 0 8px; line-height:1.3; }
    .banner-progress { height:6px; border-radius:10px; background:#f0f0f0; margin-bottom:6px; }
    .banner-progress .bar { height:100%; border-radius:10px; background:var(--primary); width:1.44%; }
    .banner-meta { font-size:0.78rem; color:#999; }
    .banner-meta strong { color:var(--secondary); }
    .btn-view-campaign {
      margin-left: auto;
      align-self: center;
      white-space: nowrap;
      padding: 8px 18px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--secondary);
      text-decoration: none;
      background: #fff;
      transition: border-color .2s, color .2s;
      flex-shrink: 0;
      margin-right: 16px;
    }
    .btn-view-campaign:hover { border-color: var(--primary); color: var(--primary); }

    /* ── CARD BASE ──────────────────────────── */
    .dcard {
      background: #fff;
      border-radius:1rem;
      border: 1.5px solid var(--border);
      margin-bottom: 20px;
      overflow: hidden;
    }
    .dcard-header {
      padding: 16px 22px 0;
      border-bottom: none;
    }
    .dcard-title {
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: #999;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .dcard-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #f0f0f0;
    }
    .dcard-body { padding: 0 22px 22px; }

/* ── AMOUNT INPUT ───────────────────────── */
    .amount-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 14px;
    }
    .amt-btn {
      padding: 11px 6px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      background: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--secondary);
      cursor: pointer;
      transition: all .15s;
      text-align: center;
    }
    .amt-btn:hover  { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
    .amt-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

    .input-currency {
      position: relative;
    }
    .input-currency .prefix {
      position: absolute;
      left: 14px; top: 50%;
      transform: translateY(-50%);
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: #666;
      pointer-events: none;
    }
    .input-currency input {
      width: 100%;
      padding: 13px 14px 13px 56px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--secondary);
      outline: none;
      transition: border-color .2s;
    }
    .input-currency input:focus { border-color: var(--primary); }
    .input-currency input::placeholder { color: #ccc; font-weight: 400; }

    /* ── TIP SECTION ────────────────────────── */
    .tip-box {
      background: var(--primary-light);
      border: 1.5px solid #f3f3f3;
      border-radius: 12px;
      padding: 16px 18px;
      margin-top: 16px;
    }
    .tip-box-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }
    .tip-box-title { font-weight: 700; font-size: 0.9rem; }
    .tip-box-sub   { font-size: 0.78rem; color: #888; margin-top: 2px; }
    .tip-amount    { font-family:'Poppins',sans-serif; font-weight:800; font-size:1.05rem; color:var(--primary); }
    .tip-btns { display: flex; gap: 8px; flex-wrap: wrap; }
    .tip-btn {
      padding: 6px 16px;
      border: 1.5px solid #e0d8d4;
      border-radius: 50px;
      background: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      color: var(--secondary);
      transition: all .15s;
    }
    .tip-btn:hover  { border-color: var(--primary); color: var(--primary); }
    .tip-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }

    /* custom tip input */
    .tip-custom-wrap {
      display: none;
      margin-top: 10px;
    }
    .tip-custom-wrap.show { display: block; }
    .tip-custom-wrap input {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
    }
    .tip-custom-wrap input:focus { border-color: var(--primary); }

    /* ── TOGGLES ────────────────────────────── */
    .toggle-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid #f5f5f5;
    }
    .toggle-row label { font-size: 0.88rem; font-weight: 500; cursor: pointer; flex: 1; }
    .toggle-row small { font-size: 0.75rem; color: #aaa; display: block; }
    .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }

    /* email field */
    .email-field {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
      margin-top: 8px;
    }
    .email-field:focus { border-color: var(--primary); }

    /* ── SUMMARY TABLE ──────────────────────── */
    .summary-table { width: 100%; border-collapse: collapse; }
    .summary-table td {
      padding: 9px 0;
      font-size: 0.9rem;
      border-bottom: 1px solid #f5f5f5;
    }
    .summary-table tr:last-child td { border-bottom: none; }
    .summary-table .lbl { color: #888; }
    .summary-table .val { text-align: right; font-weight: 600; }
    .summary-table .total-row td { font-family:'Poppins',sans-serif; font-weight:800; font-size:1rem; color:var(--primary); padding-top:14px; }

    /* ── PAYMENT METHOD TABS ────────────────── */
    .pm-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .pm-tab {
      flex: 1;
      min-width: 100px;
      padding: 12px 10px;
      border: 1.5px solid #e8e8e8;
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      text-align: center;
      transition: all .2s;
      font-size: 0.82rem;
      font-weight: 600;
      color: #777;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    .pm-tab .pm-icon { font-size: 1.3rem; }
    .pm-tab:hover { border-color: var(--primary); color: var(--primary); }
    .pm-tab.active {
      border-color: var(--primary);
      background: var(--primary-light);
      color: var(--primary);
    }

    /* payment panels */
    .pm-panel { display: none; }
    .pm-panel.show { display: block; }

    .phone-wrap { display: flex; gap: 8px; align-items: stretch; }
    .flag-btn {
      padding: 11px 14px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      background: #fafafa;
      white-space: nowrap;
      display: flex; align-items: center; gap: 6px;
      cursor: pointer;
    }
    .pm-input {
      flex: 1;
      padding: 11px 14px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
    }
    .pm-input:focus { border-color: var(--primary); }

    /* card fields */
    .card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
    .field-label { font-size: 0.78rem; font-weight: 600; color: #666; margin-bottom: 4px; }
    .field-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e8e8e8;
      border-radius: 10px;
      font-size: 0.9rem;
      outline: none;
      transition: border-color .2s;
    }
    .field-input:focus { border-color: var(--primary); }

    /* moovn login panel */
    .moovn-panel {
      text-align: center;
      padding: 24px 16px;
      background: #fafafa;
      border-radius: 12px;
    }
    .moovn-panel .moovn-logo {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .moovn-panel p { font-size: 0.85rem; color: #888; margin-bottom: 16px; }
    .btn-moovn-login {
      background: var(--secondary);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 10px 28px;
      font-weight: 700;
      font-size: 0.9rem;
    }

    /* ── CONFIRM BUTTON ─────────────────────── */
    .btn-confirm {
      width: 100%;
      padding: 15px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      transition: background .2s, transform .15s;
      margin-top: 6px;
    }
    .btn-confirm:hover:not(:disabled) {
      background: var(--primary-dark);
      transform: scale(1.02);
      color: #fff;
    }
    .btn-confirm:disabled { background: #ddd; color: #aaa; cursor: not-allowed; }

    .secure-note {
      text-align: center;
      font-size: 0.76rem;
      color: #bbb;
      margin-top: 10px;
    }

    /* ── SUCCESS SCREEN ─────────────────────── */
    #success-screen {
      display: none;
      text-align: center;
      padding: 60px 20px 80px;
    }
    #success-screen.show { display: block; }
    .success-circle {
      width: 88px; height: 88px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--success), #16a34a);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.4rem; color: #fff;
      margin: 0 auto 24px;
      animation: pop .4s cubic-bezier(.36,1.6,.6,1);
    }
    @keyframes pop {
      0%   { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
    .receipt-box {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      max-width: 420px;
      margin: 24px auto 0;
      text-align: left;
    }
    .receipt-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      font-size: 0.88rem;
      border-bottom: 1px solid #f5f5f5;
    }
    .receipt-row:last-child { border-bottom: none; }
    .receipt-row .r-lbl { color: #888; }
    .receipt-row .r-val { font-weight: 600; }

    /* ── FOOTER ─────────────────────────────── */
    footer {
      background: var(--secondary);
      color: rgba(255,255,255,.45);
      padding: 24px;
      font-size: 0.8rem;
    }
    footer a { color: rgba(255,255,255,.45); text-decoration: none; }
    footer a:hover { color: var(--primary); }

    @media (max-width: 576px) {
      .campaign-banner { flex-direction: column; }
      .banner-img, .banner-img-placeholder { width: 100%; height: 160px; }
      .btn-view-campaign { margin: 0 0 16px 20px; align-self: flex-start; }
      .amount-grid { grid-template-columns: repeat(2, 1fr); }
      .card-grid { grid-template-columns: 1fr; }
      .pm-tab { font-size: 0.75rem; padding: 10px 6px; }
    }
 
.btn-confirm {
    display: block;
    background: #00C5CD !important;
    color: #fff;
}

@media (max-width: 767px) {
    .btn-confirm {
        display: block;
        background: #00C5CD !important;
        color: #fff;
    }
}

@media (min-width: 767px) {
    #campaign-details-p {
        display: none;
    }
}

.become-volunteer-page__form {
    padding: 30px;
}

.become-volunteer-page__input {
    line-height: 1px !important;
}

.StripeElement {
    background-color: white;
    height: 44px;
    width: 100% !important;
    padding: 10px 12px;
    border-radius: 4px;
    border: 2px solid #e1e6e5;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.stripe-submit-button {
    border: none;
    outline: none;
    color: #fff;
    background: #32325d;
    white-space: nowrap;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    margin-top: 10px;
}