        .comparison-section {
            padding-bottom: 4rem;
            background-color: #fff;
            padding-top: 4rem;
        }

        .comparison-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .comparison-title {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--color-dark);
        }

        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--color-border);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9375rem;
            background-color: #fff;
            min-width: 800px;
            /* Force scroll on mobile */
        }

        /* Headers */
        .compare-table th {
            background-color: var(--color-light-gray);
            color: var(--color-dark);
            font-weight: 700;
            text-align: center;
            padding: 1rem;
            border-bottom: 2px solid var(--color-border);
            /* white-space: nowrap; */
        }

        /* First column (Material Name) sticky */
        .compare-table th:first-child,
        .compare-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 10;
            background-color: #fff;
            /* Take bg from parent */
            text-align: left;
            border-right: 1px solid var(--color-border);
            min-width: 180px;
        }

        .compare-table th:first-child {
            background-color: var(--color-light-gray);
        }

        .compare-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--color-border);
            text-align: center;
            color: var(--color-gray);
            vertical-align: middle;
        }

        /* Row Highlighting (HPL) */
        .compare-table tr.highlight-hpl {
            background-color: #eff6ff;
            /* blue-50 */
        }

        .compare-table tr.highlight-hpl td {
            color: var(--color-blue-800);
            font-weight: 500;
        }

        .compare-table tr.highlight-hpl td:first-child {
            color: var(--color-primary);
            font-weight: 700;
            background-color: #eff6ff;
        }

        .star-rating {
            color: #fbbf24;
            /* amber-400 */
            letter-spacing: 2px;
        }

        .price-rating {
            color: #10b981;
            /* green-500 */
            font-weight: bold;
        }

        .cross-mark {
            color: #ef4444;
            /* red-500 */
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .comparison-title {
                font-size: 1.75rem;
            }

            .comparison-container {
                padding: 0 0.5rem;
            }

            .compare-table th {
                max-width: 120px;
                min-width: 120px;
                /* white-space: unset; */
            }

            .compare-table th:first-child,
            .compare-table td:first-child {
                min-width: 150px;
            }

        }
