/* ── LDDW Jeu Concours ───────────────────────────────────────── */

.lddw-contest-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 32px;
    margin: 28px 0 0;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lddw-contest-block--thankyou {
    background: #f7fbf9;
    border-color: rgba(35, 128, 63, 0.3);
}

.lddw-contest-title {
    font-size: 20px;
    font-weight: 700;
    color: #252525;
    margin: 0 0 16px;
    padding: 0;
}

.lddw-contest-body p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.lddw-contest-body p:last-child {
    margin-bottom: 0;
}

/* Montant manquant mis en évidence */
.lddw-amount {
    color: #c0392b;
}

/* ── Boutons ── */
.lddw-contest-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.lddw-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    line-height: 1.4;
}

.lddw-btn--primary {
    background-color: rgb(35, 128, 63);
    color: #fff !important;
    border: 2px solid rgb(35, 128, 63);
}

.lddw-btn--primary:hover,
.lddw-btn--primary:focus {
    background-color: #1a6b30;
    border-color: #1a6b30;
    color: #fff !important;
}

.lddw-btn--primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.lddw-btn--outline {
    background: transparent;
    color: rgb(35, 128, 63) !important;
    border: 2px solid rgb(35, 128, 63);
}

.lddw-btn--outline:hover,
.lddw-btn--outline:focus {
    background: rgb(35, 128, 63);
    color: #fff !important;
}

/* ── Messages retour ── */
.lddw-contest-message {
    display: none;
    margin-top: 12px !important;
    font-size: 14px;
    font-weight: 500;
}

.lddw-contest-message.lddw-success {
    color: rgb(35, 128, 63);
}

.lddw-contest-message.lddw-error {
    color: #c0392b;
}

.lddw-success {
    color: rgb(35, 128, 63);
    font-weight: 500;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .lddw-contest-block {
        padding: 20px 16px;
    }
    .lddw-contest-buttons {
        flex-direction: column;
    }
    .lddw-btn {
        text-align: center;
    }
}
