/* Importar fuente Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Contenedor principal de la tarjeta - Efecto glassmorphism */
.bixxus-step {
    max-width: 500px;
    margin: 8px auto;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: none;
    font-family: 'Poppins', sans-serif;
}

.bixxus-step.active {
    display: block;
}

.bixxus-step h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #1B1B1B;
    margin-bottom: 24px;
}

.bixxus-note {
    font-size: 0.9rem;
    color: #555;
    background: rgba(249, 249, 249, 0.8);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.bixxus-result {
    font-size: 1.2rem;
    margin: 24px 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #1B1B1B;
}

/* Tarjeta de resultado glassmorphism */
.bixxus-result-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #1B1B1B;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bixxus-highlight {
    color: #ED6300;
    font-weight: 700;
}

/* Mensaje de error */
.bixxus-error-message {
    background: rgba(255, 235, 235, 0.9);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #d63384;
    padding: 10px 14px;
    border-radius: 8px;
    margin: 8px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive design para móviles */
@media (max-width: 768px) {
    .bixxus-step {
        margin: 6px;
        padding: 16px;
        border-radius: 16px;
    }
    
    #bixxus-calc-form input,
    #bixxus-calc-form select {
        height: 48px;
        font-size: 16px; /* Evita zoom en iOS */
    }
    
    .bixxus-result-card {
        font-size: 16px;
        padding: 16px;
    }
}

/* Contenedor interno del paso */
.bixxus-step-inner {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 0;
    font-family: sans-serif;
    color: #444;
}

h2.bixxus-step-title {
    font-size: 1.4rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* Labels del formulario de calculadora */
#bixxus-calc-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #1B1B1B;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

/* Primer label no necesita margen superior */
#bixxus-calc-form label:first-of-type {
    margin-top: 0;
}

/* Resto de labels tienen espaciado de 28px del input anterior */
#bixxus-calc-form label:not(:first-of-type) {
    margin-top: 28px;
}

/* Inputs y selects de la calculadora */
#bixxus-calc-form input,
#bixxus-calc-form select,
#bixxus-wallet-form input,
#bixxus-wallet-form select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

#bixxus-calc-form input::placeholder,
#bixxus-wallet-form input::placeholder {
    color: #9aa3a6;
    font-weight: 400;
}

#bixxus-calc-form input:focus,
#bixxus-calc-form select:focus,
#bixxus-wallet-form input:focus,
#bixxus-wallet-form select:focus {
    outline: none;
    border: 1px solid rgba(237, 99, 0, 0.55);
    box-shadow: 0 0 0 4px rgba(237, 99, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

/* Botón Continuar */
#bixxus-calc-form button,
.bixxus-next {
    margin-top: 32px;
    background-color: #ED6300;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#bixxus-calc-form button:hover:not(:disabled),
.bixxus-next:hover:not(:disabled) {
    filter: brightness(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

#bixxus-calc-form button:disabled {
    background-color: #E0E0E0;
    color: #A5A5A5;
    box-shadow: none;
    cursor: not-allowed;
    filter: none;
    transform: none;
}

/* Banner KYC */
.bixxus-kyc-banner {
    background: rgba(240, 248, 255, 0.8);
    border: 1px solid rgba(200, 220, 240, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: slideIn 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bixxus-kyc-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(173, 216, 230, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B9DB8;
}

.bixxus-kyc-banner-content {
    flex: 1;
}

.bixxus-kyc-banner-title {
    color: #4A5568;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    margin: 0 0 6px 0 !important;
    font-family: 'Poppins', sans-serif;
}

.bixxus-kyc-banner-text {
    color: #6B7280;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-family: 'Poppins', sans-serif;
}

.bixxus-kyc-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(96, 165, 250, 0.12);
    color: #5B8FB9;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.bixxus-kyc-button:hover {
    background: rgba(96, 165, 250, 0.18);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.bixxus-kyc-button svg {
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
}

.bixxus-kyc-button:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 600px) {
    .bixxus-kyc-banner {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .bixxus-kyc-banner-icon {
        width: 36px;
        height: 36px;
    }
    
    .bixxus-kyc-banner-title {
        font-size: 14px;
    }
    
    .bixxus-kyc-banner-text {
        font-size: 12px;
    }
}

/* === PASO 2: WALLET === */
.bixxus-summary-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.bixxus-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.bixxus-summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bixxus-summary-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.bixxus-summary-value {
    font-size: 16px;
    color: #1B1B1B;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.bixxus-field-note {
    font-size: 12px;
    color: #6B7280;
    margin-top: 6px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.bixxus-navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.bixxus-back-btn,
#bixxus-back-to-step1.bixxus-back-btn,
button#bixxus-back-to-step1 {
    flex: 1;
    background: rgba(0, 0, 0, 0.04) !important;
    color: #4A5568 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    box-sizing: border-box !important;
    width: auto !important;
    margin: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.bixxus-back-btn:hover,
#bixxus-back-to-step1.bixxus-back-btn:hover,
button#bixxus-back-to-step1:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-1px);
}

.bixxus-navigation-buttons .bixxus-next {
    flex: 2;
    margin-top: 0 !important;
}

/* Labels del formulario de wallet */
#bixxus-wallet-form label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    margin-bottom: 8px;
    margin-top: 16px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

#bixxus-wallet-form label:first-of-type {
    margin-top: 0;
}

@media (max-width: 600px) {
    .bixxus-navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .bixxus-back-btn,
    .bixxus-navigation-buttons .bixxus-next {
        flex: 1;
        width: 100%;
    }
}

/* ========================================
   PÁGINAS LIMPIAS: Payment & Thanks
   ======================================== */

/* Ocultar header/footer/sidebar en páginas de pago y gracias */
body.bixxus-clean-layout .site-header nav,
body.bixxus-clean-layout .site-header .main-navigation,
body.bixxus-clean-layout .site-footer,
body.bixxus-clean-layout .sidebar,
body.bixxus-clean-layout #secondary,
body.bixxus-clean-layout .widget-area,
body.bixxus-clean-layout .breadcrumbs,
body.bixxus-view-payment .site-header nav,
body.bixxus-view-payment .site-footer,
body.bixxus-view-payment .sidebar,
body.bixxus-view-thanks .site-header nav,
body.bixxus-view-thanks .site-footer,
body.bixxus-view-thanks .sidebar {
    display: none !important;
}

/* Header minimalista solo con logo */
body.bixxus-clean-layout .site-header,
body.bixxus-view-payment .site-header,
body.bixxus-view-thanks .site-header {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

/* Contenedor principal más limpio */
body.bixxus-clean-layout .site-main,
body.bixxus-view-payment .site-main,
body.bixxus-view-thanks .site-main {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Vista de Pago - Estilo Minimalista Bixxus */
.bixxus-payment-view {
    font-family: 'Poppins', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bixxus-payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.bixxus-payment-header h1 {
    font-size: 2.5rem;
    color: #004559;
    margin-bottom: 10px;
    font-weight: 600;
}

.bixxus-payment-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Resumen de compra */
.bixxus-payment-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.bixxus-payment-summary h2 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.bixxus-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bixxus-summary-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.bixxus-summary-item .label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.bixxus-summary-item .value {
    display: block;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.bixxus-summary-item.total {
    grid-column: 1 / -1;
    background: #fff9f0;
    border-color: #FAB029;
    border-width: 2px;
}

.bixxus-summary-item.total .label {
    color: #666;
}

.bixxus-summary-item.total .value {
    font-size: 1.8rem;
    color: #ED6300;
    font-weight: 600;
}

.bixxus-summary-item .value.mono {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

/* Layout de dos columnas */
.bixxus-payment-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: hidden;
    align-items: start;
}

/* Columna izquierda - Instrucciones */
.bixxus-payment-left {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.bixxus-instructions-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.bixxus-instructions-card h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-step {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.instruction-step:hover {
    background: #f5f5f5;
    transform: translateX(3px);
    border-color: #e0e0e0;
}

.instruction-step.important {
    background: #fff9e6;
    border: 2px solid #FAB029;
}

.instruction-step.important:hover {
    background: #fff5d6;
}

.step-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #e9ecef;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.instruction-step.important .step-icon {
    background: transparent;
    color: #ED6300;
    font-size: 1.8rem;
}

.step-content h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.recipient-badge {
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    margin: 12px 0;
    position: relative;
    border: 1px solid #e9ecef;
}

.recipient-badge::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #28a745;
    font-weight: normal;
}

.recipient-badge strong {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.warning-text {
    color: #ED6300;
    font-weight: 600;
    margin-top: 8px;
}

/* Columna derecha - QR y Upload */
.bixxus-payment-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

/* Card Bre-B */
.bixxus-breb-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.bixxus-breb-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.bixxus-qr-section {
    margin-bottom: 25px;
}

.bixxus-qr-code {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    border: 2px solid #f5f5f5;
}

.qr-hint {
    font-size: 0.9rem;
    color: #666;
}

/* Llave Bre-B */
.bixxus-breb-key-section {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.key-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.breb-key-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    border: 2px solid #e9ecef;
}

.breb-key-display code {
    flex: 1;
    color: #1a1a1a;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.copy-btn {
    background: transparent;
    color: #6c757d;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: #ED6300;
    transform: scale(1.15);
}

/* Advertencia de pagos de terceros */
.bixxus-third-party-warning {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #FAB029;
    box-shadow: 0 2px 6px rgba(250, 176, 41, 0.15);
}

.bixxus-third-party-warning p {
    font-size: 0.875rem;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.bixxus-third-party-warning strong {
    color: #ED6300;
    font-weight: 600;
}

/* Upload Card */
.bixxus-upload-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.bixxus-upload-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.upload-hint {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fafafa;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: #ED6300;
    background: #fff9f0;
}

.upload-placeholder {
    width: 100%;
    cursor: pointer;
    pointer-events: all;
}

.upload-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
    color: #ED6300;
}

.upload-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.upload-area small {
    color: #999;
    font-size: 0.8rem;
}

.upload-preview {
    position: relative;
}

/* Preview Compacto */
.file-preview-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    position: relative;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    word-break: break-word;
    box-sizing: border-box !important;
}

.preview-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.pdf-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ED6300;
    color: white;
    border-radius: 6px;
    font-size: 2rem;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    max-width: 250px !important;
    display: block;
}

.file-size {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.upload-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: #dc3545;
    border: none;
    width: auto;
    height: auto;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 4px;
    line-height: 1;
}

.remove-image:hover {
    color: #c82333;
    transform: scale(1.2);
}

.upload-error {
    color: #ED6300;
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 10px;
    background: #fff3e6;
    border-radius: 6px;
    border: 1px solid #ffd6b3;
}

/* Botones de acción */
.bixxus-payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.bixxus-btn {
    flex: 1;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.bixxus-btn-primary {
    background: #ED6300;
    color: white;
}

.bixxus-btn-primary:hover:not(:disabled) {
    background: #d45700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 99, 0, 0.3);
}

.bixxus-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bixxus-btn-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 1px solid #e0e0e0 !important;
}

.bixxus-btn-secondary:hover {
    background: #f8f9fa !important;
    border-color: #6c757d !important;
    color: #1a1a1a !important;
}

/* Loading overlay */
.bixxus-payment-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.bixxus-payment-loading p {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE - MÓVIL (Una columna)
   ============================================ */

@media (max-width: 768px) {
    .bixxus-payment-view {
        padding: 20px 15px;
    }

    .bixxus-payment-header h1 {
        font-size: 1.8rem;
    }

    .bixxus-payment-subtitle {
        font-size: 1rem;
    }

    .bixxus-payment-summary {
        padding: 20px;
    }

    .bixxus-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bixxus-summary-item.total .value {
        font-size: 1.5rem;
    }

    /* Una sola columna en móvil */
    .bixxus-payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bixxus-instructions-card,
    .bixxus-breb-card,
    .bixxus-upload-card {
        padding: 20px;
    }

    .instruction-step {
        padding: 15px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .recipient-badge strong {
        font-size: 1.1rem;
    }

    .bixxus-qr-code {
        max-width: 180px;
    }

    .breb-key-display code {
        font-size: 1rem;
    }

    .bixxus-payment-actions {
        flex-direction: column;
    }

    .bixxus-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }

    .upload-area {
        padding: 30px 15px;
    }

    .upload-icon {
        font-size: 2.5rem;
    }
}
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.bixxus-payment-loading p {
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Error de pago */
.bixxus-payment-error {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bixxus-payment-error p {
    font-size: 1.1rem;
    color: #d32f2f;
    margin-bottom: 20px;
}

/* ========================================
   VISTA DE GRACIAS (Thanks)
   ======================================== */

.bixxus-thanks-view {
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

.bixxus-thanks-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: white;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.bixxus-thanks-header h1 {
    font-size: 2.2rem;
    color: #1B1B1B;
    margin-bottom: 10px;
}

.bixxus-thanks-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Información de orden */
.bixxus-thanks-order-info {
    margin-bottom: 40px;
}

.order-number {
    background: rgba(33, 150, 243, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-number .label {
    color: #666;
    font-weight: 400;
}

.order-number .value {
    color: #2196F3;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Resumen en thanks */
.bixxus-thanks-summary {
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bixxus-thanks-summary h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1B1B1B;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row.total {
    border-top: 2px solid #4CAF50;
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-row .label {
    color: #666;
    font-weight: 400;
}

.summary-row .value {
    color: #1B1B1B;
    font-weight: 500;
}

.summary-row .value.mono {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

/* Timeline de próximos pasos */
.bixxus-thanks-next-steps {
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bixxus-thanks-next-steps h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: #1B1B1B;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    color: #1B1B1B;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.step-time {
    display: inline-block;
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* Info box */
.bixxus-thanks-info-box {
    background: rgba(255, 243, 224, 0.9);
    border: 1.5px solid #FFB74D;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.bixxus-thanks-info-box h3 {
    font-size: 1.1rem;
    color: #1B1B1B;
    margin-bottom: 12px;
}

.bixxus-thanks-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bixxus-thanks-info-box li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.bixxus-thanks-info-box li:before {
    content: "→ ";
    color: #FF9800;
    font-weight: 600;
    margin-right: 8px;
}

/* Resumen de Orden en Thanks Page */
.bixxus-order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.bixxus-order-summary h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #004559;
    text-align: center;
}

.bixxus-order-details {
    width: 100%;
    border-collapse: collapse;
}

.bixxus-order-details tr {
    border-bottom: 1px solid #e9ecef;
}

.bixxus-order-details tr:last-child {
    border-bottom: none;
}

.bixxus-order-details td {
    padding: 12px 8px;
    font-size: 14px;
    line-height: 1.5;
}

.bixxus-order-details td:first-child {
    color: #6c757d;
    width: 40%;
}

.bixxus-order-details td:last-child {
    color: #1a1a1a;
    font-weight: 500;
}

.bixxus-order-details .wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
}

/* Acciones finales */
.bixxus-thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.bixxus-thanks-error {
    text-align: center;
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .bixxus-payment-actions,
    .bixxus-thanks-actions {
        flex-direction: column;
    }
    
    .bank-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .bank-row .value,
    .value-copy {
        text-align: left;
        justify-content: flex-start;
    }
}

/* Modal de confirmaci�n */
.bixxus-confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.confirm-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.confirm-modal-icon {
    width: 70px;
    height: 70px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.confirm-modal-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.confirm-modal-content > p {
    color: #6c757d;
    margin-bottom: 20px;
}

.confirm-checklist {
    text-align: left;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    list-style: none;
}

.confirm-checklist li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
}

.confirm-modal-actions {
    display: flex;
    gap: 15px;
}

.confirm-modal-actions .bixxus-btn {
    flex: 1;
    padding: 14px 25px;
}

.bixxus-custom-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: alertSlideDown 0.3s ease;
}

@keyframes alertSlideDown {
    from { transform: translate(-50%, -100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* ===========================================
   P�GINA DE GRACIAS / THANKS VIEW
   =========================================== */

.bixxus-thanks-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.bixxus-thanks-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.bixxus-thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ED6300 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(237, 99, 0, 0.3);
}

.bixxus-thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.bixxus-thanks-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Resumen de la orden */
.bixxus-order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.bixxus-order-summary h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.bixxus-order-details {
    width: 100%;
    border-collapse: collapse;
}

.bixxus-order-details tr {
    border-bottom: 1px solid #e0e0e0;
}

.bixxus-order-details tr:last-child {
    border-bottom: none;
}

.bixxus-order-details td {
    padding: 12px 8px;
    font-size: 14px;
}

.bixxus-order-details td:first-child {
    color: #666;
    width: 40%;
}

.bixxus-order-details td:last-child {
    color: #1a1a1a;
    font-weight: 500;
}

.bixxus-order-details .wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
}

/* Informaci�n - Qu� sigue */
.bixxus-thanks-info {
    background: #fff8f0;
    border-left: 4px solid #ED6300;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.bixxus-thanks-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.bixxus-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bixxus-timeline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ED6300;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Botones de acci�n */
.bixxus-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.bixxus-thanks-actions a {
    text-decoration: none;
}

.bixxus-btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
}

.bixxus-btn-whatsapp:hover {
    background: #20BA5A !important;
    border-color: #20BA5A !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bixxus-thanks-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .bixxus-thanks-card {
        padding: 25px;
    }
    
    .bixxus-thanks-title {
        font-size: 24px;
    }
    
    .bixxus-thanks-actions {
        flex-direction: column;
    }
    
    .bixxus-thanks-actions a {
        width: 100%;
        text-align: center;
    }
    
    .bixxus-order-details td {
        font-size: 13px;
        padding: 10px 5px;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.bixxus-order-number {
    font-size: 18px;
    font-weight: 600;
    color: #ED6300;
    margin: 10px 0 20px 0;
}

/* Botones de acci�n - versi�n compacta */
.bixxus-thanks-actions .bixxus-btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
    min-width: auto !important;
}

/* Botones principales - forzar texto blanco */
.bixxus-btn-primary {
    background: #ED6300 !important;
    border: 2px solid #ED6300 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.bixxus-btn-primary:hover {
    background: #d55600 !important;
    border-color: #d55600 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(237, 99, 0, 0.3) !important;
}

.bixxus-btn-secondary {
    background: transparent !important;
    border: 2px solid #ED6300 !important;
    color: #ED6300 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.bixxus-btn-secondary:hover {
    background: #ED6300 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.bixxus-btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}

.bixxus-btn-whatsapp:hover {
    background: #20BA5A !important;
    border-color: #20BA5A !important;
    color: white !important;
}

@media (max-width: 768px) {
    .bixxus-thanks-actions {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    
    .bixxus-thanks-actions .bixxus-btn {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* Ajustes de tama�o - icono y t�tulo m�s compactos */
.bixxus-thanks-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 30px !important;
    margin: 0 auto 20px !important;
}

.bixxus-thanks-title {
    font-size: 26px !important;
    margin: 0 0 10px 0 !important;
}

.bixxus-order-number {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ED6300 !important;
    margin: 5px 0 15px 0 !important;
}

@media (max-width: 768px) {
    .bixxus-thanks-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 25px !important;
    }
    
    .bixxus-thanks-title {
        font-size: 22px !important;
    }
}

/* ========================================
   Estilos para Resumen de Compra (Grid)
======================================== */
.bixxus-order-summary-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bixxus-order-summary-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.bixxus-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bixxus-summary-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.bixxus-summary-item:hover {
    border-color: #ED6300;
    box-shadow: 0 2px 8px rgba(237, 99, 0, 0.1);
}

.bixxus-summary-wallet {
    grid-column: 1 / -1;
}

.summary-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.summary-value.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
    color: #ED6300;
    line-height: 1.4;
}

/* ========================================
   Estilos para Barra de Progreso
======================================== */
.bixxus-progress-container {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border-left: 4px solid #ED6300;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

.bixxus-progress-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.bixxus-progress-bar-wrapper {
    margin-bottom: 15px;
}

.bixxus-progress-bar {
    width: 100%;
    height: 32px;
    background: #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.bixxus-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ED6300, #ff8c42);
    border-radius: 16px;
    transition: width 0.8s ease, background 0.5s ease;
    box-shadow: 0 2px 8px rgba(237, 99, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.bixxus-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.bixxus-progress-info {
    margin-top: 12px;
    text-align: center;
}

.bixxus-progress-info span {
    font-size: 14px;
    font-weight: 600;
    color: #ED6300;
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.bixxus-progress-message {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
}

/* Responsive para nuevos elementos */
@media (max-width: 768px) {
    .bixxus-summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bixxus-summary-item {
        padding: 10px;
    }
    
    .summary-label {
        font-size: 12px;
    }
    
    .summary-value {
        font-size: 14px;
    }
    
    .bixxus-progress-bar {
        height: 28px;
    }
    
    .bixxus-progress-container,
    .bixxus-order-summary-card {
        padding: 20px;
    }
}

/* ========================================
   Estilos para Header de Orden con Estado
======================================== */
.bixxus-order-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 20px 0;
    flex-wrap: wrap;
}

.bixxus-order-number {
    font-size: 18px;
    font-weight: 600;
    color: #ED6300;
    margin: 0 !important;
}

.bixxus-order-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.bixxus-order-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Estados específicos */
.status-pending {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #fff;
}

.status-pending::before {
    background: #fff;
}

.status-processing {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
    color: #fff;
}

.status-processing::before {
    background: #fff;
}

.status-on-hold {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
}

.status-on-hold::before {
    background: #fff;
}

.status-completed {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff;
}

.status-completed::before {
    background: #fff;
}

.status-cancelled,
.status-failed {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: #fff;
}

.status-cancelled::before,
.status-failed::before {
    background: #fff;
}

.status-refunded {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: #fff;
}

.status-refunded::before {
    background: #fff;
}

.status-default {
    background: linear-gradient(135deg, #607d8b 0%, #455a64 100%);
    color: #fff;
}

.status-default::before {
    background: #fff;
}

/* Responsive para header de orden */
@media (max-width: 768px) {
    .bixxus-order-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .bixxus-order-number {
        font-size: 16px;
    }
    
    .bixxus-order-status {
        font-size: 13px;
        padding: 5px 14px;
    }
}
