body,
html {
    overflow-x: hidden;
}

/* ===== COURSE REVIEW PAGE ===== */

/* Hero */
.cr-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    padding: 80px 24px 56px;
    position: relative;
    overflow: hidden;
}
.cr-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.09) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.cr-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cr-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.cr-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cr-search-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}
.cr-search-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    outline: none;
    color: var(--primary);
}
.cr-search-btn {
    padding: 16px 28px;
    background: var(--accent);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cr-search-btn:hover {
    background: var(--accent-dark);
}
.cr-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}
.cr-hero-stat {
    text-align: center;
}
.cr-hero-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}
.cr-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 4px;
}

/* ===== FILTER BAR — Premium redesign ===== */
.cr-filter-bar {
    background: #0f172a;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: sticky;
    top: 68px;
    z-index: 200;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

/* Top row: dropdowns + right-side controls */
.cr-filter-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Bottom row: chip filters */
.cr-filter-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Kept for backwards compat — now unused but harmless */
.cr-filter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* ── Autocomplete dropdown wrapper ── */
.cr-ac-wrap {
    position: relative;
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 230px;
}

.cr-ac-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 4px;
    padding-left: 2px;
}

.cr-ac-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cr-ac-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
}

.cr-ac-input {
    width: 100%;
    padding: 9px 32px 9px 32px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
    font-family: inherit;
}

.cr-ac-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.cr-ac-input:focus {
    border-color: var(--accent);
    background: rgba(239, 68, 68, 0.08);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.cr-ac-input.has-value {
    border-color: var(--accent);
    background: rgba(239, 68, 68, 0.1);
    color: #fff;
}

.cr-ac-chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transition: transform 0.2s;
}

.cr-ac-wrap.open .cr-ac-chevron {
    transform: translateY(-50%) rotate(180deg);
}

/* Active tag/badge shown inside input when value selected */
.cr-ac-selected-badge {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    pointer-events: none;
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Clear (×) button inside input */
.cr-ac-clear {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 2;
}
.cr-ac-clear:hover {
    background: var(--accent);
}

/* Dropdown list */
.cr-ac-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #1e293b;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.cr-ac-dropdown::-webkit-scrollbar {
    width: 4px;
}
.cr-ac-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.cr-ac-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.cr-ac-option {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        background 0.12s,
        color 0.12s;
}

.cr-ac-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cr-ac-option.selected {
    background: rgba(239, 68, 68, 0.15);
    color: #fff;
    font-weight: 700;
}

.cr-ac-option.selected::after {
    content: "✓";
    margin-left: auto;
    color: var(--accent);
    font-weight: 900;
    font-size: 12px;
}

.cr-ac-option-all {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
    padding-bottom: 10px;
}

.cr-ac-no-results {
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
    text-align: center;
}

/* ── Filter chips (Price, Rating) ── */
.cr-filter-group {
    display: flex;
    gap: 6px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
}
.cr-filter-group::-webkit-scrollbar {
    display: none;
}

.cr-filter-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.cr-filter-chip {
    padding: 5px 13px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s;
    color: rgba(255, 255, 255, 0.55);
    font-family: inherit;
}

.cr-filter-chip:hover {
    border-color: rgba(239, 68, 68, 0.5);
    color: #fff;
    background: rgba(239, 68, 68, 0.08);
}

.cr-filter-chip.active {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
}

/* ── Divider ── */
.cr-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ── View toggle buttons ── */
.cr-view-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.18s;
    font-size: 13px;
    flex-shrink: 0;
}

.cr-view-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cr-view-btn.active {
    border-color: var(--accent);
    color: #fff;
    background: rgba(239, 68, 68, 0.15);
}

/* ── Sort select ── */
.cr-sort-select {
    padding: 8px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    outline: none;
    transition:
        border-color 0.18s,
        background 0.18s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.cr-sort-select:focus {
    border-color: var(--accent);
    background-color: rgba(239, 68, 68, 0.08);
    color: #fff;
}

.cr-sort-select option {
    background: #1e293b;
    color: #fff;
}

/* ── Active filters summary bar ── */
.cr-active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 6px 24px 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.cr-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 12px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fca5a5;
    cursor: pointer;
    transition: background 0.15s;
}

.cr-active-tag:hover {
    background: rgba(239, 68, 68, 0.22);
}

.cr-active-tag i {
    font-size: 9px;
    opacity: 0.7;
}

.cr-clear-all {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.15s;
    font-family: inherit;
}

.cr-clear-all:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 991px) {
    .cr-filter-bar {
        top: 60px;
    }
    .cr-ac-wrap {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .cr-filter-top,
    .cr-filter-bottom {
        padding: 10px 14px;
        gap: 8px;
    }
    .cr-ac-wrap {
        flex: 1 1 140px;
        min-width: 120px;
    }
}

/* Main area */
.cr-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 24px;
}
.cr-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
}
.cr-results-count {
    font-size: 14px;
    color: #6b7280;
}
.cr-results-count strong {
    color: var(--primary);
    font-weight: 700;
}

/* Course Card */
.cr-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}
.cr-card-thumb {
    height: 168px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.cr-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cr-thumb-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.22);
    position: relative;
    z-index: 1;
}
.cr-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    z-index: 2;
}
.cr-badge-bestseller {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}
.cr-badge-toprated {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
}
.cr-badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}
.cr-card-level {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.cr-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cr-card-cat {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #0ea5e9;
    margin-bottom: 6px;
}
.cr-card-title {
    font-size: 0.965rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    flex: 1;
}
.cr-card:hover .cr-card-title {
    color: var(--accent);
}
.cr-card-provider {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cr-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}
.cr-star {
    font-size: 12px;
    color: #f59e0b;
}
.cr-star.empty {
    color: #e5e7eb;
}
.cr-star.half {
    color: #fcd34d;
}
.cr-rating-num {
    font-weight: 700;
    font-size: 13px;
    color: #d97706;
    margin-left: 4px;
}
.cr-rev-count {
    font-size: 11px;
    color: #9ca3af;
    margin-left: 3px;
}
.cr-card-footer {
    padding: 11px 16px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cr-price {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--primary);
}
.cr-price.free {
    color: #10b981;
}
.cr-enroll-sm {
    padding: 7px 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.cr-enroll-sm:hover {
    background: var(--accent-dark);
}

/* List view */
.cr-card.list {
    flex-direction: row;
    height: auto;
}
.cr-card.list .cr-card-thumb {
    width: 200px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
    border-radius: 0;
}
.cr-card.list .cr-card-body {
    padding: 16px 20px;
}
.cr-card.list .cr-card-title {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.cr-list-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    min-width: 130px;
    border-left: 1px solid #f3f4f6;
    flex-shrink: 0;
}

/* Grid / List containers */
.cr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
    gap: 20px;
}
.cr-list-view {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Pagination */
.cr-pagination .page-link {
    color: var(--primary);
    border-color: #e5e7eb;
    font-weight: 500;
    font-size: 14px;
}
.cr-pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.cr-pagination .page-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(239, 68, 68, 0.05);
}
.cr-pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Empty state */
.cr-empty {
    text-align: center;
    padding: 80px 24px;
    color: #6b7280;
}
.cr-empty i {
    font-size: 3.5rem;
    color: #e5e7eb;
    display: block;
    margin-bottom: 14px;
}
.cr-empty h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Trending sidebar */
.cr-trending {
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    position: sticky;
    top: 120px;
}
.cr-trending-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s;
}
.cr-trending-item:last-child {
    border-bottom: none;
}
.cr-trending-item:hover .cr-trending-title {
    color: var(--accent);
}
.cr-trending-rank {
    font-size: 1.1rem;
    font-weight: 900;
    color: #e5e7eb;
    min-width: 24px;
    line-height: 1.4;
}
.cr-trending-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.2s;
}
.cr-trending-meta {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

/* ===== DETAIL PAGE ===== */
.cr-detail-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    padding: 60px 24px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}
.cr-detail-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.09) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.cr-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cr-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 24px;
}
.cr-back-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}
.cr-detail-cat {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    color: #7dd3fc;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.cr-detail-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    line-height: 1.3;
}
.cr-detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}
.cr-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Enroll Card */
.cr-enroll-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    position: sticky;
    top: 88px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.cr-enroll-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.cr-enroll-price.free {
    color: #10b981;
}
.cr-enroll-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.cr-enroll-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.cr-enroll-sec {
    width: 100%;
    padding: 11px;
    background: white;
    color: var(--primary);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}
.cr-enroll-sec:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.cr-enroll-feats {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cr-enroll-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    padding: 5px 0;
}
.cr-enroll-feats li i {
    color: #10b981;
    width: 14px;
    font-size: 12px;
}

/* Content sections */
.cr-section {
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 20px;
}
.cr-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}
.cr-section-title i {
    color: var(--accent);
}

/* Rating Breakdown */
.cr-rb-wrap {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.cr-overall {
    text-align: center;
    min-width: 90px;
}
.cr-overall-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.cr-overall-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}
.cr-rb-bars {
    flex: 1;
    min-width: 200px;
}
.cr-rb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.cr-rb-label {
    font-size: 12px;
    color: #6b7280;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}
.cr-rb-track {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}
.cr-rb-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
}
.cr-rb-count {
    font-size: 11px;
    color: #9ca3af;
    width: 38px;
    flex-shrink: 0;
    text-align: right;
}

/* Pros / Cons */
.cr-pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cr-pros {
    background: rgba(16, 185, 129, 0.04);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 18px;
}
.cr-cons {
    background: rgba(239, 68, 68, 0.04);
    border: 1.5px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 18px;
}
.cr-pros h6 {
    color: #10b981;
    font-weight: 700;
    margin-bottom: 12px;
}
.cr-cons h6 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}
.cr-pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cr-pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    padding: 4px 0;
    line-height: 1.5;
}
.cr-pros .cr-pc-list li i {
    color: #10b981;
    margin-top: 2px;
    font-size: 11px;
}
.cr-cons .cr-pc-list li i {
    color: var(--accent);
    margin-top: 2px;
    font-size: 11px;
}

/* Verdict */
.cr-verdict {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.cr-verdict::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.cr-verdict-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.cr-v-hr {
    background: rgba(16, 185, 129, 0.15);
    color: #4ade80;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
}
.cr-v-r {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
    border: 1.5px solid rgba(14, 165, 233, 0.35);
}
.cr-v-m {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1.5px solid rgba(245, 158, 11, 0.35);
}
.cr-verdict-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.cr-verdict-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Review Card */
.cr-review-card {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.2s;
    margin-bottom: 12px;
}
.cr-review-card:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.cr-reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.cr-helpful-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    letter-spacing: 0.5px;
}
.cr-review-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    margin: 10px 0;
}
.cr-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
}
.cr-vote-btn.up.voted,
.cr-vote-btn.up:hover {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}
.cr-vote-btn.down.voted,
.cr-vote-btn.down:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(239, 68, 68, 0.05);
}

/* Skills */
.cr-skill-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin: 3px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

/* Modal */
.cr-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}
.cr-modal-box {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 28px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.cr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.cr-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.cr-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
    padding: 4px;
}
.cr-modal-close:hover {
    color: var(--primary);
}
.cr-form-group {
    margin-bottom: 18px;
}
.cr-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}
.cr-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: arial, sans-serif;
    box-sizing: border-box;
}
.cr-form-input:focus {
    border-color: var(--accent);
}
.cr-form-textarea {
    min-height: 100px;
    resize: vertical;
}
.cr-star-select {
    display: flex;
    gap: 6px;
    cursor: pointer;
}
.cr-star-select i {
    font-size: 28px;
    color: #e5e7eb;
    transition: color 0.1s;
}
.cr-star-select i.lit {
    color: #f59e0b;
}
.cr-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.cr-submit-btn:hover {
    background: var(--accent-dark);
}
.cr-add-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.cr-add-review-btn:hover {
    background: var(--accent);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .cr-filter-bar {
        top: 60px;
    }
    .cr-enroll-card {
        position: relative;
        top: 0;
    }
}
@media (max-width: 768px) {
    .cr-hero {
        padding: 60px 16px 36px;
    }
    .cr-main {
        padding: 24px 16px;
    }
    .cr-detail-hero {
        padding: 40px 16px 28px;
    }
    .cr-pc-grid {
        grid-template-columns: 1fr;
    }
    .cr-rb-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .cr-hero-stats {
        gap: 24px;
    }
    .cr-card.list {
        flex-direction: column;
    }
    .cr-card.list .cr-card-thumb {
        width: 100%;
        min-height: 150px;
    }
    .cr-list-actions {
        border-left: none;
        border-top: 1px solid #f3f4f6;
        flex-direction: row;
        min-width: unset;
        justify-content: space-between;
    }
}

/* ===== CAREER PROGRESSION PATH ===== */
.cr-career-path {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 8px 0;
}
.cr-career-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    flex: 1;
    text-align: center;
}
.cr-career-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    border: 3px solid #e0f2fe;
    transition: transform 0.2s;
}
.cr-career-step.active .cr-career-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: rgba(239, 68, 68, 0.25);
}
.cr-career-step:hover .cr-career-icon {
    transform: scale(1.1);
}
.cr-career-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}
.cr-career-salary {
    font-size: 10px;
    color: #10b981;
    font-weight: 600;
}
.cr-career-arrow {
    font-size: 20px;
    color: #d1d5db;
    flex-shrink: 0;
    margin: 0 4px 20px;
}

/* ===== TOP RECRUITERS ===== */
.cr-recruiter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.cr-recruiter-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all 0.2s;
}
.cr-recruiter-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cr-recruiter-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}
.cr-recruiter-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.cr-recruiter-type {
    font-size: 10px;
    color: #6b7280;
}

/* ===== REALITY CHECK ===== */
.cr-reality {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 2px solid #f59e0b;
    border-radius: 14px;
    padding: 20px;
}
.cr-reality-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.cr-reality-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #fde68a;
    line-height: 1.5;
}
.cr-reality-item i {
    color: #f59e0b;
    margin-top: 1px;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===== OUTCOME SIMULATION ===== */
.cr-outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cr-outcome-complete {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.05),
        rgba(16, 185, 129, 0.1)
    );
    border: 2px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 20px;
}
.cr-outcome-dropout {
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.05),
        rgba(239, 68, 68, 0.08)
    );
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
}
.cr-outcome-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cr-outcome-complete .cr-outcome-title {
    color: #10b981;
}
.cr-outcome-dropout .cr-outcome-title {
    color: var(--accent);
}
.cr-outcome-stat {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.cr-outcome-complete .cr-outcome-stat {
    color: #10b981;
}
.cr-outcome-dropout .cr-outcome-stat {
    color: var(--accent);
}
.cr-outcome-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.cr-outcome-list li {
    font-size: 12px;
    color: #4b5563;
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}
.cr-outcome-list li::before {
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}
.cr-outcome-complete .cr-outcome-list li::before {
    content: "✓";
    color: #10b981;
}
.cr-outcome-dropout .cr-outcome-list li::before {
    content: "✗";
    color: var(--accent);
}

/* ===== ENHANCED COMPARISON STYLES ===== */

/* Comparison Selector - Enhanced */
.comparison-selector-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.comparison-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    color: white;
    padding: 40px 24px;
    margin-bottom: 28px;
    border-radius: 12px;
}
.comparison-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.comparison-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Selection Counter */
.comparison-selection-bar {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.selected-count {
    font-weight: 700;
    color: var(--primary);
}
.compare-btn-group {
    display: flex;
    gap: 10px;
}
.compare-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.compare-btn.primary {
    background: var(--accent);
    color: white;
}
.compare-btn.primary:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}
.compare-btn.primary:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}
.compare-btn.secondary {
    background: white;
    color: var(--primary);
    border: 1.5px solid #e5e7eb;
}
.compare-btn.secondary:hover {
    border-color: #9ca3af;
    color: var(--accent);
}

/* Selected Chips */
.selected-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.chip {
    padding: 8px 12px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}
.chip i {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.chip i:hover {
    opacity: 1;
}

/* Course Selection Grid - Enhanced */
.comparison-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.course-selection-card {
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.course-selection-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 16px 32px rgba(239, 68, 68, 0.15);
}
.course-selection-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.course-selection-card.selected::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.course-selection-card.selected::before {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Comparison View - Enhanced */
.comparison-view-wrapper {
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Comparison Tabs */
.comparison-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.comparison-tab {
    padding: 14px 20px;
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.comparison-tab:hover {
    color: var(--accent);
}
.comparison-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Quick Stats - Enhanced */
.comparison-quick-stats {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 24px;
}
.stats-table {
    width: 100%;
}
.stats-row {
    display: grid;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}
.stats-row:last-child {
    border-bottom: none;
}
.stats-row-label {
    font-weight: 700;
    color: var(--primary);
    background: #f9fafb;
    padding: 0 12px;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.stats-row-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}
.stat-cell {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
}
.stat-cell.highlight {
    background: #fef3c7;
    color: #92400e;
    font-weight: 700;
    border: 1px solid #fcd34d;
}
.stat-cell.winner {
    background: #d1fae5;
    color: #065f46;
    font-weight: 700;
    border: 1px solid #6ee7b7;
    position: relative;
}
.stat-cell.winner::before {
    content: "👑";
    position: absolute;
    top: -8px;
    right: 4px;
    font-size: 14px;
}

/* Detailed Comparison Cards */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.comparison-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}
.comparison-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.comparison-card-header {
    padding: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}
.comparison-card-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.comparison-card-header p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}
.comparison-card-body {
    padding: 16px;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 16px;
}
.feature-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
    letter-spacing: 0.7px;
}
.feature-pill {
    display: inline-block;
    padding: 5px 10px;
    background: #dbeafe;
    color: #0284c7;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    margin-right: 4px;
}
.feature-pro {
    background: #d1fae5;
    color: #065f46;
}
.feature-con {
    background: #fee2e2;
    color: #7c2d12;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-item {
    padding: 6px 0;
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.feature-item i {
    flex-shrink: 0;
    margin-top: 3px;
}
.feature-pro .feature-item i {
    color: #10b981;
}
.feature-con .feature-item i {
    color: #ef4444;
}

/* Comparison Hero */
.comparison-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2744 100%);
    color: white;
    padding: 32px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}
.comparison-hero h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.comparison-hero-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
    flex-wrap: wrap;
}

/* ================================================================
   COURSE LISTING — PLATFORM-GRADE REDESIGN  (cl-*)
   Matching Udemy / Coursera visual standards
   ================================================================ */

/* ================================================================
   HERO — Professional split layout
   ================================================================ */
.cl-hero {
    background: #0c1628;
    background-image:
        radial-gradient(ellipse 80% 60% at 65% 50%, rgba(37,99,235,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(16,185,129,0.08) 0%, transparent 60%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cl-hero-split {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 56px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cl-hero-inner { position: relative; z-index: 1; }

/* Left col */
.cl-hero-left { display: flex; flex-direction: column; gap: 0; }
.cl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16,185,129,0.12);
    color: #6ee7b7;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    border: 1px solid rgba(16,185,129,0.2);
    width: fit-content;
}
.cl-hero-badge i { font-size: 10px; }
.cl-hero-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.18;
    margin: 0 0 16px;
    letter-spacing: -0.6px;
}
.cl-hero-accent {
    color: #38bdf8;
    display: block;
}
.cl-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
    line-height: 1.75;
    max-width: 520px;
}

/* Search */
.cl-search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    border: 2px solid transparent;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}
.cl-search-bar:focus-within { border-color: #38bdf8; }
.cl-search-icon {
    padding: 0 12px 0 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    flex-shrink: 0;
}
.cl-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 15px;
    color: #0f172a;
    background: transparent;
    min-width: 0;
}
.cl-search-input::placeholder { color: #94a3b8; }
.cl-search-clear {
    background: none;
    border: none;
    padding: 0 10px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 13px;
    flex-shrink: 0;
    transition: color 0.15s;
}
.cl-search-clear:hover { color: #ef4444; }
.cl-search-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0 22px;
    height: 100%;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background 0.15s;
}
.cl-search-btn:hover { background: #1d4ed8; }

/* Quick topics */
.cl-quick-topics {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.cl-quick-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.cl-quick-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.cl-quick-pill:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.25); }

/* Right col — trust panel */
.cl-hero-right { display: flex; align-items: center; }
.cl-trust-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(8px);
    width: 100%;
}
.cl-trust-panel-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}
.cl-trust-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.cl-trust-metric {
    background: rgba(255,255,255,0.04);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cl-trust-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #f8fafc;
    line-height: 1;
}
.cl-trust-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cl-trust-promises {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cl-trust-promise {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.cl-trust-promise i { color: #34d399; flex-shrink: 0; margin-top: 2px; font-size: 11px; }

/* ── REGULATOR TRUST BAR ── */
.cl-trust-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.cl-trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cl-trust-bar-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    flex-shrink: 0;
    padding-right: 8px;
    border-right: 1px solid #e2e8f0;
    margin-right: 4px;
}
.cl-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    white-space: nowrap;
    transition: border-color 0.15s, color 0.15s;
}
.cl-trust-bar-item:hover { border-color: #2563eb; color: #2563eb; }
.cl-trust-bar-item i { font-size: 12px; color: #2563eb; }

/* ── HOW IT WORKS ── */
.cl-how-it-works {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.cl-how-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.cl-how-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
}
.cl-how-num {
    font-size: 11px;
    font-weight: 900;
    color: #e2e8f0;
    letter-spacing: 0.05em;
    line-height: 1;
    flex-shrink: 0;
}
.cl-how-icon {
    width: 40px; height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2563eb;
    flex-shrink: 0;
}
.cl-how-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cl-how-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: block;
}
.cl-how-text span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}
.cl-how-connector {
    color: #e2e8f0;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── PAGINATION ── */
.cl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 24px 0 8px;
    flex-wrap: wrap;
}
.cl-page-btn {
    min-width: 36px; height: 36px;
    padding: 0 10px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.cl-page-btn:hover:not(:disabled) { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.cl-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cl-page-btn--active { background: #2563eb; border-color: #2563eb; color: #fff; }
.cl-page-btn--active:hover { background: #1d4ed8; }
.cl-page-ellipsis { color: #94a3b8; font-size: 13px; padding: 0 4px; }

/* legacy — keep hero stat classes for any references */
.cl-hero-stats, .cl-hero-stat, .cl-hero-stat-sep,
.cl-stat-num, .cl-stat-label { display: none; }

/* ── CATEGORY STRIP ── */
.cl-category-strip {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cl-category-scroll {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cl-category-scroll::-webkit-scrollbar { display: none; }
.cl-cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}
.cl-cat-btn:hover { color: #0f172a; border-bottom-color: #e2e8f0; }
.cl-cat-btn--active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
    font-weight: 700;
}
.cl-cat-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.cl-cat-btn:hover .cl-cat-icon { transform: scale(1.1); }

/* ── FILTER TOOLBAR ── */
.cl-filter-toolbar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 68px;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cl-filter-toolbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.cl-filter-dropdowns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}
/* Override autocomplete combobox appearance for light toolbar */
.cl-filter-toolbar .cr-ac-wrap { max-width: 200px; }
.cl-filter-toolbar .cr-ac-label { color: #64748b; }
.cl-filter-toolbar .cr-ac-input {
    background: #fff;
    border-color: #e2e8f0;
    color: #0f172a;
}
.cl-filter-toolbar .cr-ac-icon { color: #94a3b8; }
.cl-filter-toolbar .cr-ac-input.has-value { border-color: #0ea5e9; color: #0ea5e9; }

/* Chip groups */
.cl-chip-group {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.cl-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.cl-chip:hover { border-color: #0ea5e9; color: #0ea5e9; }
.cl-chip--active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
    font-weight: 700;
}
.cl-chip--active i { color: #fff !important; }

/* Active filter tags */
.cl-active-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.cl-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.cl-active-tag:hover { background: #dbeafe; }
.cl-active-tag i { font-size: 10px; }
.cl-clear-all {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s;
}
.cl-clear-all:hover { background: #fee2e2; }

/* Right controls */
.cl-filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.cl-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 12px;
    height: 38px;
}
.cl-sort-icon { color: #94a3b8; font-size: 13px; }
.cl-sort-select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    outline: none;
    cursor: pointer;
    padding: 0;
}
.cl-view-toggle {
    display: flex;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.cl-view-btn {
    width: 36px; height: 36px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.cl-view-btn:hover { color: #0ea5e9; background: #f0f9ff; }
.cl-view-btn--active { background: #0ea5e9; color: #fff; }
.cl-view-btn--active:hover { background: #0284c7; color: #fff; }
.cl-compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.cl-compare-cta:hover { background: #1e293b; }

/* ── MAIN LAYOUT ── */
.cl-main {
    background: #f1f5f9;
    min-height: 60vh;
    padding: 32px 0 60px;
}
.cl-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* Results bar */
.cl-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.cl-results-text {
    font-size: 13px;
    color: #64748b;
}
.cl-results-text strong { color: #0f172a; font-size: 15px; }
.cl-results-page-info {
    font-size: 12px;
    color: #94a3b8;
}

/* Grid */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* List */
.cl-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Empty state */
.cl-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.cl-empty-icon {
    width: 72px; height: 72px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #94a3b8;
    margin: 0 auto 20px;
}
.cl-empty h3 { font-size: 1.25rem; color: #0f172a; margin-bottom: 8px; }
.cl-empty p { color: #64748b; font-size: 14px; margin-bottom: 24px; }
.cl-empty-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s;
}
.cl-empty-reset:hover { background: #0284c7; }

/* ── SIDEBAR ── */
.cl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 130px;
}

/* Trending card */
.cl-trending-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cl-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #f1f5f9;
}
.cl-trending-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cl-trending-title i { color: #ef4444; }
.cl-trending-sub { font-size: 11px; color: #94a3b8; }
.cl-trending-list { padding: 4px 0; }
.cl-trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 0;
}
.cl-trending-item:hover { background: #f8fafc; }
.cl-trending-rank {
    font-size: 12px;
    font-weight: 800;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    font-family: monospace;
}
.cl-trending-thumb-mini {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    flex-shrink: 0;
}
.cl-trending-info { flex: 1; min-width: 0; }
.cl-trending-name {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
}
.cl-trending-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}
.cl-trending-rev { font-weight: 400; color: #94a3b8; }
.cl-trending-price-badge {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    background: #f1f5f9;
    padding: 3px 7px;
    border-radius: 6px;
    flex-shrink: 0;
}
.cl-trending-price-badge--free {
    background: #ecfdf5;
    color: #059669;
}

/* Sidebar promo */
.cl-sidebar-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 14px 16px;
}
.cl-promo-icon {
    width: 40px; height: 40px;
    background: #10b981;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.cl-promo-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cl-promo-text strong { font-size: 13px; color: #064e3b; }
.cl-promo-text span { font-size: 11px; color: #065f46; }
.cl-promo-btn {
    background: #059669;
    color: #fff;
    border: none;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: flex; align-items: center; gap: 5px;
    transition: background 0.15s;
    flex-shrink: 0;
}
.cl-promo-btn:hover { background: #047857; }

/* Sidebar compare widget */
.cl-sidebar-compare {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cl-sidebar-compare-icon {
    font-size: 28px;
    color: #0ea5e9;
    display: block;
    margin-bottom: 10px;
}
.cl-sidebar-compare h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.cl-sidebar-compare p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
}
.cl-sidebar-compare .cl-compare-cta {
    width: 100%;
    justify-content: center;
    padding: 10px;
}

/* ── FLOATING COMPARISON BAR ── */
.cl-compare-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1100;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
    animation: slideUp 0.25s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cl-compare-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cl-compare-bar-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cl-compare-bar-icon {
    width: 44px; height: 44px;
    background: rgba(14,165,233,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #38bdf8;
    font-size: 18px;
    flex-shrink: 0;
}
.cl-compare-bar-count { font-size: 15px; font-weight: 700; color: #fff; }
.cl-compare-bar-hint { font-size: 12px; color: rgba(255,255,255,0.6); }
.cl-compare-bar-actions { display: flex; gap: 10px; }
.cl-compare-bar-clear {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    display: flex; align-items: center; gap: 5px;
}
.cl-compare-bar-clear:hover { background: rgba(255,255,255,0.18); color: #fff; }
.cl-compare-bar-go {
    background: #0ea5e9;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    display: flex; align-items: center; gap: 6px;
}
.cl-compare-bar-go:hover:not(:disabled) { background: #0284c7; }
.cl-compare-bar-go:disabled { opacity: 0.5; cursor: not-allowed; }

/* ================================================================
   COURSE CARD — PLATFORM-GRADE REDESIGN  (cc-*)
   ================================================================ */

/* ── GRID CARD ── */
.cc-grid-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}
.cc-grid-card:hover,
.cc-grid-card--hovered {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

/* Wishlist */
.cc-wishlist-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all 0.15s;
    opacity: 0;
    transform: scale(0.8);
}
.cc-grid-card:hover .cc-wishlist-btn {
    opacity: 1;
    transform: scale(1);
}
.cc-wishlist-btn:hover { color: #ef4444; background: #fff; }

/* Thumbnail */
.cc-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cc-thumb-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.6);
}
.cc-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.cc-grid-card:hover .cc-thumb-overlay { opacity: 1; }
.cc-preview-btn {
    background: rgba(255,255,255,0.95);
    color: #0f172a;
    border: none;
    padding: 9px 18px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    transition: background 0.15s, transform 0.15s;
}
.cc-preview-btn:hover { background: #fff; transform: scale(1.04); }
.cc-preview-btn i { color: #0ea5e9; font-size: 15px; }

/* Level pill */
.cc-level-pill {
    position: absolute;
    bottom: 8px; left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

/* Badge */
.cc-badge {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}
.cc-badge--hot {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}
.cc-badge--top {
    background: #f59e0b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.cc-badge--new {
    background: #8b5cf6;
    color: #fff;
    box-shadow: 0 2px 8px rgba(139,92,246,0.4);
}

/* Body */
.cc-grid-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cc-grid-top-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.cc-cat-pill {
    font-size: 11px;
    font-weight: 700;
    color: #0ea5e9;
    background: #f0f9ff;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cc-trending-pill {
    font-size: 10px;
    font-weight: 700;
    color: #ef4444;
    background: #fff1f0;
    padding: 2px 7px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 3px;
}
.cc-grid-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cc-grid-provider {
    font-size: 12px;
    color: #64748b;
    display: flex; align-items: center; gap: 5px;
}
.cc-grid-provider i { color: #94a3b8; font-size: 11px; }

/* Rating */
.cc-grid-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cc-rating-score {
    font-size: 13px;
    font-weight: 800;
    color: #92400e;
}
.cc-rating-count {
    font-size: 11px;
    color: #94a3b8;
}

/* Meta chips */
.cc-grid-meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.cc-meta-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
}
.cc-meta-chip i { color: #94a3b8; font-size: 10px; }

/* Grid Footer */
.cc-grid-footer {
    padding: 10px 16px 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.cc-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.cc-price-free {
    font-size: 16px;
    font-weight: 800;
    color: #059669;
}
.cc-price-now {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}
.cc-price-original {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}
.cc-discount-tag {
    font-size: 10px;
    font-weight: 800;
    color: #ef4444;
    background: #fff1f0;
    padding: 2px 6px;
    border-radius: 4px;
}
.cc-grid-footer-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cc-enroll-btn {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, transform 0.1s;
}
.cc-enroll-btn:hover { background: #1e293b; transform: translateY(-1px); }
.cc-enroll-btn:active { transform: scale(0.97); }
.cc-compare-icon-btn {
    width: 34px; height: 34px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #64748b;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}
.cc-compare-icon-btn:hover { border-color: #0ea5e9; color: #0ea5e9; background: #f0f9ff; }
.cc-compare-icon-btn--active { background: #ecfdf5; border-color: #10b981; color: #059669; }

/* ── LIST CARD ── */
.cc-list-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s;
    overflow: hidden;
}
.cc-list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

/* List thumbnail */
.cc-list-thumb-wrap { flex-shrink: 0; }
.cc-list-thumb {
    width: 200px;
    min-height: 140px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.cc-list-thumb--gradient { display: flex; align-items: center; justify-content: center; }
.cc-list-thumb-icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.65);
}

/* List body */
.cc-list-body {
    flex: 1;
    padding: 16px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cc-list-top {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.cc-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cc-list-provider {
    font-size: 12px;
    color: #64748b;
    display: flex; align-items: center; gap: 5px;
}
.cc-list-provider i { color: #94a3b8; font-size: 11px; }
.cc-list-dot { color: #d1d5db; }
.cc-list-platform { font-weight: 600; color: #475569; }
.cc-list-meta-row {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2px;
}
.cc-list-rating-row {
    display: flex; align-items: center; gap: 6px; margin-top: 2px;
}

/* List actions */
.cc-list-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-left: 1px solid #f1f5f9;
    min-width: 160px;
    flex-shrink: 0;
}
.cc-list-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-end;
}
.cc-compare-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.cc-compare-btn:hover { border-color: #0ea5e9; color: #0ea5e9; background: #f0f9ff; }
.cc-compare-btn--active { background: #ecfdf5; border-color: #10b981; color: #059669; }

/* ================================================================
   HERO — AUTHORITY BAR (review platform identity)
   ================================================================ */
.cl-hero-authority {
    background: rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cl-hero-authority-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.cl-hero-authority-inner i { color: #38bdf8; margin-right: 5px; }
.cl-hero-authority-sep { color: rgba(255,255,255,0.2); }

/* ================================================================
   SIDEBAR — HOW REVIEWS WORK widget
   ================================================================ */
.cl-sidebar-howto {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 16px;
}
.cl-howto-title {
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cl-howto-title i { margin-right: 6px; }
.cl-howto-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.cl-howto-list li {
    font-size: 12px;
    color: #78350f;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}
.cl-howto-list li i { color: #16a34a; margin-top: 2px; flex-shrink: 0; font-size: 10px; }

/* ================================================================
   REVIEW CARD — rc-* namespace
   Review platform: rating is hero, CTA is "Read Reviews"
   ================================================================ */

/* ── GRID CARD ── */
.rc-grid-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    position: relative;
}
.rc-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.10);
    border-color: #cbd5e1;
}
.rc-grid-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}
.rc-grid-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 100%);
    pointer-events: none;
}
.rc-grid-icon {
    font-size: 32px;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.rc-grid-verified {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(255,255,255,0.95);
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.02em;
}
.rc-grid-trending {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(239,68,68,0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rc-grid-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rc-grid-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.rc-domain-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    background: #eff6ff;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.rc-sub-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #64748b;
}
.rc-trending-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #fef2f2;
    color: #dc2626;
}
.rc-grid-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rc-grid-provider {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rc-grid-provider i { color: #94a3b8; }

/* Rating block — this is the hero element */
.rc-grid-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}
.rc-grid-rating-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.rc-rating-num-lg {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}
.rc-rating-label-sm {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.rc-review-count {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rc-review-count i { color: #16a34a; font-size: 9px; }
.rc-grid-chips {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.rc-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
}
.rc-chip i { font-size: 9px; color: #94a3b8; }
.rc-chip--price {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 700;
}
.rc-grid-footer {
    padding: 10px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
}
.rc-grid-footer-left { display: flex; align-items: center; }
.rc-grid-footer-right { display: flex; align-items: center; gap: 6px; }
.rc-learner-count {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rc-learner-count i { color: #cbd5e1; }

/* Read Reviews button */
.rc-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.rc-read-btn:hover { background: #1e40af; transform: scale(1.02); }
.rc-read-btn--sm {
    padding: 6px 12px;
    font-size: 11px;
}
.rc-compare-icon-btn {
    width: 30px; height: 30px;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.rc-compare-icon-btn:hover { border-color: #1d4ed8; color: #1d4ed8; background: #eff6ff; }
.rc-compare-icon-btn--active { background: #eff6ff; border-color: #1d4ed8; color: #1d4ed8; }

/* ── LIST CARD ── */
.rc-list-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.18s, border-color 0.18s;
}
.rc-list-card:hover {
    box-shadow: 0 6px 24px rgba(15,23,42,0.08);
    border-color: #cbd5e1;
}
.rc-list-band {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    position: relative;
}
.rc-list-band-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
}
.rc-verified-dot {
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
}
.rc-list-body {
    flex: 1;
    padding: 14px 16px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rc-list-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.rc-list-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rc-list-provider {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rc-list-provider i { color: #94a3b8; }
.rc-dot { color: #cbd5e1; }
.rc-list-chips {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.rc-list-right {
    flex-shrink: 0;
    width: 180px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-left: 1px solid #f1f5f9;
}
.rc-rating-box {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
}
.rc-rating-split {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rc-rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.1;
    padding-right: 12px;
    border-right: 1px solid #e2e8f0;
}
.rc-rating-left span {
    font-size: 10px;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.rc-rating-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}
.rc-rating-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rc-rating-num {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}
.rc-rating-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rc-bfsi-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 5px 8px;
    text-align: center;
    letter-spacing: 0.02em;
}
.rc-compare-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
}
.rc-compare-btn:hover { border-color: #1d4ed8; color: #1d4ed8; background: #eff6ff; }
.rc-compare-btn--active { background: #eff6ff; border-color: #1d4ed8; color: #1d4ed8; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet — collapse hero to single column, hide trust right panel */
@media (max-width: 1024px) {
    .cl-hero-split {
        grid-template-columns: 1fr;
        padding: 48px 32px 44px;
        gap: 32px;
    }
    .cl-hero-right { display: none; }
    .cl-trust-bar-inner { padding: 12px 32px; gap: 12px; }
    .cl-how-inner { padding: 20px 32px; flex-wrap: wrap; gap: 12px; }
    .cl-how-step { padding: 0 16px; }
    .cl-main-inner { padding: 24px 24px 60px; }
    .cl-sidebar { position: static; }
}

/* Phablet */
@media (max-width: 768px) {
    .cl-hero-split { padding: 40px 20px 36px; }
    .cl-hero-title { font-size: 1.85rem; }
    .cl-how-inner { justify-content: flex-start; }
    .cl-how-connector { display: none; }
    .cl-main-inner { grid-template-columns: 1fr; padding: 16px 16px 48px; }
    .cl-filter-toolbar-inner { flex-wrap: wrap; gap: 8px; }
    .cl-filter-right { width: 100%; justify-content: flex-end; }
    .rc-list-right { width: 150px; }
}

/* Mobile */
@media (max-width: 540px) {
    .cl-hero-split { padding: 32px 16px 28px; }
    .cl-hero-title { font-size: 1.6rem; letter-spacing: -0.3px; }
    .cl-hero-subtitle { font-size: 0.9rem; }
    .cl-search-btn { padding: 0 14px; font-size: 12px; gap: 5px; }
    .cl-trust-bar-inner { gap: 8px; padding: 10px 16px; }
    .cl-trust-bar-label { display: none; }
    .cl-how-it-works { display: none; }
    .cl-main-inner { padding: 12px 12px 40px; }
    .cl-grid { grid-template-columns: 1fr; }
    .rc-list-card { flex-direction: column; }
    .rc-list-band { width: 100%; height: 80px; flex-direction: row; justify-content: flex-start; padding: 0 16px; }
    .rc-list-right { width: 100%; border-left: none; border-top: 1px solid #f1f5f9; flex-direction: row; flex-wrap: wrap; gap: 8px; align-items: center; padding: 12px 16px; }
    .rc-rating-box { flex-direction: row; align-items: center; gap: 8px; padding: 6px 10px; }
    .cl-filter-toolbar-inner { padding: 10px 12px; }
    .cl-compare-bar-inner { flex-direction: column; gap: 10px; }
    .cl-compare-bar-actions { width: 100%; }
    .cl-compare-bar-go { flex: 1; justify-content: center; }
    .cl-category-scroll { padding: 0 12px; }
}
