
/* =============================================
   PAGE DON — PETITPOUSS
   Design original aligné sur le thème existant
   Jaune luxueux #D4A800 / Gris foncé #1A1D20
   Vert #00A650 / Jaune vif #FF8200
   ============================================= */

/* ========== HERO ========== */

.pp-don-hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.pp-don-hero .container {
    max-width: 800px;
}

.pp-don-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4A800;
    margin-bottom: 14px;
}

.pp-don-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1A1D20;
    line-height: 1.2;
    margin-bottom: 18px;
}

.pp-don-hero .lead {
    font-size: 17px;
    color: #1A1D20;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Sélecteur montant */
.pp-amount-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.pp-chip-amount {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    color: #1A1D20;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-chip-amount:hover,
.pp-chip-amount.active {
    border-color: #D4A800;
    background: #D4A800;
    color: #1A1D20;
    box-shadow: 0 4px 12px rgba(212, 168, 0, 0.25);
}

/* CTA */
.pp-don-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.pp-btn-don {
    display: inline-block;
    padding: 14px 36px;
    background: #D4A800;
    color: #1A1D20;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.pp-btn-don:hover {
    background: #1A1D20;
    color: #D4A800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pp-btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #1A1D20;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #D4A800;
    transition: all 0.3s;
    font-size: 15px;
}

.pp-btn-outline:hover {
    background: #D4A800;
    color: #1A1D20;
}

.pp-secure-note {
    font-size: 13px;
    color: #666;
    text-align: center;
}

.pp-secure-note a {
    color: #D4A800;
    font-weight: 600;
    text-decoration: none;
}

/* ========== STATS BAR ========== */

.pp-stats-bar {
    padding: 50px 0 0;
}

.pp-stats-bar .row > div {
    text-align: center;
}

.pp-stat-number {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.pp-stat-number.c1 { color: #D4A800; }
.pp-stat-number.c2 { color: #00A650; }
.pp-stat-number.c3 { color: #FF8200; }

.pp-stat-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* ========== MÉTHODES ========== */

.pp-don-methods {
    padding: 100px 0 90px;
    background: #fff;
}

.pp-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1A1D20;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.pp-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #D4A800;
    border-radius: 2px;
}

.pp-section-sub {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

.pp-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Carte méthode */
.pp-method-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
}

.pp-method-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.pp-method-icon {
    padding: 30px 30px 16px;
    font-size: 32px;
}

.pp-method-card h3 {
    padding: 0 30px;
    font-size: 20px;
    font-weight: 700;
    color: #1A1D20;
    margin-bottom: 8px;
}

.pp-method-card .sub {
    padding: 0 30px;
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.pp-method-body {
    padding: 0 30px 30px;
}

.pp-method-body p {
    font-size: 14px;
    color: #1A1D20;
    line-height: 1.6;
    margin-bottom: 18px;
}

.pp-method-body .pp-btn-don {
    padding: 10px 28px;
    font-size: 14px;
}

/* Image paiement */
.pp-method-body .pay-img {
    width: 180px;
    margin-top: 18px;
    display: block;
}

/* Lignes bancaires */
.pp-bank-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.pp-bank-row:last-child {
    border-bottom: none;
}

.pp-bank-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 0.5px;
    min-width: 70px;
    padding-top: 2px;
}

.pp-bank-val {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #1A1D20;
    word-break: break-all;
    line-height: 1.5;
}

.pp-bank-copy {
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.pp-bank-copy:hover {
    border-color: #D4A800;
    color: #D4A800;
}

.pp-bank-copy.copied {
    background: #00A650;
    color: #fff;
    border-color: #00A650;
}

/* Partenaires */
.pp-partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.pp-partner-logos img {
    height: 40px;
    width: auto;
    display: block;
}

.pp-address-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.pp-address-note strong {
    color: #1A1D20;
    display: block;
    margin-bottom: 4px;
}

/* ========== IMPACT ========== */

.pp-don-impact {
    padding: 90px 0 100px;
    background: #fafafa;
}

.pp-impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pp-impact-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: all 0.3s;
}

.pp-impact-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pp-impact-card.i1 { border-top-color: #D4A800; }
.pp-impact-card.i2 { border-top-color: #00A650; }
.pp-impact-card.i3 { border-top-color: #FF8200; }

.pp-impact-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.pp-impact-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.pp-impact-label {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {
    .pp-methods-grid,
    .pp-impact-cards {
        grid-template-columns: 1fr;
    }
    .pp-don-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .pp-don-hero {
        padding: 50px 0 40px;
    }
    .pp-don-hero h1 {
        font-size: 26px;
    }
    .pp-chip-amount {
        padding: 8px 16px;
        font-size: 13px;
    }
    .pp-don-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .pp-btn-don,
    .pp-btn-outline {
        text-align: center;
    }
    .pp-stat-number {
        font-size: 32px;
    }
}
