
    /* SCOPED CSS for FUJI TS-125FR Product Page */
    .fuji-product-container {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #d32f2f; /* Fuji Red */
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }
    .fuji-product-container h2:first-of-type { margin-top: 0; }
    
    .fuji-product-container h3 {
        font-size: 18px;
        color: #444;
        margin-top: 0; /* Adjusted for box layout */
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* Text */
    .fuji-product-container p, .fuji-product-container li {
        margin-bottom: 10px;
    }

    /* Images */
    .fuji-product-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }

    /* Feature Grid - 2x2 Matrix (田字格) */
    .fuji-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
        gap: 20px;
        margin-bottom: 30px;
    }

    .fuji-feature-item {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        border-left: 4px solid #d32f2f;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Slight shadow for depth */
        height: 100%; /* Ensure equal height */
        box-sizing: border-box;
    }

    /* Responsive Table */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
    }
    
    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
        font-size: 15px;
    }
    
    .fuji-spec-table th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* Cross Sell Section */
    .fuji-cross-sell {
        background-color: #f0f4f8;
        padding: 20px;
        border-radius: 5px;
        margin-top: 40px;
    }
    .fuji-cross-sell ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
        padding-left: 20px;
    }

    /* FAQ Section */
    .fuji-faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .fuji-faq-question {
        font-weight: 700;
        color: #d32f2f;
        display: block;
        margin-bottom: 5px;
    }

    /* Links */
    .fuji-product-container a {
        color: #d32f2f;
        text-decoration: underline;
    }

    /* Highlights */
    .fuji-highlight {
        font-weight: bold;
        color: #000;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-feature-grid {
            grid-template-columns: 1fr; /* 1 column on mobile */
        }
        .fuji-product-container {
            padding: 15px;
        }
    }
