
    /* --- Basic Styles --- */
    :root {
        --primary-purple: #8e44ad; /* Standard Purple for 1 Tonne Sling */
        --text-dark: #2c3e50;
        --text-light: #7f8c8d;
        --bg-light: #f8f9fa;
        --border-color: #ecf0f1;
    }

    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: 3px solid var(--primary-purple);
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .product-header h1 {
        color: var(--primary-purple);
        font-size: 32px;
        margin: 0 0 10px 0;
    }

    .product-header .subtitle {
        font-size: 18px;
        color: var(--text-light);
        font-weight: 500;
    }

    /* --- Features List --- */
    .features-section {
        background: var(--bg-light);
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 40px;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
    }

    .features-list li {
        position: relative;
        padding-left: 25px;
        font-size: 15px;
    }

    .features-list li::before {
        content: "✔";
        color: var(--primary-purple);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* --- Technical Table Section --- */
    .tech-section {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 24px;
        color: var(--text-dark);
        margin-bottom: 20px;
        border-left: 5px solid var(--primary-purple);
        padding-left: 15px;
    }

    .diagram-note {
        text-align: center;
        margin-bottom: 20px;
        font-style: italic;
        color: #666;
        background: #fff;
        padding: 10px;
        border: 1px dashed #ccc;
    }

    .table-container {
        width: 100%;
        overflow-x: auto; /* Critical: Allow horizontal scrolling on mobile */
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 1000px; /* Ensure table is not squeezed */
        font-size: 14px;
        background: #fff;
    }

    th {
        background-color: #34495e;
        color: #fff;
        padding: 12px 8px;
        text-align: center;
        border: 1px solid #5d6d7e;
        vertical-align: middle;
    }

    td {
        padding: 10px 8px;
        border: 1px solid #eee;
        text-align: center;
        color: #555;
    }

    /* Lifting Mode Icons */
    .mode-icon {
        max-width: 40px;
        height: auto;
        display: block;
        margin: 5px auto;
        background: rgba(255,255,255,0.9);
        padding: 2px;
        border-radius: 2px;
    }

    /* Highlight Current Product Row (1 Tonne) */
    .highlight-row {
        background-color: #f3e5f5; /* Light purple background */
        border-left: 3px solid var(--primary-purple);
        font-weight: bold;
        color: #000;
    }

    /* Color Code Cells */
    .cc-purple { background-color: #843fa1; color: white; }
    .cc-green { background-color: #169179; color: white; }
    .cc-yellow { background-color: #f1c40f; color: black; }
    .cc-grey { background-color: #95a5a6; color: white; }
    .cc-red { background-color: #e03e2d; color: white; }
    .cc-brown { background-color: #802a2a; color: white; }
    .cc-blue { background-color: #3598db; color: white; }
    .cc-orange { background-color: #e67e23; color: white; }

    /* --- Related Products (Grid Layout) --- */
    .related-products {
        margin-top: 50px;
        background: var(--bg-light);
        padding: 30px 20px;
        border-radius: 8px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        color: var(--text-dark);
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--primary-purple);
    }

    .product-card img {
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .product-card span {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

