.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-15 .elementor-element.elementor-element-e421566{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-15 .elementor-element.elementor-element-3806e21{--display:flex;}.elementor-widget-shortcode .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-shortcode .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-15 .elementor-element.elementor-element-8288cbd{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-15 .elementor-element.elementor-element-2ad4d90{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-15 .elementor-element.elementor-element-e421566{--width:100%;}.elementor-15 .elementor-element.elementor-element-3806e21{--content-width:1400px;}}/* Start custom CSS for shortcode, class: .elementor-element-8288cbd */CSS ULKTIMO
/* ========================================
   🎨 EDUENIA CHECKOUT - CSS CORREGIDO PARTE 2
   ========================================
   ✅ PADDING ARREGLADO EN BARRA DE PROGRESO
   ✅ INTEGRACIÓN REAL CON WOOCOMMERCE
   ✅ DISEÑO PROFESIONAL Y RESPONSIVE
   ======================================== */

/* 🏗️ CONTENEDOR PRINCIPAL */
#eduenia-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* 📊 BARRA DE PROGRESO - PADDING CORREGIDO */
.eduenia-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 30px 40px; /* ✅ PADDING AUMENTADO */
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 15px; /* ✅ PADDING LATERAL AGREGADO */
}

.progress-step span {
    margin-top: 12px; /* ✅ MARGIN AUMENTADO */
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.step-circle {
    width: 20px; /* ✅ TAMAÑO AUMENTADO */
    height: 20px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* ✅ SOMBRA AGREGADA */
}

.progress-step.active .step-circle {
    background: #ef4444;
    transform: scale(1.3); /* ✅ ESCALA AUMENTADA */
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.progress-step.active span {
    color: #ef4444;
    font-weight: 700; /* ✅ PESO AUMENTADO */
}

.progress-step.completed .step-circle {
    background: #10b981;
    transform: scale(1.1);
}

.progress-step.completed span {
    color: #10b981;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px; /* ✅ GROSOR AUMENTADO */
    background: #e5e7eb;
    margin: 0 25px; /* ✅ MARGIN AUMENTADO */
    position: relative;
    top: -15px; /* ✅ POSICIÓN AJUSTADA */
    border-radius: 2px;
}

/* 📱 LAYOUT PRINCIPAL */
.eduenia-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px; /* ✅ SIDEBAR MÁS ANCHO */
    gap: 35px; /* ✅ GAP AUMENTADO */
    align-items: start;
}

/* 📝 CONTENEDOR DE FORMULARIO */
.eduenia-form-container {
    background: white;
    border-radius: 12px;
    padding: 35px; /* ✅ PADDING AUMENTADO */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 🎭 FASES */
.eduenia-phase {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.eduenia-phase.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📋 FORMULARIOS */
.form-group {
    margin-bottom: 25px; /* ✅ MARGIN AUMENTADO */
}

.form-group label {
    display: block;
    margin-bottom: 10px; /* ✅ MARGIN AUMENTADO */
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.required {
    color: #ef4444;
    margin-left: 3px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px; /* ✅ PADDING AUMENTADO */
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px); /* ✅ EFECTO HOVER */
}

.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* 📞 INPUT DE TELÉFONO */
.phone-input-group {
    display: flex;
    gap: 12px; /* ✅ GAP AUMENTADO */
}

.phone-input-group select {
    width: 130px; /* ✅ ANCHO AUMENTADO */
    flex-shrink: 0;
}

.phone-input-group input {
    flex: 1;
}

/* 🔒 AYUDA DE CONTRASEÑA */
.password-help {
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    font-style: italic;
}

/* ❌ MENSAJES DE ERROR */
.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 8px; /* ✅ MARGIN AUMENTADO */
    display: none;
    font-weight: 500;
    padding: 5px 0; /* ✅ PADDING AGREGADO */
}

/* ✅ CHECKBOX GROUP */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* ✅ GAP AUMENTADO */
    margin: 30px 0; /* ✅ MARGIN AUMENTADO */
    padding: 20px; /* ✅ PADDING AUMENTADO */
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.checkbox-group input[type="checkbox"] {
    width: 20px; /* ✅ TAMAÑO AUMENTADO */
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6; /* ✅ LINE HEIGHT AUMENTADO */
    margin: 0;
}

.checkbox-group a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* 🔗 LINK DE LOGIN */
.login-link {
    text-align: center;
    margin-top: 25px; /* ✅ MARGIN AUMENTADO */
    padding-top: 25px; /* ✅ PADDING AUMENTADO */
    border-top: 1px solid #e5e7eb;
}

.login-link p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

.login-link a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* 🎨 TÍTULO DE FASE */
.phase-title {
    margin-bottom: 35px; /* ✅ MARGIN AUMENTADO */
}

.phase-title h3 {
    font-size: 26px; /* ✅ TAMAÑO AUMENTADO */
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* 💳 MÉTODOS DE PAGO */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; /* ✅ GAP AUMENTADO */
    margin-bottom: 35px; /* ✅ MARGIN AUMENTADO */
}

.payment-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px; /* ✅ PADDING AUMENTADO */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-option:hover {
    border-color: #3b82f6;
    transform: translateY(-3px); /* ✅ EFECTO AUMENTADO */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.payment-option.active {
    border-color: #ef4444;
    background: #fef2f2;
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 36px; /* ✅ TAMAÑO AUMENTADO */
    margin-bottom: 12px; /* ✅ MARGIN AUMENTADO */
}

.payment-option span {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

/* 🏢 HEADER DE PAGO EDUENIA */
.eduenia-payment-header {
    background: linear-gradient(135deg, #1f2937, #111827); /* ✅ GRADIENTE MEJORADO */
    color: white;
    padding: 25px; /* ✅ PADDING AUMENTADO */
    border-radius: 12px;
    margin-bottom: 35px; /* ✅ MARGIN AUMENTADO */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* ✅ SOMBRA AGREGADA */
}

.eduenia-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* ✅ GAP AUMENTADO */
}

.logo-icon {
    font-size: 28px; /* ✅ TAMAÑO AUMENTADO */
}

.logo-text {
    font-size: 20px; /* ✅ TAMAÑO AUMENTADO */
    font-weight: 700;
}

.payment-amount {
    display: flex;
    align-items: center;
    gap: 8px; /* ✅ GAP AUMENTADO */
    font-size: 22px; /* ✅ TAMAÑO AUMENTADO */
    font-weight: 700;
}

.currency {
    color: #fbbf24;
}

.amount {
    color: #fbbf24;
}

/* 💳 FORMULARIOS DE PAGO */
.payment-form {
    display: none;
}

.payment-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; /* ✅ GAP AUMENTADO */
}

/* 🔐 CVV INPUT ESPECIAL */
.cvv-input {
    position: relative;
}

.cvv-help {
    position: absolute;
    right: 15px; /* ✅ POSICIÓN AJUSTADA */
    top: 50%;
    transform: translateY(-50%);
    cursor: help;
    color: #6b7280;
    font-size: 16px;
}

/* 🔒 INFO DE SEGURIDAD */
.security-info {
    display: flex;
    align-items: center;
    gap: 12px; /* ✅ GAP AUMENTADO */
    margin: 25px 0; /* ✅ MARGIN AUMENTADO */
    padding: 15px; /* ✅ PADDING AUMENTADO */
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.security-icon {
    color: #059669;
    font-size: 18px; /* ✅ TAMAÑO AUMENTADO */
}

.security-info span {
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
}

.security-badges {
    display: flex;
    gap: 10px; /* ✅ GAP AUMENTADO */
    margin-left: auto;
}

.badge {
    background: #059669;
    color: white;
    padding: 4px 10px; /* ✅ PADDING AUMENTADO */
    border-radius: 6px; /* ✅ RADIUS AUMENTADO */
    font-size: 11px;
    font-weight: 600;
}

/* 🅿️ PAYPAL CONTAINER */
.paypal-container {
    text-align: center;
    padding: 50px 25px; /* ✅ PADDING AUMENTADO */
}

.paypal-container p {
    color: #6b7280;
    margin-bottom: 25px; /* ✅ MARGIN AUMENTADO */
    font-size: 15px;
}

/* 🔘 BOTONES */
.eduenia-btn {
    padding: 16px 32px; /* ✅ PADDING AUMENTADO */
    border: none;
    border-radius: 10px; /* ✅ RADIUS AUMENTADO */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* ✅ GAP AUMENTADO */
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); /* ✅ SOMBRA BASE */
}

.eduenia-btn.primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3); /* ✅ SOMBRA AUMENTADA */
}

.eduenia-btn.primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-3px); /* ✅ EFECTO AUMENTADO */
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
}

.eduenia-btn.primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.eduenia-btn.paypal {
    background: linear-gradient(135deg, #0070ba, #005ea6); /* ✅ GRADIENTE AGREGADO */
    color: white;
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.3);
}

.eduenia-btn.paypal:hover {
    background: linear-gradient(135deg, #005ea6, #004a8a);
    transform: translateY(-3px);
}

.eduenia-btn.full-width {
    width: 100%;
}

/* 📱 SIDEBAR */
.eduenia-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px; /* ✅ PADDING AUMENTADO */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-size: 22px; /* ✅ TAMAÑO AUMENTADO */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px; /* ✅ MARGIN AUMENTADO */
    text-align: center;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 20px; /* ✅ PADDING AUMENTADO */
}

/* 📦 LISTA DE PRODUCTOS */
.products-list {
    margin-bottom: 30px; /* ✅ MARGIN AUMENTADO */
}

.product-item {
    display: flex;
    align-items: center;
    gap: 18px; /* ✅ GAP AUMENTADO */
    padding: 20px 0; /* ✅ PADDING AUMENTADO */
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.product-item:last-child {
    border-bottom: none;
}

.product-item:hover {
    background: #f9fafb;
    border-radius: 8px;
    margin: 0 -15px;
    padding: 20px 15px;
}

.product-image {
    width: 70px; /* ✅ TAMAÑO AUMENTADO */
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px; /* ✅ TAMAÑO AUMENTADO */
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); /* ✅ SOMBRA AGREGADA */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.placeholder-icon {
    font-size: 28px;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px; /* ✅ MARGIN AUMENTADO */
    font-size: 16px;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quantity {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.product-category {
    font-size: 11px;
    color: #f59e0b;
    background: #fef3c7;
    padding: 3px 8px; /* ✅ PADDING AUMENTADO */
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    max-width: fit-content;
}

.product-price {
    font-weight: 700;
    color: #ef4444;
    font-size: 16px;
    text-align: right;
}

/* 🛒 CARRITO VACÍO */
.empty-cart-message {
    text-align: center;
    padding: 40px 20px; /* ✅ PADDING AUMENTADO */
    color: #6b7280;
}

.empty-cart-message p {
    margin-bottom: 15px; /* ✅ MARGIN AUMENTADO */
    font-size: 16px;
}

.shop-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.shop-link:hover {
    background: #3b82f6;
    color: white;
}

/* 💰 RESUMEN DEL CARRITO */
.cart-summary {
    border-top: 2px solid #f3f4f6;
    padding-top: 25px; /* ✅ PADDING AUMENTADO */
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px; /* ✅ MARGIN AUMENTADO */
    font-size: 14px;
}

.summary-row span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.summary-row span:last-child {
    color: #1f2937;
    font-weight: 600;
}

.summary-row.discount span:first-child {
    color: #059669;
}

.summary-row.discount span:last-child {
    color: #059669;
}

.summary-row.total {
    font-size: 18px; /* ✅ TAMAÑO AUMENTADO */
    font-weight: 700;
    color: #ef4444;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px; /* ✅ PADDING AUMENTADO */
    margin-top: 15px;
}

/* 🔧 ACCIONES DEL CARRITO */
.cart-actions {
    text-align: center;
}

.edit-cart-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.edit-cart-link:hover {
    color: #3b82f6;
    background: #f3f4f6;
}

/* 📱 RESPONSIVE DESIGN */
@media (max-width: 768px) {
    #eduenia-checkout-container {
        padding: 15px;
        margin: 10px;
    }
    
    .eduenia-checkout-layout {
        grid-template-columns: 1fr;
        gap: 25px; /* ✅ GAP AJUSTADO */
    }
    
    .eduenia-sidebar {
        order: -1;
        position: static;
        padding: 25px; /* ✅ PADDING AJUSTADO */
    }
    
    .eduenia-form-container {
        padding: 25px; /* ✅ PADDING AJUSTADO */
    }
    
    .eduenia-progress-bar {
        padding: 20px 15px; /* ✅ PADDING AJUSTADO */
    }
    
    .progress-step span {
        font-size: 12px;
    }
    
    .progress-line {
        margin: 0 15px; /* ✅ MARGIN AJUSTADO */
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-input-group select {
        width: 100%;
    }
    
    .eduenia-payment-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
    }
    
    .product-item {
        gap: 15px;
        padding: 15px 0;
    }
    
    .product-image {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .eduenia-progress-bar {
        padding: 15px 10px;
    }
    
    .progress-step {
        font-size: 11px;
        padding: 0 8px;
    }
    
    .step-circle {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .progress-line {
        margin: 0 10px;
        height: 2px;
    }
    
    .payment-option {
        padding: 20px 15px;
    }
    
    .payment-icon {
        font-size: 28px;
    }
    
    .eduenia-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .summary-row.total {
        font-size: 16px;
    }
    
    .sidebar-title {
        font-size: 18px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-image {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 🎭 ANIMACIONES ADICIONALES */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.btn-loader {
    animation: pulse 1.5s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-item {
    animation: slideIn 0.3s ease-out;
}

/* 🔄 TRANSICIONES SUAVES */
* {
    transition: all 0.3s ease;
}

input:focus,
select:focus,
button:hover,
.payment-option:hover,
.product-item:hover {
    transition: all 0.2s ease;
}

/* 🎨 ESTADOS HOVER MEJORADOS */
.form-group:hover input:not(:focus),
.form-group:hover select:not(:focus) {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* ✨ EFECTOS ESPECIALES */
.eduenia-form-container {
    position: relative;
    overflow: hidden;
}

.eduenia-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.eduenia-form-container:hover::before {
    left: 100%;
}

/* 🔚 FIN DEL CSS CORREGIDO *//* End custom CSS */