/**
 * WPCP Checkout Styles (FIXED PRO VERSION)
 */

/* ========== FIX OVERLAY WooCommerce ========== */
#wpcp-card-fields-container {
    position: relative;
    z-index: 9999;
}

.wpcp-paypal-field iframe {
    position: relative !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
}

/* ========== CONTENEDOR ========== */
.wpcp-card-fields {
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* ========== FILAS ========== */
.wpcp-field-row {
    margin-bottom: 16px;
}

.wpcp-field-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.wpcp-field-row label .required {
    color: #e74c3c;
}

/* ========== INPUTS NORMALES ========== */
.wpcp-input {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
}

.wpcp-input:focus {
    border-color: #0070ba;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,112,186,0.1);
}

/* ========== 🔥 PAYPAL FIELDS (FIX REAL) ========== */
.wpcp-paypal-field {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* IFRAME */
.wpcp-paypal-field iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* FOCUS */
.wpcp-paypal-field:focus-within {
    border-color: #0070ba;
    box-shadow: 0 0 0 3px rgba(0,112,186,0.1);
}

/* ERROR */
.wpcp-paypal-field.wpcp-invalid {
    border-color: #e74c3c;
}

/* ========== FILA DOBLE ========== */
.wpcp-field-row-split {
    display: flex;
    gap: 12px;
}

.wpcp-field-half {
    flex: 1;
}

/* ========== ERRORES ========== */
.wpcp-card-errors {
    margin-top: 12px;
    padding: 12px;
    background: #fee;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
    color: #c0392b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .wpcp-field-row-split {
        flex-direction: column;
    }
}

/* ===================================================== */
/* 🧱 LAYOUT CHECKOUT (GeneratePress FIX) */
/* ===================================================== */

@media (min-width: 768px) {

    .woocommerce-checkout .woocommerce {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    /* IZQUIERDA */
    .woocommerce-checkout .col2-set {
        width: 60%;
    }

    /* DERECHA */
    .woocommerce-checkout #order_review {
        width: 40%;
        position: sticky;
        top: 20px;
    }
}

/* Extra limpieza */
#wpcp-card-fields-container label {
    font-weight: 600;
}