/* ── PAGE HERO ── */
        .page-hero {
            background: linear-gradient(135deg, #1e2a32 0%, #2C363F 60%, #3a0000 100%);
            padding: 120px 0 52px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(230, 0, 0, 0.03) 40px, rgba(230, 0, 0, 0.03) 41px);
        }

        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
        }

        .page-hero h1 span {
            color: #E60000;
        }

        .page-hero p {
            color: rgba(255, 255, 255, 0.62);
            font-size: .95rem;
            margin-top: 10px;
            position: relative;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: .8rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 12px;
            position: relative;
        }

        .breadcrumb a {
            color: #E60000;
            text-decoration: none;
        }

        /* ── LAYOUT ── */
        .products-page-wrap {
            display: grid;
            grid-template-columns: 260px 1fr;
            min-height: calc(100vh - 72px);
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ── SIDEBAR ── */
        .prod-sidebar {
            position: sticky;
            top: 72px;
            height: calc(100vh - 72px);
            overflow-y: auto;
            background: #2C363F;
            padding: 0 0 40px;
            scrollbar-width: thin;
            scrollbar-color: #E60000 #1e2a32;
        }

        .prod-sidebar::-webkit-scrollbar {
            width: 3px;
        }

        .prod-sidebar::-webkit-scrollbar-thumb {
            background: #E60000;
        }

        .sidebar-search-wrap {
            padding: 16px 16px 10px;
            background: #263038;
        }

        .sidebar-search-wrap input {
            width: 100%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 6px;
            padding: 9px 12px;
            color: #fff;
            font-size: .8rem;
            font-family: inherit;
            outline: none;
            transition: border-color .2s;
        }

        .sidebar-search-wrap input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .sidebar-search-wrap input:focus {
            border-color: #E60000;
        }

        .sidebar-label {
            font-size: .65rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: #E60000;
            text-transform: uppercase;
            padding: 14px 18px 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .sidebar-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-nav li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .sidebar-nav li button {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 11px 18px;
            background: none;
            border: none;
            border-left: 3px solid transparent;
            color: rgba(255, 255, 255, 0.6);
            font-size: .82rem;
            font-weight: 500;
            font-family: inherit;
            cursor: pointer;
            transition: all .18s ease;
            text-align: left;
        }

        .sidebar-nav li button:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            border-left-color: rgba(230, 0, 0, 0.5);
        }

        .sidebar-nav li button.active {
            color: #fff;
            background: rgba(230, 0, 0, 0.12);
            border-left-color: #E60000;
            font-weight: 600;
        }

        .sidebar-nav li button .sicon {
            font-size: 1rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-nav li button .snum {
            margin-left: auto;
            font-size: .65rem;
            color: rgba(255, 255, 255, 0.25);
            font-weight: 400;
        }

        /* ── MAIN PANEL ── */
        .prod-main {
            background: #F0F2F4;
            padding: 36px 40px 60px;
            overflow-y: auto;
        }

        .prod-panel {
            display: none;
        }

        .prod-panel.active {
            display: block;
            animation: fadeIn .22s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ── PANEL HEADER ── */
        .panel-top {
            margin-bottom: 32px;
        }

        .panel-top .p-label {
            display: inline-block;
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #E60000;
            background: rgba(230, 0, 0, 0.08);
            border: 1px solid rgba(230, 0, 0, 0.25);
            border-radius: 4px;
            padding: 4px 12px;
            margin-bottom: 14px;
        }

        .panel-top h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1e2a32;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .panel-top .p-divider {
            width: 50px;
            height: 4px;
            background: #E60000;
            border-radius: 2px;
            margin-bottom: 18px;
        }

        .panel-top .p-lead {
            font-size: .95rem;
            color: #5a6a7a;
            line-height: 1.78;
            max-width: 640px;
        }

        /* ── ALTERNATING ROWS ── */
        .prod-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 18px rgba(44, 54, 63, 0.09);
            overflow: hidden;
            margin-bottom: 28px;
            min-height: 340px;
        }

        .prod-row.reverse {
            direction: rtl;
        }

        .prod-row.reverse>* {
            direction: ltr;
        }

        /* Text box */
        .pr-text {
            padding: 44px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pr-text .pr-tag {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #E60000;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pr-text .pr-tag::before {
            content: '';
            width: 20px;
            height: 2px;
            background: #E60000;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .pr-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e2a32;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .pr-text p {
            font-size: .88rem;
            color: #5a6a7a;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .pr-text ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pr-text ul li {
            font-size: .85rem;
            color: #3a4a56;
            padding: 6px 0 6px 18px;
            position: relative;
            border-bottom: 1px solid #f2f2f2;
            line-height: 1.5;
        }

        .pr-text ul li:last-child {
            border-bottom: none;
        }

        .pr-text ul li::before {
            content: '▸';
            color: #E60000;
            position: absolute;
            left: 0;
            top: 7px;
            font-size: .7rem;
        }

        .pr-stats {
            display: flex;
            gap: 16px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .pr-stat {
            background: #F8F9FA;
            border-radius: 8px;
            padding: 12px 18px;
            text-align: center;
            flex: 1;
            min-width: 80px;
        }

        .pr-stat strong {
            display: block;
            font-size: 1.3rem;
            font-weight: 800;
            color: #1e2a32;
        }

        .pr-stat span {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #E60000;
        }

        /* Image box */
        .pr-img {
            position: relative;
            overflow: hidden;
            min-height: 320px;
            background: #2C363F;
        }

        .pr-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .pr-img:hover img {
            transform: scale(1.04);
        }

        .pr-img-cap {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(20, 30, 38, 0.88), transparent);
            color: rgba(255, 255, 255, 0.88);
            font-size: .75rem;
            font-weight: 500;
            padding: 22px 16px 10px;
        }

        .pr-img-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #E60000;
            color: #fff;
            font-size: .66rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* CTA row */
        .panel-cta {
            background: #fff;
            border-radius: 10px;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            box-shadow: 0 2px 12px rgba(44, 54, 63, 0.07);
            margin-top: 4px;
        }

        .panel-cta p {
            font-size: .84rem;
            color: #5a6a7a;
            margin: 0;
        }

        .btn-enquire {
            background: #E60000;
            color: #fff;
            font-size: .84rem;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            transition: background .2s, transform .15s;
            white-space: nowrap;
        }

        .btn-enquire:hover {
            background: #C00000;
            transform: translateY(-1px);
        }        

        /* ── RESPONSIVE ── */
        @media(max-width:991px) {
            .products-page-wrap {
                grid-template-columns: 1fr;
            }

            .prod-sidebar {
                position: static;
                height: auto;
            }

            .sidebar-nav {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }

            .sidebar-nav li button {
                padding: 9px 10px;
                font-size: .75rem;
                border-left: none;
                border-bottom: 3px solid transparent;
            }

            .sidebar-nav li button.active {
                border-left-color: transparent;
                border-bottom-color: #E60000;
            }

            .sidebar-nav li button .snum {
                display: none;
            }

            .prod-main {
                padding: 22px 16px 50px;
            }

            .prod-row,
            .prod-row.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .pr-img {
                min-height: 220px;
            }

            .pr-text {
                padding: 28px 24px;
            }

            .panel-top h2 {
                font-size: 1.5rem;
            }
        }

        @media(max-width:575px) {
            .sidebar-nav {
                grid-template-columns: repeat(2, 1fr);
            }

            .panel-top h2 {
                font-size: 1.3rem;
            }

            .pr-text {
                padding: 22px 18px;
            }

            .pr-text h3 {
                font-size: 1.1rem;
            }

            .panel-cta {
                padding: 16px 18px;
            }

            .page-hero h1 {
                font-size: 1.9rem;
            }
        }