        #SearchBrandsDiv {
            display: none;
        }

        .rc-prices {
            /* Color tokens â€” committed Blue strategy on cool body */
            --rc-ink: #0a1f3d;
            --rc-ink-2: #1e3a6f;
            --rc-muted: #56698a;
            --rc-bg: #f5f9fe;
            --rc-surface: #ffffff;
            --rc-surface-2: #eef4fc;
            --rc-border: #d8e3f3;
            --rc-border-2: #b7c9e6;
            --rc-brand: #4392f1;
            --rc-brand-2: #0b3d8c;
            --rc-brand-dark: #04183b;
            --rc-brand-glow: #6db4ff;
            --rc-positive: #1b8a3a;
            --rc-warn: #ef4444;
            --rc-hot: #f59e0b;

            /* Spacing scale */
            --rc-s1: 4px;
            --rc-s2: 8px;
            --rc-s3: 12px;
            --rc-s4: 16px;
            --rc-s5: 24px;
            --rc-s6: 32px;
            --rc-s7: 48px;
            --rc-s8: 64px;

            /* Radii */
            --rc-r1: 6px;
            --rc-r2: 10px;
            --rc-r3: 16px;
            --rc-r4: 22px;
            --rc-pill: 999px;

            /* Elevation */
            --rc-sh1: 0 1px 2px rgba(11, 61, 140, .05), 0 0 0 1px rgba(11, 61, 140, .06);
            --rc-sh2: 0 6px 24px rgba(11, 61, 140, .10), 0 0 0 1px rgba(11, 61, 140, .05);
            --rc-sh3: 0 18px 48px rgba(4, 24, 59, .22);

            /* Motion */
            --rc-ease: cubic-bezier(0.16, 1, 0.3, 1);
            --rc-ease-q: cubic-bezier(0.22, 1, 0.36, 1);
            --rc-d1: 160ms;
            --rc-d2: 280ms;
            --rc-d3: 460ms;

            /* z-index */
            --rc-z-sticky: 30;
            --rc-z-thead: 35;

            background: var(--rc-bg);
            color: var(--rc-ink);
            font-family: 'El Messiri', system-ui, -apple-system, "Segoe UI", "Tahoma", sans-serif;
            font-weight: 400;
            line-height: 1.65;
            direction: rtl;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* Cool body backdrop â€” very subtle radial wash, not flashy */
        .rc-prices {
            background-image:
                radial-gradient(1100px 600px at 100% -10%, rgba(67, 146, 241, .08), transparent 60%),
                radial-gradient(900px 500px at -10% 30%, rgba(11, 61, 140, .05), transparent 60%);
            background-attachment: fixed;
            padding-bottom: 3rem;
            margin-bottom: 0px;
        }

        .rc-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(12px, 3vw, 28px);
            padding-top: 8rem;
        }

        /* ---------- Breadcrumb ---------- */
        .rc-crumbs {
            font-size: 13px;
            color: var(--rc-muted);
            padding: clamp(12px, 2vw, 20px) 0 var(--rc-s2);
            display: flex;
            align-items: center;
            gap: var(--rc-s2);
            flex-wrap: wrap;
        }

        .rc-crumbs a {
            color: var(--rc-ink-2);
            text-decoration: none;
            transition: color var(--rc-d1) var(--rc-ease);
        }

        .rc-crumbs a:hover {
            color: var(--rc-brand);
        }

        .rc-crumbs .sep {
            color: var(--rc-border-2);
            font-size: 11px;
        }

        /* ---------- The Board (hero / answer block) ---------- */
        .rc-board {
            position: relative;
            margin: var(--rc-s3) 0 var(--rc-s5);
            padding: clamp(28px, 4.5vw, 56px) clamp(24px, 4vw, 56px);
            border-radius: var(--rc-r4);
            color: #fff;
            background:
                radial-gradient(900px 400px at 90% 10%, rgba(109, 180, 255, .22), transparent 60%),
                radial-gradient(700px 300px at 10% 100%, rgba(67, 146, 241, .18), transparent 65%),
                linear-gradient(160deg, #0b3d8c 0%, #082c66 55%, #04183b 100%);
            box-shadow: var(--rc-sh3);
            overflow: hidden;
            isolation: isolate;
            display: grid;
            grid-template-columns: 1fr clamp(220px, 26%, 290px);
            gap: clamp(20px, 3.5vw, 44px);
            align-items: start;
        }

        .rc-board-text {
            min-width: 0;
        }

        .rc-board-stats {
            display: flex;
            flex-direction: column;
            gap: var(--rc-s3);
        }

        .rc-stat-card {
            background: rgba(0, 0, 0, .24);
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: var(--rc-r2);
            padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 22px);
            text-align: center;
            transition: background var(--rc-d1) var(--rc-ease);
        }

        .rc-stat-card:hover {
            background: rgba(0, 0, 0, .30);
        }

        .rc-stat-card .stat-label {
            display: block;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .70);
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0;
        }

        .rc-stat-card b {
            display: block;
            font-family: 'Kanit', sans-serif;
            font-weight: 900;
            font-size: clamp(22px, 2.8vw, 32px);
            color: #fff;
            line-height: 1.05;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.01em;
        }

        .rc-stat-card .stat-sub {
            display: block;
            margin-top: 6px;
            font-size: 11px;
            color: rgba(255, 255, 255, .50);
        }

        @media (max-width: 760px) {
            .rc-board {
                grid-template-columns: 1fr;
                gap: var(--rc-s5);
            }

            .rc-board-stats {
                flex-direction: row;
            }

            .rc-stat-card {
                flex: 1;
            }
        }

        /* faint grid pattern â€” barely-there, communicates "live board" */
        .rc-board::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(1100px 500px at 50% 30%, #000 30%, transparent 75%);
            pointer-events: none;
            z-index: 0;
        }

        .rc-board>* {
            position: relative;
            z-index: 1;
        }

        .rc-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--rc-s2);
            padding: 6px 14px;
            border-radius: var(--rc-pill);
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .16);
            font-size: 13px;
            color: rgba(255, 255, 255, .92);
            margin-bottom: var(--rc-s4);
            backdrop-filter: blur(8px);
        }

        .rc-eyebrow .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 0 4px rgba(74, 222, 128, .18);
            animation: rc-pulse 2.4s var(--rc-ease) infinite;
        }

        .rc-eyebrow .num {
            font-family: 'Kanit', sans-serif;
            font-weight: 400;
            letter-spacing: .02em;
        }

        @keyframes rc-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
            }
        }

        .rc-board h1 {
            margin: 0 0 var(--rc-s4);
            font-size: clamp(26px, 4.4vw, 48px);
            line-height: 1.18;
            font-weight: 700;
            letter-spacing: -0.005em;
            color: #fff;
            text-wrap: balance;
            max-width: 26ch;
        }

        .rc-board h1 .accent {
            color: var(--rc-brand-glow);
        }

        .rc-answer {
            margin: 0;
            font-size: clamp(15.5px, 1.6vw, 16px);
            line-height: 1.85;
            color: rgba(255, 255, 255, .88);
            max-width: 68ch;
            text-wrap: pretty;
        }

        .rc-answer strong {
            color: #fff;
            font-weight: 600;
        }

        /* ---------- Per-kind primary stat strip (inside the board) ----------
       Replaces the old aggregate 4-cell strip. Each cell is one AC kind.
       Available kinds are clickable filter links; empty kinds render
       as <span>s with reduced opacity and no pointer events. */
        .rc-kindstats {
            margin-top: clamp(22px, 3vw, 36px);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1px;
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: var(--rc-r3);
            overflow: hidden;
        }

        .rc-kindstat {
            display: block;
            padding: clamp(18px, 2.2vw, 26px) clamp(10px, 1.4vw, 18px);
            text-align: center;
            color: #fff;
            text-decoration: none;
            background: rgba(0, 0, 0, .14);
            transition:
                background var(--rc-d1) var(--rc-ease),
                box-shadow var(--rc-d2) var(--rc-ease);
            position: relative;
            min-height: 44px;
        }

        .rc-kindstat:hover:not(.is-empty) {
            background: rgba(0, 0, 0, .04);
        }

        .rc-kindstat.is-active {
            background: rgba(109, 180, 255, .18);
            box-shadow: inset 0 -3px 0 var(--rc-brand-glow);
        }

        .rc-kindstat.is-empty {
            opacity: .42;
            background: rgba(0, 0, 0, .22);
            cursor: not-allowed;
            pointer-events: none;
            /* Faint diagonal-stripe texture so disabled cells read as "off"  */
            background-image: repeating-linear-gradient(-45deg,
                    transparent 0 6px,
                    rgba(255, 255, 255, .04) 6px 7px);
        }

        .rc-kindstat .kn-name {
            display: block;
            font-size: clamp(13px, 1.4vw, 15px);
            font-weight: 600;
            color: rgba(255, 255, 255, .82);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .rc-kindstat.is-active .kn-name {
            color: var(--rc-brand-glow);
        }

        .rc-kindstat.is-empty .kn-name {
            color: rgba(255, 255, 255, .55);
        }

        .rc-kindstat b {
            display: block;
            font-family: 'Kanit', sans-serif;
            font-weight: 900;
            font-size: clamp(20px, 2.8vw, 30px);
            line-height: 1;
            color: #fff;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.01em;
        }

        .rc-kindstat b .cur {
            font-size: 0.42em;
            font-weight: 400;
            color: rgba(255, 255, 255, .55);
            margin-inline-start: 6px;
            vertical-align: 0.4em;
            letter-spacing: 0;
        }

        .rc-kindstat.is-empty b {
            font-size: clamp(22px, 2.6vw, 28px);
            color: rgba(255, 255, 255, .45);
            font-weight: 400;
        }

        .rc-kindstat .kn-sub {
            display: block;
            margin-top: 10px;
            font-size: 11.5px;
            color: rgba(255, 255, 255, .62);
            font-family: 'Kanit', sans-serif;
            font-variant-numeric: tabular-nums;
            line-height: 1.5;
        }

        .rc-kindstat.is-empty .kn-sub {
            color: rgba(255, 255, 255, .5);
        }

        /* Clear-filter pill, shown only when a kind is active */
        .rc-kindclear-wrap {
            margin-top: var(--rc-s3);
            text-align: center;
        }

        .rc-kind-clear {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12.5px;
            color: var(--rc-brand-glow);
            text-decoration: none;
            padding: 6px 14px;
            border-radius: var(--rc-pill);
            background: rgba(109, 180, 255, .10);
            border: 1px solid rgba(109, 180, 255, .22);
            transition: background var(--rc-d1) var(--rc-ease);
        }

        .rc-kind-clear:hover {
            background: rgba(109, 180, 255, .22);
        }

        /* ---------- Sticky filter bar ---------- */
        .rc-filter {
            background: var(--rc-surface);
            border: 1px solid var(--rc-border);
            border-radius: var(--rc-r3);
            padding: 4px clamp(14px, 2vw, 22px);
            margin-bottom: var(--rc-s5);
        }

        /* Each filter row: label column (right in RTL) + chips area.
           Labels lock to a fixed-width column so all 5 labels form a clean
           vertical line â€” that's the "organized" half of the brief. */
        .rc-frow {
            display: grid;
            grid-template-columns: 88px 1fr;
            column-gap: var(--rc-s4);
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eef3fa;
        }

        .rc-frow:last-child {
            border-bottom: 0;
        }

        /* Sort row gets a tiny lift so it reads as "display preference",
           not another content filter. Same chips, different rhythm. */
        .rc-frow.is-sort {
            margin-top: 2px;
            border-top: 1px solid var(--rc-border);
            padding-top: 12px;
        }

        .rc-fchips {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }

        @media (max-width: 560px) {
            .rc-frow {
                grid-template-columns: 1fr;
                row-gap: 6px;
                padding: 10px 0;
            }

            .rc-flbl {
                text-align: start !important;
                padding: 0 !important;
            }
        }

        .rc-flbl {
            font-size: 12px;
            font-weight: 600;
            color: var(--rc-muted);
            text-align: start;
            line-height: 1.4;
            letter-spacing: 0;
        }

        /* Chip â€” used for filters and sort. Denser than before for the
           minimal-and-organized brief. */
        .rc-chip {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: var(--rc-pill);
            background: #fff;
            border: 1px solid #e3edfa;
            color: var(--rc-ink-2);
            text-decoration: none;
            font-size: 12.5px;
            font-weight: 500;
            line-height: 1;
            white-space: nowrap;
            min-height: 32px;
            transition:
                transform var(--rc-d1) var(--rc-ease),
                background var(--rc-d1) var(--rc-ease),
                border-color var(--rc-d1) var(--rc-ease),
                color var(--rc-d1) var(--rc-ease),
                box-shadow var(--rc-d1) var(--rc-ease);
            position: relative;
        }

        .rc-chip:hover {
            border-color: var(--rc-brand);
            color: var(--rc-brand-2);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(67, 146, 241, .16);
        }

        .rc-chip:active {
            transform: translateY(0) scale(.97);
        }

        .rc-chip:focus-visible {
            outline: 2px solid var(--rc-brand);
            outline-offset: 2px;
        }

        .rc-chip.is-active {
            background: var(--rc-brand-2);
            border-color: var(--rc-brand-2);
            color: #fff;
            box-shadow: 0 4px 14px rgba(11, 61, 140, .22);
        }

        .rc-chip.is-active:hover {
            background: var(--rc-brand-dark);
            border-color: var(--rc-brand-dark);
        }

        .rc-chip img {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            object-fit: contain;
            background: var(--rc-surface-2);
            padding: 1px;
            flex: 0 0 18px;
        }

        .rc-chip.is-active img {
            background: rgba(255, 255, 255, .16);
        }

        /* ---------- Table-top "finder" row ----------
       Sits at the top of the tablewrap as its own dedicated row,
       directly above the column headers. Minimal â€” no chunky border
       or shadow; only an icon and a thin focus underline. */
        .rc-prices .rc-finder {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px clamp(16px, 2vw, 22px);
            border-bottom: 1px solid var(--rc-border);
            background: #fbfdff;
            color: var(--rc-muted);
        }

        .rc-prices .rc-finder svg {
            width: 16px;
            height: 16px;
            flex: 0 0 16px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            transition: color var(--rc-d1) var(--rc-ease);
        }

        .rc-prices .rc-finder input {
            flex: 1 1 0;
            min-width: 0;
            appearance: none;
            -webkit-appearance: none;
            background: transparent;
            border: 0;
            outline: 0;
            padding: 6px 0;
            font-family: inherit;
            font-size: 14.5px;
            color: var(--rc-ink);
            direction: rtl;
            line-height: 1.4;
            box-shadow: none;
            top: 0px;
        }

        .rc-prices .rc-finder input::placeholder {
            color: var(--rc-muted);
        }

        .rc-prices .rc-finder input::-webkit-search-decoration,
        .rc-prices .rc-finder input::-webkit-search-cancel-button,
        .rc-prices .rc-finder input::-webkit-search-results-button,
        .rc-prices .rc-finder input::-webkit-search-results-decoration {
            display: none;
        }

        .rc-prices .rc-finder:focus-within {
            color: var(--rc-brand-2);
        }

        .rc-prices .rc-finder:focus-within input {
            color: var(--rc-ink);
        }

        .rc-prices .rc-finder .clear {
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            border: 0;
            background: var(--rc-surface-2);
            border-radius: 50%;
            color: var(--rc-muted);
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            line-height: 1;
            padding: 0;
            transition: background var(--rc-d1) var(--rc-ease), color var(--rc-d1) var(--rc-ease);
        }

        .rc-prices .rc-finder .clear:hover {
            background: var(--rc-brand-2);
            color: #fff;
        }

        .rc-prices .rc-finder.has-value .clear {
            display: inline-flex;
        }

        .rc-prices .rc-finder .count {
            font-size: 12px;
            color: var(--rc-muted);
            font-family: 'Kanit', sans-serif;
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
            opacity: 0;
            transition: opacity var(--rc-d1) var(--rc-ease);
        }

        .rc-prices .rc-finder.has-value .count {
            opacity: 1;
        }

        /* ---------- Price table ----------
       Over-specified vs. RiverCool.css legacy table rules. */
        .rc-prices .rc-tablewrap {
            display: block;
            width: 100%;
            box-sizing: border-box;
            background: var(--rc-surface);
            border: 1px solid var(--rc-border);
            border-radius: var(--rc-r3);
            overflow: hidden;
            box-shadow: var(--rc-sh1);
        }

        .rc-prices .rc-tablehead {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--rc-s4) var(--rc-s5);
            border-bottom: 1px solid var(--rc-border);
            background: var(--rc-surface);
            box-sizing: border-box;
        }

        .rc-prices .rc-tablehead h2 {
            margin: 0;
            font-size: clamp(15px, 1.6vw, 17px);
            font-weight: 600;
            color: var(--rc-ink);
        }

        .rc-prices .rc-tablehead .meta {
            font-size: 12.5px;
            color: var(--rc-muted);
            font-family: 'Kanit', sans-serif;
        }

        .rc-prices table.rc-table {
            width: 100% !important;
            max-width: 100%;
            margin: 0;
            border: 0;
            border-collapse: collapse;
            border-spacing: 0;
            table-layout: auto;
            display: table;
            font-size: 14.5px;
            box-sizing: border-box;
        }

        .rc-prices table.rc-table thead {
            display: table-header-group;
        }

        .rc-prices table.rc-table tbody {
            display: table-row-group;
        }

        .rc-prices table.rc-table tr {
            display: table-row;
        }

        .rc-prices table.rc-table th,
        .rc-prices table.rc-table td {
            display: table-cell;
        }

        .rc-prices table.rc-table thead th {
            padding: 12px 16px;
            background: var(--rc-surface-2);
            color: var(--rc-ink-2);
            font-size: 12.5px;
            font-weight: 600;
            text-align: right;
            letter-spacing: 0.01em;
            border-bottom: 1px solid var(--rc-border);
            position: sticky;
            top: 60px;
            z-index: var(--rc-z-thead);
            box-shadow: inset 0 -1px 0 var(--rc-border);
        }

        .rc-table tbody tr {
            content-visibility: auto;
            contain-intrinsic-size: auto 64px;
            border-bottom: 1px solid #f0f4fb;
            transition: background var(--rc-d1) var(--rc-ease);
            position: relative;
        }

        .rc-table tbody tr:nth-child(even) {
            background: #fbfdff;
        }

        .rc-table tbody tr:hover {
            background: #eef6ff;
        }

        /* on-hover edge accent â€” feedback only, not the banned permanent side-stripe */
        .rc-table tbody tr::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 3px;
            background: var(--rc-brand);
            opacity: 0;
            transition: opacity var(--rc-d1) var(--rc-ease);
        }

        .rc-table tbody tr:hover::after {
            opacity: 1;
        }

        .rc-table td {
            padding: 14px 16px;
            vertical-align: middle;
            color: var(--rc-ink);
        }

        .rc-model {
            display: flex;
            align-items: center;
            gap: var(--rc-s3);
            padding-right: 16px;
        }

        span[itemprop="name"] {
            font-size: 16px;
            margin-bottom: 6px;
            display: block;
        }

        .rc-model .logo {
            width: 80px;
            height: 80px;
            flex: 0 0 34px;
            border-radius: 50%;
            background: var(--rc-surface-2);
            padding: 0x;
            object-fit: contain;
            border: 3px solid #FFFFFF;
            box-shadow: 0 2px 8px rgba(22, 125, 57, .20);
            margin: -10px -10px -10px 0px;
        }

        /* ---------- Brand wordmark + power-horse unit ----------
           Re-uses the site-global .NewBrandStyle (image-clipped text fill)
           and .ACpowerSecondStyle (horse-silhouette power icon) so per-brand
           overrides (Tornado invert, York cover image, etc.) keep working.
           These scoped rules just resize them to fit a table row. */
        .rc-prices .rc-brand-unit {
            display: inline-flex;
            flex-direction: row-reverse;
            align-items: center;
            /* justify-content: start; */
            /* gap: 0; */
            flex: 0 0 auto;
            line-height: 1;
            margin-inline-end: var(--rc-s3);
            padding: 4px 0px;
            border-radius: var(--rc-r2);
            /* background: linear-gradient(135deg, #ffffff 0%, #f5f9fe 100%);
            border: 1px solid #e3edfa; */
            /* min-width: 130px; */
            justify-content: flex-end;
        }

        .rc-prices .rc-brand-unit .ACpowerSecondStyle {
            width: 40px !important;
            height: 40px !important;
            max-width: 40px !important;
            margin: 0 !important;
            transform: none !important;
            filter: invert(1) brightness(1.2) !important;
            mix-blend-mode: multiply !important;
            opacity: 0.85;
            position: static !important;
            display: inline-block !important;
            border: 0 !important;
            vertical-align: middle;
            margin-top: -10px !important;
            margin-bottom: -10px !important;
        }

        .rc-prices .rc-brand-unit .NewBrandStyle {
            font-size: 20px !important;
            line-height: 1 !important;
            margin: 0 !important;
            padding: 0 2px;
            background-size: 150px;
            background-position: center;
            background-repeat: no-repeat;
            vertical-align: middle;
            background-position: bottom;
        }

        @media (max-width: 740px) {
            .rc-prices .rc-brand-unit {
                min-width: 100px;
                padding: 3px 6px;
                margin-inline-end: var(--rc-s2);
            }

            .rc-prices .rc-brand-unit .ACpowerSecondStyle {
                width: 30px !important;
                height: 30px !important;
                max-width: 30px !important;
            }

            .rc-prices .rc-brand-unit .NewBrandStyle {
                font-size: 16px !important;
            }
        }

        .rc-model .name {
            display: flex;
            flex-direction: column;
            gap: 3px;
            min-width: 0;
        }

        .rc-model .name a {
            font-weight: 600;
            color: var(--rc-ink);
            text-decoration: none;
            font-size: 15px;
            line-height: 1.3;
            transition: color var(--rc-d1) var(--rc-ease);
        }

        .rc-model .name a:hover {
            color: var(--rc-brand-2);
        }

        .rc-model .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            font-size: 12px;
            color: var(--rc-muted);
        }

        .rc-tag {
            display: inline-block;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: var(--rc-pill);
            font-weight: 600;
            letter-spacing: 0.01em;
            line-height: 1.5;
        }

        .rc-tag.brand {
            background: rgba(67, 146, 241, .10);
            color: var(--rc-brand-2);
        }

        .rc-tag.inverter {
            background: rgba(245, 158, 11, .12);
            color: #a05d00;
        }

        .rc-tag.tropical {
            background: rgba(239, 68, 68, .10);
            color: #b21f1f;
        }

        .rc-tag.plasma {
            background: rgba(124, 58, 237, .12);
            color: #5b21b6;
        }

        .rc-tag.wifi {
            background: rgba(34, 197, 94, .10);
            color: #15803d;
        }

        /* (Old .rc-col-power / .rc-col-type columns retired â€” replaced by .rc-col-specs) */

        .rc-price {
            text-align: center;
            white-space: nowrap;
        }

        .rc-price .now {
            display: inline-block;
            font-family: 'Kanit', sans-serif;
            font-weight: 900;
            font-size: clamp(15px, 1.8vw, 24px);
            color: var(--rc-brand-2);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.005em;
        }

        .rc-price .now small {
            font-size: 11px;
            font-weight: 400;
            color: var(--rc-muted);
            margin-inline-start: 4px;
            font-family: 'El Messiri', system-ui, -apple-system, "Segoe UI", "Tahoma", sans-serif;
        }

        .rc-price .was {
            display: block;
            font-family: 'El Messiri', system-ui, -apple-system, "Segoe UI", "Tahoma", sans-serif;
            font-size: 11.5px;
            color: var(--rc-muted);
            text-decoration: line-through;
            font-weight: 900;
            margin-top: 2px;
            font-variant-numeric: tabular-nums;
        }

        .rc-price .save {
            display: inline-block;
            margin-top: 4px;
            font-size: 10.5px;
            background: rgba(27, 138, 58, .10);
            color: #0f6b2a;
            padding: 1px 7px;
            border-radius: var(--rc-pill);
            font-weight: 600;
            font-family: 'Kanit', sans-serif;
        }

        /* Specs column â€” power + hot/cold inline */
        .rc-col-specs {
            white-space: nowrap;
            font-size: 13px;
            color: var(--rc-ink-2);
            font-family: 'Kanit', 'El Messiri', sans-serif;
            line-height: 1.6;
        }

        .rc-col-specs .spec-power {
            font-weight: 700;
            color: var(--rc-ink);
            font-size: 16px;
        }

        .rc-col-specs .spec-mode {
            color: var(--rc-muted);
            font-size: 14px;
        }

        /* Buy-now column â€” green pill button, WhatsApp pre-fill */
        .rc-col-buy {
            text-align: center;
            padding-inline: var(--rc-s2);
        }

        .rc-buy {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: linear-gradient(140deg, #1ea64a 0%, #167d39 100%);
            color: #fff;
            font-weight: 700;
            font-size: 13.5px;
            font-family: 'El Messiri', sans-serif;
            border-radius: var(--rc-pill);
            text-decoration: none;
            white-space: nowrap;
            line-height: 1;
            box-shadow: 0 2px 8px rgba(22, 125, 57, .20);
            transition:
                transform var(--rc-d1) var(--rc-ease),
                box-shadow var(--rc-d1) var(--rc-ease),
                background var(--rc-d1) var(--rc-ease);
        }

        .rc-buy svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
            flex: 0 0 14px;
        }

        .rc-buy:hover {
            transform: translateY(-1px);
            background: linear-gradient(140deg, #25b853 0%, #1a8c40 100%);
            box-shadow: 0 6px 16px rgba(22, 125, 57, .34);
        }

        .rc-buy:active {
            transform: translateY(0);
        }

        /* Mobile table â€” collapse columns into stacked meta */
        @media (max-width: 740px) {

            .rc-table thead .rc-col-power,
            .rc-table thead .rc-col-specs,
            .rc-table tbody .rc-col-specs {
                display: none;
            }

            .rc-model .meta .show-mobile {
                display: inline-flex;
            }

            .rc-table td {
                padding: 12px 12px;
            }

            .rc-model {
                gap: 10px;
            }

            .rc-model .logo {
                width: 30px;
                height: 30px;
                flex-basis: 30px;
            }

            .rc-buy {
                padding: 8px 14px;
                font-size: 12.5px;
            }
        }

        @media (min-width: 741px) {
            .rc-model .meta .show-mobile {
                display: none;
            }
        }

        /* ---------- Empty state ---------- */
        .rc-empty {
            background: var(--rc-surface);
            border: 1px dashed var(--rc-border-2);
            border-radius: var(--rc-r3);
            padding: clamp(40px, 6vw, 60px) 24px;
            text-align: center;
            color: var(--rc-muted);
        }

        .rc-empty svg {
            width: 64px;
            height: 64px;
            opacity: 0.7;
            margin-bottom: var(--rc-s3);
        }

        .rc-empty h3 {
            margin: 0 0 var(--rc-s2);
            font-size: 18px;
            color: var(--rc-ink);
        }

        .rc-empty a {
            color: var(--rc-brand);
            text-decoration: none;
            font-weight: 600;
        }

        /* ---------- CTA block ---------- */
        .rc-cta {
            margin: var(--rc-s7) 0;
            background: linear-gradient(140deg, #0b3d8c 0%, #04183b 100%);
            border-radius: var(--rc-r4);
            padding: clamp(28px, 4vw, 44px);
            color: #fff;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: var(--rc-s5);
            align-items: center;
            box-shadow: var(--rc-sh2);
            position: relative;
            overflow: hidden;
        }

        .rc-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(500px 200px at 100% 0%, rgba(109, 180, 255, .20), transparent 60%),
                radial-gradient(400px 180px at 0% 100%, rgba(67, 146, 241, .16), transparent 60%);
            pointer-events: none;
        }

        .rc-cta>* {
            position: relative;
            z-index: 1;
        }

        .rc-cta h2 {
            margin: 0 0 var(--rc-s2);
            font-size: clamp(20px, 2.4vw, 28px);
            line-height: 1.3;
            color: #fff;
            text-wrap: balance;
        }

        .rc-cta p {
            margin: 0;
            color: rgba(255, 255, 255, .78);
            font-size: 14.5px;
            max-width: 85%;
            line-height: 1.7;
        }

        .rc-cta .actions {
            display: flex;
            flex-direction: column;
            gap: var(--rc-s2);
            min-width: 240px;
        }

        .rc-cta a.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: var(--rc-pill);
            font-weight: 700;
            text-decoration: none;
            font-size: 15px;
            font-family: 'PriceFont', 'El Messiri', sans-serif;
            font-variant-numeric: tabular-nums;
            transition:
                transform var(--rc-d1) var(--rc-ease),
                box-shadow var(--rc-d1) var(--rc-ease),
                background var(--rc-d1) var(--rc-ease);
        }

        .rc-cta a.btn-primary {
            background: #fff;
            color: var(--rc-brand-2);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
        }

        .rc-cta a.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
        }

        .rc-cta a.btn-wa {
            background: #25d366;
            color: #fff;
        }

        .rc-cta a.btn-wa:hover {
            background: #1ebe5b;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(37, 211, 102, .36);
        }

        .rc-cta a.btn svg {
            width: 18px;
            height: 18px;
        }

        @media (max-width: 720px) {
            .rc-cta {
                grid-template-columns: 1fr;
            }

            .rc-cta .actions {
                width: 100%;
                min-width: 0;
            }
        }

        /* ---------- FAQ ---------- */
        .rc-faq {
            margin: var(--rc-s7) 0;
        }

        .rc-faq h2 {
            margin: 0 0 var(--rc-s5);
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 700;
            color: var(--rc-ink);
            text-wrap: balance;
        }

        .rc-faq h2 small {
            display: block;
            margin-top: 6px;
            font-size: 14px;
            font-weight: 400;
            color: var(--rc-muted);
        }

        .rc-faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--rc-s3);
        }

        .rc-faq-item {
            background: var(--rc-surface);
            border: 1px solid var(--rc-border);
            border-radius: var(--rc-r3);
            overflow: hidden;
            transition: border-color var(--rc-d1) var(--rc-ease), box-shadow var(--rc-d2) var(--rc-ease);
        }

        .rc-faq-item[open] {
            border-color: var(--rc-brand);
            box-shadow: var(--rc-sh1);
        }

        .rc-faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 22px;
            font-size: clamp(15px, 1.6vw, 17px);
            font-weight: 600;
            color: var(--rc-ink);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--rc-s3);
            line-height: 1.45;
            transition: color var(--rc-d1) var(--rc-ease);
        }

        .rc-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .rc-faq-item summary:hover {
            color: var(--rc-brand-2);
        }

        .rc-faq-item summary::after {
            content: "";
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--rc-surface-2);
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3d8c' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 14px;
            transition: transform var(--rc-d2) var(--rc-ease), background var(--rc-d1) var(--rc-ease);
        }

        .rc-faq-item[open] summary::after {
            transform: rotate(180deg);
            background-color: var(--rc-brand-2);
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
        }

        .rc-faq-item .answer {
            padding: 0 22px 22px;
            color: var(--rc-ink-2);
            font-size: 15px;
            line-height: 1.85;
            max-width: 72ch;
        }

        /* ---------- Footer trust strip ---------- */
        .rc-trust {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--rc-s3);
            margin: var(--rc-s7) 0;
            padding: var(--rc-s5);
            background: var(--rc-surface);
            border: 1px solid var(--rc-border);
            border-radius: var(--rc-r3);
        }

        .rc-trust-item {
            display: flex;
            align-items: center;
            gap: var(--rc-s3);
            padding: 8px 4px;
        }

        .rc-trust-item .ico {
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(67, 146, 241, .10);
            color: var(--rc-brand-2);
        }

        .rc-trust-item .ico svg {
            width: 20px;
            height: 20px;
        }

        .rc-trust-item b {
            display: block;
            color: var(--rc-ink);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
        }

        .rc-trust-item span {
            font-size: 12.5px;
            color: var(--rc-muted);
            line-height: 1.4;
        }

        /* ---------- Polished footer (scoped to this page only) ----------
           Sibling-selector hides the bare <footer> from Footer.php so we
           only show our richer one. CallDiv / TopCallDiv / Whatsapp from
           Footer.php still render normally above this footer. */
        .rc-prices~footer:not(.rc-footer) {
            display: none !important;
        }

        .rc-footer {
            margin-top: var(--rc-s7);
            color: #fff;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #0b3d8c 0%, #04183b 100%) !important;
            background-image: linear-gradient(180deg, #0b3d8c 0%, #04183b 100%) !important;
            border-radius: var(--rc-r4) var(--rc-r4) 0 0;
            font-family: 'El Messiri', system-ui, sans-serif;
            direction: rtl;
            text-align: start;
        }

        .rc-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(600px 280px at 8% 0%, rgba(109, 180, 255, .18), transparent 60%),
                radial-gradient(500px 220px at 92% 100%, rgba(67, 146, 241, .12), transparent 60%);
            pointer-events: none;
        }

        .rc-footer>* {
            position: relative;
            z-index: 1;
        }

        .rc-footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: clamp(36px, 4.5vw, 56px) clamp(20px, 4vw, 40px) clamp(28px, 3vw, 40px);
            display: grid;
            grid-template-columns: 2.2fr 1fr 1.1fr 1fr;
            gap: clamp(24px, 3vw, 44px);
            border-bottom: 1px solid rgba(255, 255, 255, .10);
        }

        .rc-footer-brand .rc-footer-logo {
            display: inline-block;
            margin-bottom: var(--rc-s4);
        }

        .rc-footer-brand .rc-footer-logo img {
            max-height: 64px;
            width: auto;
            height: auto;
            margin: 0 !important;
        }

        .rc-footer-brand p {
            margin: 0 0 var(--rc-s4);
            color: rgba(255, 255, 255, .74);
            font-size: 12px;
            line-height: 1.4;
            max-width: 75%;
            margin-bottom: 15px;
        }

        .rc-footer-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .rc-footer-chip {
            display: inline-flex;
            align-items: baseline;
            gap: 6px;
            padding: 6px 12px;
            border-radius: var(--rc-pill);
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .10);
            font-size: 12.5px;
            color: rgba(255, 255, 255, .78);
        }

        .rc-footer-chip b {
            font-family: 'Kanit', sans-serif;
            font-weight: 800;
            font-size: 14px;
            color: var(--rc-brand-glow);
            font-variant-numeric: tabular-nums;
            letter-spacing: 0;
        }

        .rc-footer-col h3 {
            margin: 0 0 var(--rc-s4);
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0;
            margin-bottom: 15px;
        }

        .rc-footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .rc-footer-col ul li {
            margin: 0;
            padding: 0;
            line-height: 1;
        }

        .rc-footer-col a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .72);
            text-decoration: none;
            font-size: 14px;
            transition: color var(--rc-d1) var(--rc-ease), transform var(--rc-d1) var(--rc-ease);
        }

        .rc-footer-col a:hover {
            color: var(--rc-brand-glow);
            transform: translateX(-2px);
        }

        .rc-footer-col a svg {
            width: 14px;
            height: 14px;
            flex: 0 0 14px;
            opacity: 0.75;
        }

        .rc-footer-contacts a {
            line-height: 1.3;
        }

        .rc-footer-phone {
            font-family: 'Kanit', sans-serif;
            font-weight: 500;
            letter-spacing: 0.01em;
            font-variant-numeric: tabular-nums;
            font-size: 14.5px;
        }

        .rc-footer-social {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: var(--rc-s4);
        }

        .rc-footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .82);
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            transition:
                background var(--rc-d1) var(--rc-ease),
                color var(--rc-d1) var(--rc-ease),
                transform var(--rc-d1) var(--rc-ease),
                border-color var(--rc-d1) var(--rc-ease);
        }

        .rc-footer-social a:hover {
            background: rgba(109, 180, 255, .20);
            border-color: var(--rc-brand-glow);
            color: #fff;
            transform: translateY(-2px);
        }

        .rc-footer-social a svg {
            width: 16px;
            height: 16px;
            opacity: 1;
        }

        .rc-footer-region {
            margin: 0;
            font-size: 12.5px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .55);
        }

        .rc-footer-region strong {
            display: block;
            margin-top: 4px;
            font-weight: 600;
            color: rgba(255, 255, 255, .80);
        }

        .rc-footer-bar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 18px clamp(20px, 4vw, 40px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--rc-s3);
            color: rgba(255, 255, 255, .50);
            font-size: 12.5px;
            line-height: 1.6;
        }

        .rc-footer-bar a {
            color: rgba(255, 255, 255, .78);
            text-decoration: none;
            border-bottom: 1px dotted rgba(255, 255, 255, .25);
            transition: color var(--rc-d1) var(--rc-ease), border-color var(--rc-d1) var(--rc-ease);
        }

        .rc-footer-bar a:hover {
            color: var(--rc-brand-glow);
            border-color: var(--rc-brand-glow);
        }

        @media (max-width: 900px) {
            .rc-footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .rc-footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 540px) {
            .rc-footer-grid {
                grid-template-columns: 1fr;
                padding: 32px 20px 24px;
                gap: 28px;
            }

            .rc-footer-brand {
                grid-column: 1;
            }

            .rc-footer-bar {
                flex-direction: column;
                align-items: flex-start;
                text-align: start;
                gap: 4px;
            }
        }

        /* ---------- Motion: row entrance, stat count-up ---------- */
        @media (prefers-reduced-motion: no-preference) {

            .rc-board,
            .rc-filter,
            .rc-tablewrap,
            .rc-cta,
            .rc-faq,
            .rc-trust {
                animation: rc-rise var(--rc-d3) var(--rc-ease) both;
            }

            .rc-filter {
                animation-delay: 70ms;
            }

            .rc-tablewrap {
                animation-delay: 130ms;
            }

            .rc-cta {
                animation-delay: 50ms;
            }

            .rc-faq {
                animation-delay: 80ms;
            }

            @keyframes rc-rise {
                from {
                    opacity: 0;
                    transform: translateY(14px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }

            .rc-eyebrow .dot {
                animation: none;
            }
        }

        /* ---------- Touch / focus polish ---------- */
        .rc-chip,
        .rc-faq-item summary,
        .rc-cta a.btn {
            min-height: 44px;
        }

        /* Focus rings: applied to elements that have their own border or
       handle their focus, but NOT the finder input (which uses its
       own focus-within parent treatment). */
        .rc-prices a:focus-visible,
        .rc-prices button:focus-visible,
        .rc-prices summary:focus-visible {
            outline: 2px solid var(--rc-brand);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .rc-prices .rc-finder:focus-within {
            box-shadow: inset 0 -2px 0 0 var(--rc-brand);
        }
