 .section-product1{
        background: black;
        padding: 50px 10px;
    }
    .heading-product h2{
        color: white;
        margin-top: 20px;
        text-align: center;
        font-size: 35px;
        font-family: "Barlow Condensed", sans-serif !important;
    }
    .heading-product h2 span{
        color: red;
    }
    .heading-product h3{
        color: red;
        font-size: 15px;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif !important;
    }
    .heading-product p{
        color: white;
        text-align: center;
        margin-bottom: 20px;
        font-family: "Barlow Condensed", sans-serif !important;
    }

    /* ---- Top intro heading (theme styled) ---- */
    .top.heading-product{
        padding: 30px 10px 10px;
    }
    .top.heading-product h2{
        color: black;
        text-align: center;
        font-size: 35px;
        font-family: "Barlow Condensed", sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .top.heading-product p{
        color: black;
        text-align: center;
        max-width: 800px;
        margin: 15px auto 0;
        font-size: 15px;
        line-height: 1.6;
        font-family: "Barlow Condensed", sans-serif !important;
    }

    /* ---- CTA Enquiry Button ---- */
    .cta-enquiry-wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px 10px;
    }
    .cta-enquiry-btn{
        display: inline-block;
        background: #d60000;
        color: #fff !important;
        text-decoration: none;
        font-family: "Barlow Condensed", sans-serif !important;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 16px;
        padding: 12px 40px;
        border-radius: 4px;
        border: 2px solid #d60000;
        transition: all 0.3s ease;
    }
    .cta-enquiry-btn:hover{
        background: transparent;
        color: #d60000 !important;
    }

    .sproduct-row{
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .sproduct-row .sproduct-col1,
    .sproduct-row .sproduct-col2{
        margin-top: 20px;
        width: 50%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* ---- Tech Spec Table ---- */
    .sproduct-row .sproduct-col1 .tech-spec-table-wrap{
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .sproduct-row .sproduct-col1 .tech-spec-table{
        width: 100%;
        min-width: 420px;
        border-collapse: collapse;
        background: #000;
        color: #fff;
    }
    .sproduct-row .sproduct-col1 .tech-spec-table thead th{
        background: #d60000;
        color: #fff;
        text-align: left;
        padding: 5px !important;
        font-size: 15px !important;
        border: 1px solid #444;
        text-transform: capitalize;
         font-family: "Barlow Condensed", sans-serif !important;
    }
    .sproduct-row .sproduct-col1 .tech-spec-table tbody td{
        border: 1px solid #444;
        font-size: 13px;
        padding: 3px 15px;
        text-align: justify;
         font-family: "Barlow Condensed", sans-serif !important;
    }
    .sproduct-row .sproduct-col1 .tech-spec-table tbody tr{
        background: black;
    }
    .sproduct-col2 img{
        width: 100%;
        height: auto;
        display: block;
         font-family: "Barlow Condensed", sans-serif !important;
    }

    /* ---- Feature Icon Strip (redesigned) ---- */
    .feature-strip{
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 0;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    .feature-item{
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 22px;
        position: relative;
        flex: 1 1 auto;
        justify-content: center;
    }
    .feature-item img{
        width:100%;
    }
    .feature-item:not(:last-child)::after{
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: rgba(214,0,0,0.4);
    }
    .feature-item .feature-icon{
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d60000;
    }
    .feature-item .feature-icon svg{
        width: 100%;
        height: 100%;
        stroke: #d60000;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .feature-item h4{
        font-size: 13px;
        color: white;
        font-weight: 500;
        margin: 0;
        line-height: 1.3;
        text-transform: capitalize;
        text-align: left;
        white-space: nowrap;
    }

    /* Grey variant */
    .section-product2{
        background: #efefef;
    }
    .section-product2 .heading-product h2{ color: black; }
    .section-product2 .heading-product p{ color: black; }
    .section-product2 .tech-spec-table tbody tr{ background: white !important; }
    .section-product2 .tech-spec-table tbody tr td{ color: black; }
    .section-product2 .feature-item h4{ color: black; }
    .section-product2 .feature-item::after{ background: rgba(0,0,0,0.15); }

    /* ---- Responsive breakpoints ---- */
    @media (max-width: 991px){
        .sproduct-row .sproduct-col1,
        .sproduct-row .sproduct-col2{
            width: 100%;
        }
        .sproduct-row .sproduct-col2{
            order: -1;
            margin-bottom: 10px;
        }
    }

    @media (max-width: 768px){
        .heading-product h2{ font-size: 26px; }
        .top.heading-product h2{ font-size: 26px; }
        .feature-item{
            flex: 0 0 33.333%;
            padding: 14px 8px;
        }
        .feature-item:nth-child(3n)::after{ display: none; }
        .feature-item h4{
            white-space: normal;
            text-align: center;
        }
        .feature-item{ flex-direction: column; text-align: center; gap: 6px; }
    }

    @media (max-width: 480px){
        .feature-item{ flex: 0 0 50%; }
        .feature-item:nth-child(2n)::after{ display: none; }
        .feature-item:nth-child(3n)::after{ display: block; }
        .tech-spec-table{ min-width: 360px; }
        .cta-enquiry-btn{ font-size: 14px; padding: 10px 28px; }
    }