        :root {
            --mo-primary: #0a2540; /* Navy Blue matcher Simple Denmark */
            --mo-primary-hover: #153c66;
            --mo-bg: #f9fbfd;
            --mo-border: #e2e8f0;
            --mo-text-dark: #2d3748;
            --mo-text-light: #718096;
            --mo-promo-bg: #c60c30; /* Dansk rød til tags */
            --mo-promo-text: #ffffff;
        }
        .mo-wrapper {
            display: grid; grid-template-columns: 260px 1fr; gap: 30px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            align-items: start; margin-top: 20px;
        }
        
        /* Sidebar Styling - Forstærket Sticky */
        .mo-sidebar {
            background: #fff; padding: 25px; border-radius: 8px;
            border: 1px solid var(--mo-border); box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            position: -webkit-sticky; position: sticky; top: 100px; 
            align-self: start;
            max-height: calc(100vh - 120px); overflow-y: auto; z-index: 10;
        }
        .mo-sidebar-section-title {
            font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
            color: var(--mo-text-dark); margin-bottom: 15px; border-bottom: 2px solid var(--mo-border); padding-bottom: 5px;
        }
        .mo-filter-group { margin-bottom: 30px; }
        .mo-filter-group label.mo-range-label {
            display: flex; justify-content: space-between; font-weight: 600;
            margin-bottom: 10px; font-size: 14px; color: var(--mo-text-dark);
        }
        input[type=range] { width: 100%; cursor: pointer; accent-color: var(--mo-primary); }
        
        /* Checkbox Styling & Expand logic */
        .mo-checkbox-list { display: flex; flex-direction: column; gap: 10px; }
        .mo-checkbox-item { display: flex; align-items: center; cursor: pointer; font-size: 14px; color: var(--mo-text-dark); }
        .mo-checkbox-item input { margin-right: 10px; cursor: pointer; width: 16px; height: 16px; accent-color: var(--mo-primary); }
        
        /* Skjul 5. element og fremefter som standard */
        .mo-checkbox-list .mo-checkbox-item:nth-child(n+5) { display: none; }
        .mo-checkbox-list.mo-expanded .mo-checkbox-item:nth-child(n+5) { display: flex; }
        
        .mo-show-more-providers {
            font-size: 13px; color: var(--mo-primary); font-weight: 600; cursor: pointer;
            margin-top: 15px; display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s;
        }
        .mo-show-more-providers:hover { color: var(--mo-primary-hover); }
        .mo-show-more-providers svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s ease; }
        .mo-checkbox-list.mo-expanded ~ .mo-show-more-providers svg { transform: rotate(180deg); }

        /* Top Bar Styling */
        .mo-top-bar {
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
            margin-bottom: 20px; font-size: 14px; color: var(--mo-text-light); gap: 15px;
        }
        .mo-top-bar-summary strong { color: var(--mo-text-dark); }
        .mo-top-bar-controls { display: flex; align-items: center; gap: 20px; }
        .mo-sort-select {
            padding: 8px 15px; border: 1px solid var(--mo-border); border-radius: 6px;
            background-color: #fff; color: var(--mo-text-dark); cursor: pointer; font-size: 14px;
        }
        .mo-last-updated { color: var(--mo-text-light); font-weight: 600; font-size: 13px;}

        /* Horizontal List Card Styling */
        .mo-list { display: flex; flex-direction: column; gap: 20px; }
        .mo-list-card {
            background: #fff; border: 1px solid var(--mo-border); border-radius: 8px; 
            padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            display: grid; grid-template-columns: 180px 1fr 220px; gap: 25px;
            align-items: center; transition: all 0.2s ease;
        }
        .mo-list-card:hover { border-color: var(--mo-primary); box-shadow: 0 6px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
        
        /* Col 1: Logo */
        .mo-card-logo-col { display: flex; justify-content: center; align-items: center; }
        .mo-card-logo { max-width: 140px; max-height: 60px; object-fit: contain; }

        /* Col 2: Info */
        .mo-card-info-col { display: flex; flex-direction: column; align-items: flex-start; }
        .mo-promo-tag {
            background-color: var(--mo-promo-bg); color: var(--mo-promo-text);
            padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;
            margin-bottom: 8px; display: inline-block;
        }
        .mo-main-stats { font-size: 24px; font-weight: 800; color: var(--mo-text-dark); margin-bottom: 4px; display: flex; align-items: baseline; gap: 8px;}
        
        /* Network Badge Styling */
        .mo-network-badge { 
            font-size: 11px; font-weight: 600; border: 1px solid var(--mo-border); background: #f8f9fa; color: var(--mo-text-light);
            padding: 3px 8px; border-radius: 12px; letter-spacing: 0.5px;
            position: relative; top: -3px; display: inline-flex; align-items: center; gap: 4px;
        }
        .mo-network-badge svg { width: 12px; height: 12px; stroke: currentColor; }

        .mo-sub-stats { font-size: 13px; color: var(--mo-text-light); margin-bottom: 12px; }
        
        /* USPs as pills */
        .mo-usps { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
        .mo-usp-pill {
            background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 4px;
            padding: 4px 8px; font-size: 12px; color: var(--mo-text-dark);
            display: flex; align-items: center; gap: 5px;
        }
        .mo-usp-pill svg { width: 12px; height: 12px; fill: var(--mo-primary); }

        /* Col 3: Action & Price */
        .mo-card-action-col { 
            display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
            border-left: 1px solid var(--mo-border); padding-left: 25px; text-align: right;
        }
        .mo-min-price { font-size: 11px; color: var(--mo-text-light); margin-bottom: 2px; }
        .mo-price-wrap { color: var(--mo-text-dark); margin-bottom: 15px; line-height: 1; }
        .mo-price-amount { font-size: 36px; font-weight: 900; }
        .mo-price-unit { font-size: 14px; font-weight: 600; }
        
        .mo-cta-btn {
            display: block; width: 100%; background: var(--mo-primary); color: #fff !important;
            padding: 14px 10px; border-radius: 6px; font-weight: 800; text-decoration: none;
            text-transform: uppercase; letter-spacing: 0.5px; font-size: 15px; text-align: center;
            transition: opacity 0.2s; border: none; cursor: pointer;
        }
        .mo-cta-btn:hover { opacity: 0.9; }
        .mo-ad-label { font-size: 10px; color: var(--mo-text-light); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

        /* Mobile Adjustments */
        .mo-mobile-header { display: none; }
        @media (max-width: 992px) {
            .mo-wrapper { grid-template-columns: 1fr; gap: 20px;}
            .mo-top-bar { flex-direction: column; align-items: flex-start; }
            .mo-top-bar-controls { width: 100%; justify-content: space-between; }
            
            .mo-list-card { grid-template-columns: 1fr; gap: 15px; padding: 25px 20px; }
            .mo-card-logo-col { justify-content: flex-start; border-bottom: 1px solid var(--mo-border); padding-bottom: 15px; }
            .mo-card-logo { max-height: 40px; }
            
            .mo-card-action-col { 
                border-left: none; padding-left: 0; align-items: center; text-align: center; 
                border-top: 1px solid var(--mo-border); padding-top: 20px; margin-top: 5px;
            }
            .mo-min-price { margin-bottom: 5px; }
            
            .mo-mobile-header { display: block; position: -webkit-sticky; position: sticky; bottom: 20px; z-index: 999; }
            .mo-mobile-toggle-btn {
                width: 100%; background: var(--mo-text-dark); color: #fff;
                padding: 15px; text-align: center; font-weight: bold; border-radius: 8px; cursor: pointer;
                display: flex; justify-content: center; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            }
            .mo-sidebar {
                display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999;
                border-radius: 0; padding: 30px; background: #fff; max-height: none; overflow-y: auto;
            }
            .mo-sidebar.mo-open { display: block; }
            .mo-sidebar-close { font-size: 32px; cursor: pointer; line-height: 1; float: right; margin-top: -10px; color: var(--mo-text-dark); }
        }
    
