/**
 * DAF Marketplace - Frontend Checkout Styling
 * * Specific to Single Product Purchase Section.
 */

.daf-buy-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.daf-license-choice {
    display: block;
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.daf-license-label { font-weight: 600; color: #1e293b; }
.daf-license-price { float: right; font-weight: 700; color: #2271b1; }

.daf-checkout-field input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

.daf-buy-now-btn {
    width: 100%;
    background: #2271b1;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}

.daf-checkout-msg { margin-top: 15px; padding: 10px; border-radius: 6px; display: none; }