/* ===============================
   Payment card (new design)
   =============================== */
.fd-download-card {
    max-width: 100%;
    margin: 30px auto;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: inherit;
}

.fd-download-body {
    padding: 0 28px 24px 32px;
}

.fd-card-header {
    background: #00994d;
    padding: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
}

.fd-card-header .fd-title {
    color: #fff;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}

.fd-card-price {
    background: #eaf1fc;
    border-radius: 8px;
    padding: 10px 5px;
    font-weight: 700;
    font-size: 19px;
    color: #222;
    margin-bottom: 16px;
}


.fd-card-desc {
    padding: 5px;
    font-weight: 400;
    font-size: 14px;
    color: #222;
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    text-align: justify;
    line-height: 2;
}

.fd-card-price span:last-child {
    font-weight: 500;
    font-size: 15px;
    margin-right: 5px;
    color: #444;
}

.fd-form-row {
    margin: 12px 0;
}

.fd-form-row input[type="tel"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.fd-form-note {
    font-size: 13px;
    margin-top: 6px;
    color: #666;
}

.fd-checkbox {
    margin: 12px 0 20px;
    text-align: right;
}

.fd-checkbox label {
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: right;
}

.fd-btn-pay {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6800, #ff4400);
    border: none;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fd-btn-pay:hover {
    background: linear-gradient(135deg, #ff4b00, #ff2200);
    transform: translateY(-2px);
}

/* ===============================
   Messages (used in AJAX result)
   =============================== */
.paid-download-message {
    margin-top: 20px;
    display: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.paid-download-message.success {
    background: #cbf6de;
    color: #1b7d4a;
}

.paid-download-message.error {
    background: #ffd9d7;
    color: #c0392b;
}
