        :root {
            --akf-primary: #0a2540; /* Navy Blue */
            --akf-primary-hover: #153c66;
            --akf-bg: #f9fbfd;
            --akf-border: #e2e8f0;
            --akf-text-dark: #2d3748;
            --akf-text-light: #718096;
            --akf-promo-bg: #c60c30; /* Dansk Rød */
            --akf-promo-text: #ffffff;
            --akf-badge-bg: #f1f5f9;
            --akf-star: #fbbf24;
        }
        
        .akf-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 */
        .akf-sidebar {
            background: #fff; padding: 25px; border-radius: 8px;
            border: 1px solid var(--akf-border); box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            position: -webkit-sticky; position: sticky; top: 100px; 
            max-height: calc(100vh - 120px); overflow-y: auto; z-index: 10;
        }
        .akf-sidebar-title {
            font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
            color: var(--akf-text-dark); margin-bottom: 15px; border-bottom: 2px solid var(--akf-border); padding-bottom: 5px;
        }
        .akf-filter-group { margin-bottom: 30px; }
        
        /* Checkboxes */
        .akf-checkbox-list { display: flex; flex-direction: column; gap: 10px; }
        .akf-checkbox-item { display: flex; align-items: center; cursor: pointer; font-size: 14px; color: var(--akf-text-dark); }
        .akf-checkbox-item input { margin-right: 10px; cursor: pointer; width: 16px; height: 16px; accent-color: var(--akf-primary); }
        
        /* Top Bar */
        .akf-top-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 20px; font-size: 14px; color: var(--akf-text-light); gap: 15px; }
        .akf-top-bar strong { color: var(--akf-text-dark); }
        .akf-sort-select { padding: 8px 15px; border: 1px solid var(--akf-border); border-radius: 6px; background: #fff; color: var(--akf-text-dark); cursor: pointer; font-size: 14px; }

        /* Cards */
        .akf-list { display: flex; flex-direction: column; gap: 20px; }
        .akf-card {
            background: #fff; border: 1px solid var(--akf-border); border-radius: 8px; 
            padding: 25px 20px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            display: grid; grid-template-columns: 180px 1fr 220px; gap: 25px;
            align-items: stretch; transition: all 0.2s ease; position: relative;
        }
        .akf-card:hover { border-color: var(--akf-primary); box-shadow: 0 6px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
        
        .akf-ribbon {
            position: absolute; top: -1px; left: 20px; background: var(--akf-promo-bg); color: var(--akf-promo-text);
            padding: 4px 12px; font-size: 11px; font-weight: 700; border-radius: 0 0 4px 4px; text-transform: uppercase; letter-spacing: 0.5px;
        }
        
        .akf-card-logo-col { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; }
        .akf-card-logo { max-width: 140px; max-height: 50px; object-fit: contain; }
        
        .akf-rating { font-size: 12px; color: var(--akf-text-light); display: flex; flex-direction: column; align-items: center; gap: 2px;}
        .akf-stars { display: flex; gap: 2px; }
        .akf-star { width: 12px; height: 12px; background: var(--akf-star); border-radius: 2px; display: inline-block; }

        .akf-card-info-col { display: flex; flex-direction: column; justify-content: center; }
        .akf-title { font-size: 20px; font-weight: 800; color: var(--akf-text-dark); margin: 0 0 8px 0; }
        .akf-desc { font-size: 14px; color: var(--akf-text-light); margin-bottom: 12px; line-height: 1.5; }
        
        .akf-usps { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--akf-text-dark); }
        .akf-usps li { display: flex; align-items: flex-start; gap: 8px; }
        .akf-usps svg { width: 14px; height: 14px; fill: var(--akf-primary); flex-shrink: 0; margin-top: 2px; }

        .akf-action-col { border-left: 1px solid var(--akf-border); padding-left: 25px; text-align: right; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
        
        .akf-price-label { font-size: 11px; text-transform: uppercase; color: var(--akf-text-light); letter-spacing: 0.5px; margin-bottom: 4px; }
        .akf-price-wrap { margin-bottom: 8px; }
        .akf-price-new { font-size: 32px; font-weight: 900; color: var(--akf-text-dark); line-height: 1; }
        .akf-price-unit { font-size: 14px; font-weight: 600; color: var(--akf-text-dark); }
        .akf-price-sub { font-size: 11px; color: var(--akf-text-light); margin-bottom: 15px; }
        
        .akf-btn {
            display: block; width: 100%; background: var(--akf-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;
        }
        .akf-btn:hover { opacity: 0.9; }
        .akf-ad-label { font-size: 10px; color: var(--akf-text-light); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

        /* Mobile */
        .akf-mobile-header { display: none; }
        @media (max-width: 992px) {
            .akf-wrapper { grid-template-columns: 1fr; gap: 20px;}
            .akf-card { grid-template-columns: 1fr; gap: 15px; padding: 35px 20px 20px; }
            .akf-ribbon { left: auto; right: 20px; border-radius: 0 0 4px 4px; }
            
            .akf-card-logo-col { border-bottom: 1px solid var(--akf-border); padding-bottom: 15px; flex-direction: row; justify-content: space-between; }
            .akf-rating { align-items: flex-end; }
            
            .akf-action-col { border-left: none; padding-left: 0; align-items: center; text-align: center; border-top: 1px solid var(--akf-border); padding-top: 20px; margin-top: 5px; }
            
            .akf-top-bar { align-items: flex-start; flex-direction: column; }
            .akf-top-bar-controls { width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
            
            .akf-mobile-header { display: block; position: sticky; bottom: 20px; z-index: 999; }
            .akf-mobile-toggle { width: 100%; background: var(--akf-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); }
            
            .akf-sidebar { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999; border-radius: 0; padding: 30px; max-height: 100vh; }
            .akf-sidebar.is-open { display: block; }
            .akf-sidebar-close { font-size: 32px; cursor: pointer; line-height: 1; float: right; margin-top: -10px; color: var(--akf-text-dark); }
        }
    
