
    /* --- H-LIFT INDUSTRIAL THEME VARIABLES --- */
    :root {
        --primary-blue: #003366;
        --secondary-blue: #e7f1ff;
        --safety-orange: #e67e23;
        --text-dark: #333;
        --text-light: #555;
        --bg-light: #f8f9fa;
        --border-color: #ddd;
    }

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 20px;
        background-color: #fff;
    }

    .container { max-width: 1200px; margin: 0 auto; }

    /* --- Header Section --- */
    .product-header {
        border-bottom: 4px solid var(--primary-blue);
        padding-bottom: 20px;
        margin-bottom: 30px;
        text-align: center;
    }

    .product-header h1 {
        font-size: 32px;
        color: var(--primary-blue);
        margin-bottom: 10px;
        font-family: 'Cambria', serif;
    }

    .badges {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        background-color: var(--bg-light);
        border: 1px solid var(--primary-blue);
        color: var(--primary-blue);
        padding: 5px 15px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 13px;
    }

    .badge.highlight {
        background-color: var(--primary-blue);
        color: white;
    }

    /* --- Safety Banner --- */
    .safety-banner {
        background-color: var(--secondary-blue);
        border-left: 5px solid var(--safety-orange);
        padding: 20px;
        margin: 25px 0;
        border-radius: 4px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .safety-item { text-align: center; }
    .safety-label {
        font-size: 11px;
        text-transform: uppercase;
        color: #666;
        font-weight: 700;
        display: block;
        letter-spacing: 1px;
    }
    .safety-value {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary-blue);
    }

    /* --- Feature Grid --- */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        margin-bottom: 40px;
    }

    .feature-item {
        background: var(--bg-light);
        padding: 15px;
        border-radius: 6px;
        font-size: 14px;
        border: 1px solid #eee;
        display: flex;
        align-items: flex-start;
    }

    .feature-item::before {
        content: "✓";
        color: var(--safety-orange);
        font-weight: bold;
        margin-right: 12px;
        font-size: 18px;
    }

    /* --- Table Styles --- */
    .section-title {
        font-size: 24px;
        margin: 40px 0 20px 0;
        color: var(--primary-blue);
        border-left: 6px solid var(--primary-blue);
        padding-left: 15px;
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 1000px;
        background: #fff;
    }

    .spec-table th {
        background-color: var(--primary-blue);
        color: #ffffff;
        font-weight: 600;
        padding: 10px 8px;
        text-align: center !important;
        vertical-align: middle !important;
        font-size: 13px;
        border: 1px solid #004080;
    }

    .spec-table td {
        padding: 10px 8px;
        text-align: center !important;
        vertical-align: middle !important;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        color: var(--text-dark);
    }

    .mode-icon {
        max-width: 40px;
        height: auto;
        display: block;
        margin: 5px auto;
        background: #ffffff; 
        padding: 3px;
        border-radius: 4px;
        border: 1px solid #003366;
    }

    /* --- READABILITY UPDATE: Color Swatch + Dark Text --- */
    .color-cell-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        color: var(--text-dark); /* Ensures text is always perfectly readable */
    }

    .color-swatch {
        width: 18px;
        height: 18px;
        border-radius: 3px;
        border: 1px solid rgba(0,0,0,0.2);
        display: inline-block;
    }
    .sw-purple { background-color: #843fa1; }
    .sw-green  { background-color: #169179; }
    .sw-yellow { background-color: #f1c40f; }
    .sw-grey   { background-color: #95a5a6; }
    .sw-red    { background-color: #e03e2d; }
    .sw-brown  { background-color: #802a2a; }
    .sw-blue   { background-color: #3598db; }
    .sw-orange { background-color: #e67e23; }

    /* --- Related Products --- */
    .related-products {
        background-color: var(--bg-light);
        padding: 30px;
        border-radius: 8px;
        margin-top: 50px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        color: var(--text-dark);
        transition: 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--primary-blue);
    }

    .product-card img {
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .product-card span { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--primary-blue); }

    @media (max-width: 768px) {
        .safety-banner { flex-direction: column; gap: 15px; }
        .scroll-hint { display: block; text-align: center; font-size: 12px; color: #888; margin-bottom: 5px; font-style: italic; }
    }
