/* CF7 Stripe Invoice Payment Styles */

/* Stripe Elements Container */
#cf7-stripe-payment-element {
    padding: 12px;
    border: 1px solid #ccd0d5;
    border-radius: 4px;
    background: #fff;
    margin-bottom: 15px;
}

#cf7-stripe-payment-element.StripeElement--focus {
    border-color: #0570de;
    box-shadow: 0 0 0 1px #0570de;
}

#cf7-stripe-payment-element.StripeElement--invalid {
    border-color: #fa755a;
}

/* Fee Breakdown */
#cf7-stripe-fee-breakdown {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

#cf7-stripe-fee-breakdown .fee-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
}

#cf7-stripe-fee-breakdown .fee-detail {
    color: #666;
    font-size: 13px;
}

#cf7-stripe-fee-breakdown .fee-total {
    border-top: 1px solid #dee2e6;
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 600;
}

/* Message Display */
#cf7-stripe-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

#cf7-stripe-message:empty {
    display: none;
}

/* Mode Badge */
.cf7-stripe-mode {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cf7-stripe-mode.sandbox {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

/* Standalone Form Styles */
.cf7-stripe-payment-container.standalone {
    max-width: 450px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cf7-stripe-form-group {
    margin-bottom: 18px;
}

.cf7-stripe-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.cf7-stripe-form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccd0d5;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.cf7-stripe-form-group input:focus {
    outline: none;
    border-color: #0570de;
    box-shadow: 0 0 0 1px #0570de;
}

.cf7-stripe-field-note {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0 0;
}

#cf7-stripe-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: #0570de;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#cf7-stripe-submit-btn:hover {
    background: #0054b4;
}

#cf7-stripe-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

/* CF7 Form Enhancements */
.cf7-stripe-enabled {
    position: relative;
}

.wpcf7-form #cf7-stripe-invoice,
.wpcf7-form #cf7-stripe-amount {
    padding: 10px 12px;
    border: 1px solid #ccd0d5;
    border-radius: 4px;
    font-size: 16px;
}

.wpcf7-form #cf7-stripe-payment-element {
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 480px) {
    .cf7-stripe-payment-container.standalone {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    #cf7-stripe-fee-breakdown .fee-row {
        font-size: 13px;
    }
}
