/**
 * Macro Click de Pago for WooCommerce - Frontend Styles
 */

/* Logo de Click de Pagos en el frontend */
/* Logo en el método de pago en checkout */
.woocommerce-checkout .payment_methods .payment_method_macrocdp_gateway label img {
    max-width: 80px !important;
    max-height: 40px !important;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 3px;
}

/* Logo en métodos de pago general */
.payment_method_macrocdp_gateway label img {
    max-width: 60px !important;
    max-height: 30px !important;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

/* Logo en la página de mi cuenta */
.woocommerce-account .payment_method_macrocdp_gateway img {
    max-width: 50px !important;
    max-height: 25px !important;
    object-fit: contain;
    vertical-align: middle;
}

/* Contenedor de pago */
.macrocdp-payment-description {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-left: 4px solid #0073aa;
    border-radius: 3px;
}

.macrocdp-cards-info {
    margin-bottom: 20px;
}

.macrocdp-cards-info p {
    font-size: 14px;
    color: #555;
}

/* Iframe de pago */
.macrocdp-payment-iframe-container {
    margin: 30px 0;
    text-align: center;
}

.macrocdp-payment-iframe-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.macrocdp-payment-iframe-container iframe {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.macrocdp-payment-iframe-container iframe:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Instrucciones de pago */
.macrocdp-instructions {
    margin: 20px 0;
    padding: 15px;
    background-color: #f0f9ff;
    border: 1px solid #d0e8ff;
    border-radius: 4px;
}

.macrocdp-instructions p {
    margin-bottom: 10px;
    color: #0073aa;
}

/* Responsive */
@media (max-width: 768px) {
    .macrocdp-payment-iframe-container iframe {
        width: 100% !important;
        height: 600px !important;
    }
    
    /* Ajustar logos en tablet */
    .woocommerce-checkout .payment_methods .payment_method_macrocdp_gateway label img {
        max-width: 60px !important;
        max-height: 30px !important;
    }
}

@media (max-width: 480px) {
    .macrocdp-payment-iframe-container iframe {
        height: 500px !important;
    }
    
    /* Ajustar logos en móvil */
    .woocommerce-checkout .payment_methods .payment_method_macrocdp_gateway label img {
        max-width: 50px !important;
        max-height: 25px !important;
        margin-right: 5px;
    }
    
    .payment_method_macrocdp_gateway label img {
        max-width: 45px !important;
        max-height: 22px !important;
    }
}

/* Animaciones */
@keyframes macrocdp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 115, 170, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 115, 170, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 115, 170, 0);
    }
}

.macrocdp-payment-iframe-container iframe {
    animation: macrocdp-pulse 2s infinite;
} 