
    /* --- RESET & BASE STYLES --- */
    .category-container {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .category-container * {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* --- TYPOGRAPHY --- */
    .page-title {
        font-family: 'Cambria', 'Georgia', serif;
        color: #003366; /* Navy Blue */
        font-size: 32px;
        margin-bottom: 20px;
        border-bottom: 3px solid #e67e23; /* Safety Orange */
        padding-bottom: 15px;
    }

    .section-title {
        font-size: 24px;
        color: #003366;
        margin-top: 50px;
        margin-bottom: 20px;
        font-weight: bold;
        border-left: 5px solid #e67e23;
        padding-left: 15px;
    }

    /* --- FEATURE GRID --- */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 20px;
        border-top: 4px solid #003366;
    }

    .feature-title {
        font-weight: bold;
        color: #003366;
        display: block;
        margin-bottom: 8px;
        font-size: 18px;
    }

    .warning-card {
        border-top-color: #d32f2f;
        background-color: #fff5f5;
    }

    .warning-text {
        color: #d32f2f;
        font-weight: bold;
    }

    /* --- TABLE STYLES --- */
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    .styled-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        background-color: #fff;
    }

    .styled-table thead tr {
        background-color: #003366;
        color: #ffffff;
        text-align: left;
    }

    .styled-table th, .styled-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #dddddd;
        font-size: 15px;
    }

    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }

    /* Tags inside tables */
    .tag {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        min-width: 60px;
    }
    .tag-25 { background-color: #f5f5f5; color: #616161; border: 1px solid #ccc; }
    .tag-35 { background-color: #e3f2fd; color: #0d47a1; border: 1px solid #90caf9; }
    .tag-50 { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
    .tag-75 { background-color: #fff3e0; color: #e65100; border: 1px solid #ffcc80; }

    /* --- PRODUCT GRID LAYOUT --- */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
        gap: 25px;
    }

    .product-item {
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        background: #fff;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-item:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-5px);
        border-color: #ccc;
    }

    .product-image-container {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .product-image-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .product-name {
        font-family: 'Cambria', sans-serif;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
        text-decoration: none;
        line-height: 1.4;
        min-height: 44px; /* Ensures alignment */
    }

    .product-specs {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        background: #f9f9f9;
        padding: 8px;
        border-radius: 4px;
    }

    /* --- OPTION 1: SAFETY ORANGE BUTTON --- */
    .view-btn {
        display: block;
        background-color: #e67e23; /* Safety Orange Base */
        color: #ffffff;
        padding: 10px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        transition: all 0.2s ease;
        border: 1px solid #e67e23;
        margin-top: auto;
    }

    .view-btn:hover {
        background-color: #003366; /* Navy Blue on Hover */
        border-color: #003366;
    }

    /* --- RESPONSIVE MEDIA QUERIES --- */
    @media screen and (max-width: 1024px) {
        .product-grid {
            grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet landscape */
        }
    }

    @media screen and (max-width: 768px) {
        .product-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet portrait */
        }
        .page-title {
            font-size: 24px;
        }
    }

    @media screen and (max-width: 480px) {
        .product-grid {
            grid-template-columns: 1fr; /* 1 column on mobile */
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
