
                .mi-ecommerce-container {
                    max-width: 1200px;
                    margin: 30px auto;
                    padding: 30px;
                    background: #ffffff;
                    border-radius: 12px;
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                }
                
                .ecommerce-header {
                    text-align: center;
                    margin-bottom: 40px;
                }
                
                .ecommerce-header h2 {
                    margin: 0 0 10px 0;
                    color: #1a1a1a;
                    font-size: 32px;
                }
                
                .ecommerce-header p {
                    color: #64748b;
                    font-size: 16px;
                }
                
                .ecommerce-cards {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 25px;
                    margin-bottom: 30px;
                }
                
                .ecommerce-card {
                    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
                    padding: 25px;
                    border-radius: 12px;
                    border: 2px solid #e2e8f0;
                }
                
                .ecommerce-card.bonus {
                    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
                    border-color: #f59e0b;
                }
                
                .ecommerce-card-title {
                    font-size: 18px;
                    font-weight: bold;
                    color: #1a1a1a;
                    margin-bottom: 20px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }
                
                .ecommerce-card-title .icon {
                    font-size: 24px;
                }
                
                .ecommerce-stats {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 15px;
                }
                
                .ecommerce-stat {
                    text-align: center;
                }
                
                .ecommerce-stat-value {
                    font-size: 28px;
                    font-weight: bold;
                    color: #0c4a6e;
                    margin-bottom: 5px;
                }
                
                .ecommerce-stat-label {
                    font-size: 12px;
                    color: #64748b;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                
                .ecommerce-progress {
                    margin-top: 20px;
                }
                
                .ecommerce-progress-bar {
                    width: 100%;
                    height: 30px;
                    background: #e2e8f0;
                    border-radius: 15px;
                    overflow: hidden;
                    position: relative;
                }
                
                .ecommerce-progress-fill {
                    height: 100%;
                    background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
                    border-radius: 15px;
                    transition: width 0.3s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    font-weight: bold;
                    font-size: 12px;
                }
                
                .ecommerce-progress-fill.warning {
                    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
                }
                
                .ecommerce-progress-fill.danger {
                    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
                }
                
                .ecommerce-total {
                    background: linear-gradient(135deg, #031549 0%, #0c4a6e 100%);
                    color: white !important;
                    padding: 30px;
                    border-radius: 12px;
                    text-align: center;
                }
                
                .ecommerce-total h3 {
                    margin: 0 0 20px 0;
                    color: white;
                    font-size: 24px;
                }
                
                .ecommerce-total-stats {
                    display: flex;
                    justify-content: space-around;
                    flex-wrap: wrap;
                    gap: 20px;
                }
                
                .ecommerce-total-stat {
                    text-align: center;
                }
                
                .ecommerce-total-stat-value {
                    font-size: 36px;
                    font-weight: bold;
                    color: white;
                    margin-bottom: 5px;
                }
                
                .ecommerce-total-stat-label {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.8);
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                
                .ecommerce-total-progress {
                    margin-top: 25px;
                }
                
                .ecommerce-total-progress-bar {
                    width: 100%;
                    height: 40px;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 20px;
                    overflow: hidden;
                    position: relative;
                }
                
                .ecommerce-total-progress-fill {
                    height: 100%;
                    background: linear-gradient(90deg, #00AD65 0%, #059669 100%);
                    border-radius: 20px;
                    transition: width 0.3s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    font-weight: bold;
                    font-size: 14px;
                }
                
                .ecommerce-total-progress-fill.warning {
                    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
                }
                
                .ecommerce-total-progress-fill.danger {
                    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
                }
