
    /* =========================================
       THEME NAME: H-LIFT NEW THEME
       VERSION: 1.3 (Fixed Tag Colors & Spec)
       ========================================= */

    /* --- Global Variables & Base Styles --- */
    :root {
        --primary-color: #003366; /* H-Lift Navy Blue */
        --accent-color: #e67e23;  /* Safety Orange */
        --bg-light: #f8f9fa;
        --border-color: #dee2e6;
        --text-dark: #212529;
        --text-light: #6c757d;
        --std-font-size: 16px;    /* Standardized Typography */
    }

    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;
        font-size: var(--std-font-size);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- 1. Header Section --- */
    .product-header {
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .product-header h1 {
        font-size: 2em;
        color: var(--primary-color);
        margin: 0 0 10px 0;
    }

    .subtitle {
        font-size: 1.125em;
        color: var(--text-light);
        font-weight: 500;
    }

    /* Badges */
    .badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .badge {
        background: var(--bg-light);
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 0.875em;
        font-weight: 700;
    }
    
    .badge.highlight {
        background: var(--primary-color);
        color: #fff;
    }
    
    .badge.iso {
        background: #fff3e0;
        color: #e65100;
        border-color: #ffe0b2;
    }

    /* --- 2. Product Overview --- */
    .product-overview {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
        align-items: start;
    }

    @media (min-width: 768px) {
        .product-overview {
            grid-template-columns: 1fr 1.5fr;
        }
    }

    .product-image-box {
        border: 1px solid var(--border-color);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .product-image-box img {
        max-width: 100%;
        height: auto;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: var(--std-font-size);
    }

    .features-list li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
    }

    .features-list li::before {
        content: "✔";
        color: var(--accent-color);
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
    }

    .features-list strong {
        color: var(--primary-color);
    }

    /* --- 3. Table Styles --- */
    .section-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        border-left: 6px solid var(--accent-color);
        padding-left: 15px;
        background: var(--bg-light);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
        background: #fff;
        font-size: var(--std-font-size);
    }

    th {
        background-color: var(--primary-color);
        color: #fff;
        padding: 14px 12px;
        text-align: center;
        border: 1px solid #004080;
        white-space: nowrap;
        vertical-align: middle;
    }

    td {
        padding: 12px;
        border: 1px solid #eee;
        text-align: center;
        color: #444;
        vertical-align: middle;
    }

    tr:nth-child(even) { background-color: #f8f9fa; }
    
    /* Guide Table Specifics */
    .guide-container {
        margin-top: 30px;
        margin-bottom: 30px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        overflow: hidden;
    }

    .guide-header {
        background-color: var(--primary-color);
        color: #ffffff;
        padding: 15px 20px;
        font-size: 1.25em;
        font-weight: bold;
        text-align: center;
        border-bottom: 3px solid var(--accent-color);
    }

    .guide-table {
        width: 100%;
        border-collapse: collapse;
        font-size: var(--std-font-size);
        background-color: #fff;
        min-width: 600px;
    }

    .guide-table th {
        background-color: #f4f7f6;
        color: #333;
        font-weight: 600;
        text-align: center;
        padding: 15px;
        border: none;
        border-bottom: 2px solid #ddd;
    }

    .guide-table td {
        padding: 15px;
        border: none;
        border-bottom: 1px solid #eee;
        color: #555;
        vertical-align: middle;
        text-align: center;
    }

    /* --- FIXED TAG STYLES --- */
    .tag {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.85em;
        font-weight: bold;
        white-space: nowrap;
        margin-bottom: 4px;
    }
    
    /* Installation Tags */
    .tag-req { 
        background-color: #ffebee !important; 
        color: #c62828 !important; 
        border: 1px solid #ffcdd2;
    } /* Red - Requirement */
    
    .tag-info { 
        background-color: #e3f2fd !important; 
        color: #0d47a1 !important; 
        border: 1px solid #bbdefb;
    } /* Blue - Info */

