
    /* SCOPED CSS: Ensures no conflict with global template */
    #fuji-product-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5; /* Slightly tighter line height */
        color: #333;
        font-size: 16px;
        background-color: #fff;
        width: 100%;
    }

    /* Layout Container - Centers content max 1200px */
    #fuji-product-detail .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px 20px 20px; /* Top padding removed for compactness */
    }

    /* Typography */
    #fuji-product-detail h2 {
        font-size: 24px;
        color: #b22222; /* Fuji Brand Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 8px;
        margin-top: 30px; /* Reduced margin */
        margin-bottom: 15px; /* Reduced margin */
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-product-detail h2:first-of-type {
        margin-top: 0; /* Remove top margin for the very first title */
    }

    #fuji-product-detail h3 {
        font-size: 18px;
        color: #333;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 600;
    }

    #fuji-product-detail p {
        margin-bottom: 12px; /* Tighter paragraph spacing */
        text-align: justify;
    }

    #fuji-product-detail ul {
        margin-bottom: 12px;
        padding-left: 20px;
    }

    #fuji-product-detail li {
        margin-bottom: 6px;
    }

    #fuji-product-detail a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
    }

    /* Responsive Images - Centered and limited width */
    #fuji-product-detail img {
        max-width: 600px; /* PC Limit: prevents blurriness */
        width: 100%;      /* Mobile: full width */
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Features Grid - FIXED: Forces 2 columns on PC for symmetry */
    #fuji-product-detail .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 Columns fixed */
        gap: 20px; /* Reduced gap */
        margin-bottom: 30px;
    }

    #fuji-product-detail .feature-card {
        background: #f9f9f9;
        padding: 20px; /* Slightly more compact padding */
        border-radius: 6px;
        border: 1px solid #eee;
        transition: transform 0.2s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }

    #fuji-product-detail .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Feature Card Headings */
    #fuji-product-detail .feature-card h3 {
        display: flex;
        align-items: center;
        border-left: 4px solid #b22222;
        padding-left: 10px;
        color: #000;
    }

    /* Responsive Table Styling */
    #fuji-product-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 4px;
    }

    #fuji-product-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    #fuji-product-detail th, 
    #fuji-product-detail td {
        padding: 10px 12px; /* More compact table padding */
        border: 1px solid #ddd;
        text-align: center;
        font-size: 15px;
    }

    #fuji-product-detail th {
        background-color: #f4f4f4;
        color: #000;
        font-weight: 700;
    }

    /* FAQ Section */
    #fuji-product-detail .faq-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    #fuji-product-detail .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 4px;
        font-size: 17px;
    }

    /* Internal Linking Box */
    #fuji-product-detail .related-links {
        background-color: #f8f8f8;
        padding: 20px;
        margin-top: 30px;
        border-radius: 6px;
        border-top: 3px solid #b22222;
    }

    /* Mobile Optimization - Compact & Stacked */
    @media (max-width: 768px) {
        #fuji-product-detail .container { padding: 0 10px 15px 10px; }
        
        #fuji-product-detail h2 { 
            font-size: 20px; 
            margin-top: 20px; 
            margin-bottom: 10px; 
        }
        
        #fuji-product-detail .features-grid { 
            grid-template-columns: 1fr; /* Stack to 1 column */
            gap: 12px;
            margin-bottom: 20px;
        }
        
        #fuji-product-detail .feature-card { padding: 15px; }
        
        #fuji-product-detail img { margin: 15px auto; }
        
        #fuji-product-detail th, 
        #fuji-product-detail td { padding: 8px; font-size: 14px; }
    }
