   .vc-product-section {
            padding: 20px 20px;
            background: #ffffff;
        }

        .vc-product-wrapper {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 50px;
            align-items: start;
        }


        /* SIDEBAR */

        .vc-product-sidebar {
            position: sticky;
            top: 120px;
            background: #f7faf7;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e5ebe5;
        }

        .vc-sidebar-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #1f2c22;
        }

        .vc-product-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .vc-product-menu li {
            margin-bottom: 8px;
        }

        .vc-product-menu a {
            display: block;
            padding: 11px 14px;
            text-decoration: none;
            color: #41564a;
            font-size: 14px;
            border-radius: 8px;
            transition: all .25s ease;
        }

        .vc-product-menu a:hover {
            background: #ef6808;
            color: #ffffff;
        }

        .vc-product-menu .active a {
            background: #076708;
            color: #ffffff;
        }


        /* CONTENT */

        .vc-product-image img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }

        .vc-product-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: #1f2c22;
            margin-top: 0px;
        }


        .vc-product-block {
            padding-bottom: 25px;
            margin-bottom: 25px;
            border-bottom: 1px solid #e6ece6;
        }

        .vc-product-block h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #2f377b;
        }

        .vc-product-block p {
            font-size: 16px;
            line-height: 1.7;
            color: #4b5f52;
        }

        .section-label {
            font-size: 13px;
            color: var(--color-text-primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            font-weight: bolder;
        }

        /* RESPONSIVE */

        @media(max-width:992px) {

            .vc-product-wrapper {
                grid-template-columns: 1fr;
            }

            .vc-product-sidebar {
                position: relative;
                top: auto;
            }

        }


        @media(max-width:600px) {

            .vc-product-section {
                padding: 60px 16px;
            }

            .vc-product-title {
                font-size: 28px;
            }

        }

        .cable-spec-section {
            position: relative;
            max-width: 1200px;
            margin: auto;

        }

        .spec-title {
            font-size: 30px;
            margin-bottom: 25px;
            color: #1f2c22;
        }

        .table-responsive {
            overflow-x: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            scrollbar-width: none;
            /* Firefox */
            overflow-x: auto;
            /* max-height: 500px; */
        }

        .table-responsive::-webkit-scrollbar {
            display: none;
        }

        .cable-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 850px;
            background: #ffffff;
            position: relative;
        }

        .cable-table thead th {
            position: sticky;
            top: 0;
            z-index: 5;
            background: #076708;
            color: #fff;
        }

        /* second header row */
        .cable-table thead tr:nth-child(2) th {
            top: 44px;
        }

        /* unit row */
        .cable-table thead tr.unit-row th {
            top: 88px;
            background: #f3f6f3;
            color: #333;
        }

        .cable-table th,
        .cable-table td {
            padding: 14px 16px;
            text-align: center;
            border: 1px solid #e6ece6;
            font-size: 14px;
        }

        .cable-table thead th {
            background: #076708;
            color: white;
            font-weight: 600;
        }

        .cable-table .unit-row th {
            background: #f3f6f3;
            color: #333;
            font-weight: 600;
        }

        .cable-table tbody tr:nth-child(even) {
            background: #fafafa;

        }

        .cable-table tbody tr:hover {
            background: #f1f7f1;
        }

        @media(max-width:768px) {

            .spec-title {
                font-size: 24px;
            }

        }

        .cable-table thead th {
            position: sticky;
            top: 0;
            z-index: 5;
            background: #076708;
            color: #fff;
        }

        .cable-table thead tr:nth-child(2) th {
            top: 48px;
        }

        .cable-table thead tr.unit-row th {
            top: 96px;
            background: #f3f6f3;
            color: #333;
        }

        .lt-footer-image {
            margin-block: 30px;
            max-width: 1200px;
            margin: auto;
            padding-block: 20px;
        }

        .lt-footer-image img {
            width: 100%;
        }
 