/**
 * Fiserv Caribbean Payment Gateway - Frontend Styles
 *
 * @package WooCommerce_Fiserv_Caribbean
 */

/* Payment method at checkout */
.payment_method_fiserv_caribbean .payment_box {
    padding: 15px;
}

.payment_method_fiserv_caribbean .payment_box p {
    margin: 0 0 10px;
}

/* Sandbox notice */
.fiserv-sandbox-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    margin: 10px 0;
    font-size: 13px;
}

/* Installments field */
.fiserv-installments-field {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.fiserv-installments-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.fiserv-installments-field select {
    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.fiserv-installments-field select:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

/* Receipt page */
.woocommerce-order-pay #order_review {
    max-width: 600px;
    margin: 0 auto;
}

#fiserv_payment_form {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

#fiserv_payment_form p {
    color: #666;
    margin-bottom: 20px;
}

#fiserv_submit_button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#fiserv_submit_button:hover {
    background-color: #0052a3;
}

#fiserv_submit_button:active {
    transform: scale(0.98);
}

/* Loading animation */
.fiserv-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.fiserv-loading-text {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.fiserv-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0066cc;
    border-radius: 50%;
    animation: fiserv-spin 1s linear infinite;
}

@keyframes fiserv-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Thank you page transaction details */
.fiserv-transaction-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.fiserv-transaction-details h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.fiserv-transaction-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fiserv-transaction-details li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
}

.fiserv-transaction-details li:last-child {
    border-bottom: none;
}

.fiserv-transaction-details strong {
    color: #333;
}

/* Error messages */
.woocommerce-error.fiserv-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .fiserv-installments-field select {
        max-width: 100%;
    }
    
    #fiserv_submit_button {
        width: 100%;
        padding: 16px 20px;
    }
    
    .fiserv-transaction-details li {
        flex-direction: column;
    }
}

/* ===========================================
   WooCommerce Blocks Checkout Integration
   =========================================== */

/* Block checkout container */
.wc-fiserv-caribbean-block-content {
    padding: 10px 0;
}

.wc-fiserv-caribbean-block-content p {
    margin: 0 0 12px;
}

/* Block checkout label with logo */
.wc-fiserv-caribbean-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-fiserv-caribbean-logo {
    height: 24px;
    width: auto;
}

/* Sandbox notice in blocks */
.wc-fiserv-caribbean-sandbox-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    margin: 10px 0;
    font-size: 13px;
}

/* Installments in blocks */
.wc-fiserv-caribbean-installments {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.wc-fiserv-caribbean-installments label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.wc-fiserv-caribbean-installments-select {
    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.wc-fiserv-caribbean-installments-select:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

/* Redirect notice */
.wc-fiserv-caribbean-redirect-notice {
    color: #666;
    font-size: 13px;
    font-style: italic;
    margin-top: 15px;
}

/* Description text */
.wc-fiserv-caribbean-description {
    color: #666;
    font-size: 14px;
}
