/* AUANI Stripe Payment Styles */
/* Add this to your auani-frontend.css file */

#auani-payment-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.auani-stripe-card-input {
    padding: 12px;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.auani-stripe-card-input:focus-within {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.auani-card-errors {
    font-size: 14px;
    margin-top: 8px;
}

.auani-payment-note {
    margin-top: 20px;
    padding: 15px;
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.auani-payment-note p {
    margin: 5px 0;
}

.auani-payment-note p:first-child {
    margin-top: 0;
    color: #0066cc;
}

/* Success/Error Messages */
.auani-success {
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    color: #155724;
    border-radius: 4px;
    margin-bottom: 20px;
}

.auani-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Loading State */
.auani-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.auani-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: auani-spin 0.6s linear infinite;
}

@keyframes auani-spin {
    to { transform: rotate(360deg); }
}