        :root {
            --hsp-primary: #f59e0b;
            --hsp-dark: #1a1c1e;
            --hsp-gray: #64748b;
            --hsp-bg: #ffffff; /* Pure plain background */
            --hsp-border: #f1f5f9;
            --hsp-transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        }
        
        body{
            background-color: #fff !Important;
        }

       

        /* 1250px Max Width Wrapper */
        .hsp-main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center; /* Center the two main blocks */
            position: relative;
            padding: 20px;
        }

        /* Content Sections */
        .hsp-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Left Side: Visual Stage */
        .hsp-visual-area {
            align-items: center; /* Center the frame in its area */
            padding: 20px;
            
        }

        .hsp-image-frame {
            position: relative;
            width: 100%;
            max-width: 550px; /* Sharp and balanced size */
            padding: 12px;
            background: #fff;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
            border-radius: 2px;
            border: 1px solid var(--hsp-border);
        }

        .hsp-image-frame::before {
            content: '';
            position: absolute;
            top: -12px;
            left: -12px;
            width: 50px;
            height: 50px;
            border-top: 2px solid var(--hsp-primary);
            border-left: 2px solid var(--hsp-primary);
            z-index: 0;
        }

        .hsp-main-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #fff;
        }

        .hsp-main-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--hsp-transition);
        }

        .hsp-gallery-nav {
            margin-top: 20px;
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .hsp-thumb-item {
            width: 70px;
            height: 70px;
            cursor: pointer;
            border: 1px solid var(--hsp-border);
            transition: var(--hsp-transition);
            background: #fff;
            padding: 2px;
        }

        .hsp-thumb-item.hsp-active {
            border-color: var(--hsp-dark);
            transform: translateY(-2px);
        }

        .hsp-thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Right Side: Content Area */
        .hsp-content-area {
            padding: 20px 40px;
        }

        .hsp-tag-badge {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--hsp-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hsp-tag-badge::after {
            content: '';
            width: 25px;
            height: 1px;
            background: var(--hsp-border);
        }

        .hsp-product-title {
            font-size: clamp(24px, 2.5vw, 32px);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            line-height: 1.15;
            color: var(--hsp-dark);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .hsp-description {
            font-size: 15px;
            line-height: 1.8;
            color: var(--hsp-gray);
            margin-bottom: 30px;
            text-align: left;
            max-width: 100%;
            text-align: justify;
        }

        .hsp-btn-small {
            background: var(--hsp-dark);
            color: #fff;
            border: 1px solid var(--hsp-dark);
            padding: 12px 24px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--hsp-transition);
            align-self: flex-start;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .hsp-btn-small:hover {
            background: transparent;
            color: var(--hsp-dark);
            transform: translateX(5px);
        }

        /* Toast Notification */
        .hsp-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #000;
            color: #fff;
            padding: 15px 30px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            transform: translateY(200%);
            transition: var(--hsp-transition);
            z-index: 1000;
            border-left: 4px solid var(--hsp-primary);
        }

        .hsp-notification.hsp-show {
            transform: translateY(0);
        }

        /* --- ADVANCED RESPONSIVE LOGIC --- */

        /* Tablets & Smaller Laptops (around the 1009px width you specified) */
        @media (max-width: 1100px) {
            .hsp-main-wrapper {
                padding: 60px 10px;
                gap: 20px;
            }
            .hsp-content-area {
                padding: 20px !important;
            }

        }

        /* Tablets Portrait & Large Phones */
        @media (max-width: 900px) {
            .hsp-main-wrapper { 
                flex-direction: column; 
                align-items: left;
                text-align: left;
                padding-top: 40px;
            }
            .hsp-section {
                width: 100%;
            }
            .hsp-visual-area {
                padding-right: 20px;
                margin-bottom: 40px;
            }
            .hsp-content-area {
                align-items: left;
                text-align: left;
            }
            .hsp-tag-badge {
                justify-content: left;
            }
            .hsp-description {
                text-align: left;
                margin-left: auto;
                margin-right: auto;
            }
            .hsp-btn-small {
                align-self: left;
            }
            .hsp-image-frame::before {
                display: none; /* Clean look for mobile */
            }
        }

        /* Small Phones */
        @media (max-width: 480px) {
            .hsp-product-title {
                font-size: 22px;
            }
            .hsp-description {
                font-size: 14px;
            }
            .hsp-image-frame {
                max-width: 500px;
            }
            .hsp-thumb-item {
                width: 45px;
                height: 45px;
            }
            .hsp-btn-small {
                width: 100%;
                justify-content: left;
            }
        }

















/* table css start  */




  /* Modern Font Import */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        /* Unique Scoped Variables */
        :root {
            --ts-primary-red: #b91c1c; 
            --ts-light-red-border: #fecaca; 
            --ts-soft-red-bg: #fef2f2; 
            --ts-text-dark: #1e293b;
            --ts-text-muted: #475569;
            --ts-white: #ffffff;
        }

        .ts-main-container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 15px;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            color: var(--ts-text-dark);
            margin-bottom: 50px;
        }

        /* Sharp Table Styling with Unique Class */
        .ts-table-wrapper {
            background: var(--ts-white);
            border: 1px solid var(--ts-light-red-border);
            overflow: hidden;
            box-sizing: border-box;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        }

        #ts-spec-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            margin: 0;
            padding: 0;
        }

        /* Desktop Header Styling */
        #ts-spec-table thead {
            background-color: var(--ts-primary-red);
            color: var(--ts-white);
        }

        #ts-spec-table th {
            padding: 14px 16px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            box-sizing: border-box;
        }

        #ts-spec-table th:last-child {
            border-right: none;
        }

        /* Table Body Cells */
        #ts-spec-table td {
            padding: 12px 16px;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--ts-light-red-border);
            border-right: 1px solid var(--ts-light-red-border);
            color: var(--ts-text-muted);
            font-weight: 500;
            box-sizing: border-box;
        }

        #ts-spec-table td:last-child {
            border-right: none;
        }

        #ts-spec-table tbody tr:last-child td {
            border-bottom: none;
        }

        #ts-spec-table tbody tr:hover {
            background-color: var(--ts-soft-red-bg);
            transition: background-color 0.2s ease;
        }

        /* Value Highlight */
        #ts-spec-table td:first-child {
            color: var(--ts-primary-red);
            font-weight: 700;
        }

        /* Status Badge Unique Classes */
        .ts-status-badge {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            display: inline-block;
            text-align: center;
        }

        .ts-status-yes {
            background-color: #dcfce7;
            color: #166534;
        }

        .ts-status-no {
            background-color: #fee2e2;
            color: #991b1b;
        }

       


























/* second table desgine css section  */


        /* Modern Font Import */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        /* Unique Scoped Variables for Machinery Specs */
        :root {
            --ms-accent-red: #b91c1c; 
            --ms-border-light: #fca5a5; 
            --ms-bg-hover: #fff1f2; 
            --ms-text-main: #0f172a;
            --ms-text-sub: #475569;
            --ms-pure-white: #ffffff;
            --ms-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        }

        .ms-master-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }

        /* Flexbox Container for Left/Right Alignment */
        .ms-dual-table-grid {
            display: flex;
            gap: 25px;
            flex-wrap: wrap; /* Important for responsiveness */
            align-items: flex-start;
        }

        /* Individual Table Container */
        .ms-table-container {
            flex: 1;
            min-width: 340px; /* Minimum width before stacking */
            background: var(--ms-pure-white);
            border: 1px solid var(--ms-border-light);
            overflow: hidden;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        }

        .ms-data-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        /* Header Styling */
        .ms-data-table thead {
            background-color: var(--ms-accent-red);
            color: var(--ms-pure-white);
        }

        .ms-data-table th {
            padding: 16px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 700;
            border-bottom: 2px solid rgba(0,0,0,0.1);
        }

        /* Category Row Styling */
        .ms-category-row {
            background-color: #fff;
        }

        .ms-category-title {
            padding: 12px 16px !important;
            font-size: 0.9rem !important;
            font-weight: 800 !important;
            color: var(--ms-accent-red) !important;
            text-align: center;
            text-transform: uppercase;
            border-bottom: 2px solid var(--ms-border-light) !important;
        }

        /* Table Cells */
        .ms-data-table td {
            padding: 12px 16px;
            font-size: 0.85rem;
            border-bottom: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            color: var(--ms-text-sub);
            line-height: 1.5;
            vertical-align: top;
        }

        .ms-data-table td:last-child {
            border-right: none;
        }

        /* Label Column (First Column) */
        .ms-label-col {
            width: 40%;
            color: var(--ms-text-main) !important;
            font-weight: 600 !important;
            background-color: #fafafa;
        }

        /* Hover Effect */
        .ms-data-table tbody tr:hover {
            background-color: var(--ms-bg-hover);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .ms-dual-table-grid {
                flex-direction: column;
            }
            .ms-table-container {
                width: 100%;
                flex: none;
            }
            .ms-label-col {
                width: 45%;
            }

            .ms-master-wrapper{
                margin-left: -25px;
                padding: 30px !important;
            }
        }