html.cc-nl-lock,
        html.cc-nl-lock body {
            overflow: hidden !important;
        }

        .cc-wrapper,
        .cc-wrapper * {
            box-sizing: border-box;
        }

        .cc-wrapper {
            --cc-primary: #2563eb;
            --cc-primary-dark: #1d4ed8;
            --cc-text: #111827;
            --cc-muted: #6b7280;
            --cc-border: #e5e7eb;
            --cc-surface: #ffffff;
            --cc-soft: #f8fafc;
            --cc-success: #059669;
            font-family: inherit;
            color: var(--cc-text);
            width: 100%;
            padding: 1.5rem 0 5rem;
        }

        .cc-container {
            display: grid;
            grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
            gap: 1.5rem;
            width: 100%;
            align-items: start;
        }

        .cc-filter {
            position: sticky;
            top: 1.5rem;
            background: var(--cc-surface);
            padding: 1.25rem;
            border: 1px solid var(--cc-border);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
        }

        .cc-filter-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .cc-filter-title {
            margin: 0;
            font-size: 1.08rem;
            line-height: 1.3;
        }

        .cc-filter-close {
            display: none;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            padding: 0;
            border: 1px solid var(--cc-border);
            border-radius: 10px;
            background: #fff;
            color: var(--cc-text);
            cursor: pointer;
        }

        .cc-search-label,
        .cc-filter-group-title,
        .cc-sort-label {
            display: block;
            font-weight: 700;
            font-size: 0.88rem;
        }

        .cc-search-label {
            margin-bottom: 0.45rem;
        }

        .cc-search-input,
        .cc-sort-select {
            width: 100%;
            min-height: 44px;
            padding: 0.65rem 0.75rem;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            background: #fff;
            color: var(--cc-text);
            font: inherit;
        }

        .cc-search-input:focus,
        .cc-sort-select:focus,
        .cc-filter-checkbox input:focus-visible,
        .cc-compare-toggle:focus-visible,
        .cc-filter-toggle:focus-visible,
        .cc-apply-button:focus-visible,
        .cc-secondary-button:focus-visible,
        .cc-filter-close:focus-visible,
        .cc-modal-close:focus-visible {
            outline: 3px solid rgba(37, 99, 235, 0.24);
            outline-offset: 2px;
        }

        .cc-filter-group {
            margin-top: 1.15rem;
            padding-top: 1.15rem;
            border-top: 1px solid var(--cc-border);
        }

        .cc-filter-group-title {
            margin-bottom: 0.7rem;
        }

        .cc-filter-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            margin-bottom: 0.72rem;
            font-size: 0.92rem;
            line-height: 1.35;
            cursor: pointer;
        }

        .cc-filter-checkbox input {
            width: 18px;
            height: 18px;
            margin: 0.05rem 0 0;
            accent-color: var(--cc-primary);
            flex: 0 0 auto;
        }

        .cc-reset-button {
            width: 100%;
            min-height: 42px;
            margin-top: 0.4rem;
            border: 1px solid var(--cc-border);
            border-radius: 10px;
            background: var(--cc-soft);
            color: var(--cc-text);
            font: inherit;
            font-weight: 700;
            cursor: pointer;
        }

        .cc-feed {
            min-width: 0;
        }

        .cc-feed-toolbar {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .cc-toolbar-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
        }

        .cc-result-count {
            color: var(--cc-muted);
            font-size: 0.92rem;
            white-space: nowrap;
        }

        .cc-sort-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.65rem;
            min-width: min(100%, 310px);
        }

        .cc-sort-label {
            white-space: nowrap;
        }

        .cc-sort-select {
            max-width: 215px;
        }

        .cc-filter-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 44px;
            padding: 0.65rem 0.85rem;
            border: 1px solid var(--cc-border);
            border-radius: 10px;
            background: #fff;
            color: var(--cc-text);
            font: inherit;
            font-weight: 700;
            cursor: pointer;
        }

        .cc-filter-count {
            display: none;
            min-width: 22px;
            height: 22px;
            padding: 0 0.35rem;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--cc-primary);
            color: #fff;
            font-size: 0.75rem;
        }

        .cc-filter-count.is-visible {
            display: inline-flex;
        }

        .cc-card-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
            gap: 1.25rem;
            width: 100%;
        }

        .cc-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            padding: 1.25rem;
            border: 1px solid var(--cc-border);
            border-radius: 16px;
            background: var(--cc-surface);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .cc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.11);
        }

        .cc-card.featured {
            border-color: var(--cc-primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10), 0 12px 28px rgba(15, 23, 42, 0.08);
        }

        .cc-ribbon {
            position: absolute;
            top: 0.85rem;
            left: 0.85rem;
            z-index: 2;
            padding: 0.32rem 0.62rem;
            border-radius: 999px;
            background: var(--cc-primary);
            color: #fff;
            font-size: 0.73rem;
            font-weight: 800;
            line-height: 1;
        }

        .cc-card-image-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 170px;
            margin-bottom: 1rem;
            padding: 0.85rem;
            border-radius: 12px;
            background: var(--cc-soft);
            overflow: hidden;
        }

        .cc-card-image {
            display: block;
            width: 100%;
            height: 150px;
            object-fit: contain;
        }

        .cc-card-title {
            margin: 0;
            font-size: 1.14rem;
            line-height: 1.35;
        }

        .cc-rating {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            width: fit-content;
            margin-top: 0.55rem;
            padding: 0.25rem 0.55rem;
            border-radius: 999px;
            background: #eff6ff;
            color: #1e40af;
            font-size: 0.86rem;
            font-weight: 800;
        }

        .cc-rating svg {
            width: 15px;
            height: 15px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .cc-card-facts {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
            margin: 1rem 0 0;
            padding: 0.9rem;
            border-radius: 12px;
            background: var(--cc-soft);
        }

        .cc-fact {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
            font-size: 0.88rem;
        }

        .cc-fact-label {
            color: var(--cc-muted);
        }

        .cc-fact-value {
            text-align: right;
            font-weight: 800;
        }

        .cc-benefits {
            flex: 1 1 auto;
            list-style: none;
            padding: 0;
            margin: 1rem 0;
            font-size: 0.9rem;
        }

        .cc-benefits li {
            position: relative;
            padding-left: 1.45rem;
            margin-bottom: 0.48rem;
            line-height: 1.45;
        }

        .cc-benefits li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.34rem;
            width: 0.85rem;
            height: 0.85rem;
            border-radius: 50%;
            background: var(--cc-success);
            box-shadow: inset 0 0 0 3px #fff;
            border: 1px solid var(--cc-success);
        }

        .cc-card-actions {
            margin-top: auto;
        }

        .cc-compare-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            width: 100%;
            min-height: 42px;
            margin-bottom: 0.7rem;
            padding: 0.6rem 0.85rem;
            border: 1px solid var(--cc-border);
            border-radius: 10px;
            background: #fff;
            color: var(--cc-text);
            font: inherit;
            font-weight: 800;
            cursor: pointer;
        }

        .cc-compare-toggle[aria-pressed="true"] {
            border-color: var(--cc-primary);
            background: #eff6ff;
            color: #1d4ed8;
        }

        .cc-compare-toggle svg {
            width: 18px;
            height: 18px;
        }

        .cc-apply-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            width: 100%;
            min-height: 48px;
            padding: 0.75rem 1rem;
            border: 0;
            border-radius: 11px;
            background: var(--cc-primary);
            color: #fff !important;
            text-decoration: none !important;
            font-weight: 800;
            text-align: center;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .cc-apply-button:hover {
            background: var(--cc-primary-dark);
            color: #fff !important;
            transform: translateY(-1px);
        }

        .cc-apply-button svg {
            width: 18px;
            height: 18px;
            transition: transform 0.2s ease;
        }

        .cc-apply-button:hover svg {
            transform: translateX(2px);
        }

        .cc-ad-label {
            display: block;
            margin-top: 0.4rem;
            color: var(--cc-muted);
            font-size: 0.72rem;
            line-height: 1.2;
            text-align: center;
        }

        .cc-empty-state {
            grid-column: 1 / -1;
            padding: 2rem;
            border: 1px dashed #cbd5e1;
            border-radius: 14px;
            background: var(--cc-soft);
            text-align: center;
        }

        .cc-filter-overlay {
            display: none;
        }

        .cc-compare-bar {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            left: 1rem;
            z-index: 9998;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            max-width: 760px;
            margin: 0 auto;
            padding: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 14px;
            background: #0f172a;
            color: #fff;
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.34);
        }

        .cc-compare-bar.is-visible {
            display: flex;
        }

        .cc-compare-bar-text {
            min-width: 0;
            font-size: 0.9rem;
            font-weight: 800;
        }

        .cc-compare-bar-actions {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            flex: 0 0 auto;
        }

        .cc-secondary-button,
        .cc-primary-button {
            min-height: 42px;
            padding: 0.58rem 0.85rem;
            border-radius: 9px;
            font: inherit;
            font-weight: 800;
            cursor: pointer;
        }

        .cc-secondary-button {
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: transparent;
            color: #fff;
        }

        .cc-primary-button {
            border: 1px solid #fff;
            background: #fff;
            color: #0f172a;
        }

        .cc-compare-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(15, 23, 42, 0.70);
        }

        .cc-compare-modal.is-open {
            display: flex;
        }

        .cc-modal-panel {
            width: min(1100px, 100%);
            max-height: min(88vh, 900px);
            overflow: hidden;
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 24px 70px rgba(15, 23, 42, 0.35);
        }

        .cc-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--cc-border);
        }

        .cc-modal-title {
            margin: 0;
            font-size: 1.2rem;
        }

        .cc-modal-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            padding: 0;
            border: 1px solid var(--cc-border);
            border-radius: 10px;
            background: #fff;
            color: var(--cc-text);
            cursor: pointer;
        }

        .cc-modal-body {
            max-height: calc(88vh - 75px);
            overflow: auto;
            padding: 1rem;
        }

        .cc-compare-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .cc-compare-table {
            width: 100%;
            min-width: 720px;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid var(--cc-border);
            border-radius: 12px;
            overflow: hidden;
        }

        .cc-compare-table th,
        .cc-compare-table td {
            padding: 0.85rem;
            border-right: 1px solid var(--cc-border);
            border-bottom: 1px solid var(--cc-border);
            vertical-align: top;
            text-align: left;
            font-size: 0.88rem;
            line-height: 1.45;
        }

        .cc-compare-table th:last-child,
        .cc-compare-table td:last-child {
            border-right: 0;
        }

        .cc-compare-table tr:last-child th,
        .cc-compare-table tr:last-child td {
            border-bottom: 0;
        }

        .cc-compare-table th[scope="row"] {
            width: 155px;
            background: var(--cc-soft);
            font-weight: 800;
        }

        .cc-compare-card-head {
            min-width: 180px;
        }

        .cc-compare-card-head img {
            display: block;
            width: 120px;
            height: 76px;
            margin-bottom: 0.55rem;
            object-fit: contain;
        }

        .cc-compare-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0.55rem 0.75rem;
            border-radius: 9px;
            background: var(--cc-primary);
            color: #fff !important;
            text-decoration: none !important;
            font-weight: 800;
        }

        .cc-compare-ad {
            display: block;
            margin-top: 0.3rem;
            color: var(--cc-muted);
            font-size: 0.7rem;
        }

        .cc-screen-reader-text {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        @media (max-width: 900px) {
            .cc-container {
                grid-template-columns: 1fr;
            }

            .cc-filter {
                position: fixed;
                top: 0;
                bottom: 0;
                left: 0;
                z-index: 9999;
                width: min(88vw, 360px);
                max-width: 100%;
                overflow-y: auto;
                border: 0;
                border-radius: 0 18px 18px 0;
                transform: translateX(-105%);
                visibility: hidden;
                transition: transform 0.25s ease, visibility 0.25s ease;
                box-shadow: 18px 0 44px rgba(15, 23, 42, 0.22);
            }

            .cc-filter.is-open {
                transform: translateX(0);
                visibility: visible;
            }

            .cc-filter-close {
                display: inline-flex;
            }

            .cc-filter-overlay {
                position: fixed;
                inset: 0;
                z-index: 9997;
                display: block;
                background: rgba(15, 23, 42, 0.58);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.25s ease, visibility 0.25s ease;
            }

            .cc-filter-overlay.is-open {
                opacity: 1;
                visibility: visible;
            }

            .cc-filter-toggle {
                display: inline-flex;
            }

            .cc-feed-toolbar {
                align-items: center;
            }
        }

        @media (max-width: 640px) {
            .cc-wrapper {
                padding-top: 0.75rem;
            }

            .cc-feed-toolbar {
                display: grid;
                grid-template-columns: 1fr auto;
                align-items: end;
                gap: 0.75rem;
            }

            .cc-toolbar-left {
                align-items: stretch;
                flex-direction: column;
                gap: 0.4rem;
            }

            .cc-filter-toggle {
                width: 100%;
            }

            .cc-result-count {
                white-space: normal;
            }

            .cc-sort-wrap {
                display: block;
                min-width: 145px;
            }

            .cc-sort-label {
                margin-bottom: 0.35rem;
                font-size: 0.78rem;
            }

            .cc-sort-select {
                max-width: none;
                min-height: 44px;
                font-size: 0.88rem;
            }

            .cc-card-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .cc-card {
                padding: 1rem;
            }

            .cc-card:hover {
                transform: none;
            }

            .cc-card-image-wrap {
                min-height: 145px;
            }

            .cc-card-image {
                height: 130px;
            }

            .cc-compare-bar {
                align-items: stretch;
                flex-direction: column;
                gap: 0.7rem;
                padding: 0.75rem;
            }

            .cc-compare-bar-actions {
                display: grid;
                grid-template-columns: 1fr 1.4fr;
                width: 100%;
            }

            .cc-secondary-button,
            .cc-primary-button {
                width: 100%;
            }

            .cc-compare-modal {
                align-items: flex-end;
                padding: 0;
            }

            .cc-modal-panel {
                width: 100%;
                max-height: 92vh;
                border-radius: 18px 18px 0 0;
            }

            .cc-modal-body {
                max-height: calc(92vh - 75px);
                padding: 0.75rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .cc-card,
            .cc-filter,
            .cc-filter-overlay,
            .cc-apply-button,
            .cc-apply-button svg {
                transition: none !important;
            }
        }
