
    /* =========================================
       THEME NAME: H-LIFT NEW THEME
       VERSION: 1.3.7 (Mobile Border Fix)
       ========================================= */

    /* --- 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.stacker {
        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);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 250px;
        background-color: #fafafa;
    }

    .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. Grid Layout for Features --- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: var(--bg-light);
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .feature-card h4 {
        margin-top: 0;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    /* --- 4. Technical & Safety Blocks --- */
    .tech-block {
        background-color: #f1f8ff;
        border-left: 5px solid var(--primary-color);
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 4px;
    }

    .tech-block h3 {
        color: var(--primary-color);
        margin-top: 0;
    }

    .warning-block {
        background-color: #fff3e0;
        border-left: 5px solid #e65100;
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 4px;
    }

    .warning-block h3 {
        color: #e65100;
        margin-top: 0;
        font-size: 1.1em;
    }

    /* --- 5. 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;
        margin-top: 40px;
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        padding: 2px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        box-sizing: border-box;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
        background: #fff;
        font-size: 0.95em;
        border-right: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }

    th {
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px 8px;
        text-align: left;
        border: 1px solid #004080;
        white-space: nowrap;
        vertical-align: middle;
    }
    
    td {
        padding: 10px 8px;
        border: 1px solid #eee;
        border-right: 1px solid #dee2e6;
        text-align: left;
        color: #444;
        vertical-align: middle;
    }

    tr:nth-child(even) { background-color: #f8f9fa; }

