/* ============================================
   🎨 CLEAN PAYMENT FORM - 2025 LYNQ Design
   No nested cards - just clean Stripe integration
   ============================================ */

/* Payment Element Container - Simple & Clean */
.payment-element-clean {
    margin-bottom: 24px;
    /* Stripe handles all styling via Appearance API */
}

/* Loading State */
.payment-loading {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
    font-size: 14px;
}

/* Trust Badges - Inline Below Payment Form */
.trust-badges-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: rgba(249, 250, 251, 0.5);
    border-radius: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.trust-badge-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.trust-badge-item:last-child {
    color: #9ca3af;
}

.trust-badge-item:last-child svg {
    color: #635BFF;
}

/* Submit Button - Clean Design */
.checkout-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.checkout-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.checkout-submit:active {
    transform: translateY(0);
}

.checkout-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-text {
    flex: 1;
    text-align: left;
}

.submit-price {
    font-size: 18px;
    font-weight: 700;
}

/* Development Mode Section */
.dev-payment-section {
    margin-top: 20px;
    padding: 16px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    text-align: center;
}

.dev-title {
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 12px;
}

.dev-payment-btn {
    padding: 10px 20px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.dev-payment-btn:hover {
    background: #d97706;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-badges-inline {
        gap: 12px;
    }
    
    .trust-badge-item {
        font-size: 11px;
    }
    
    .checkout-submit {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .submit-price {
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .checkout-submit {
        transition: none !important;
    }
}