
    /* Scoped Variables & Container Reset */
    .fuji-product-container {
        --brand-red: #b22222;
        --text-main: #333;
        --bg-light: #f9f9f9;
        --border: #eee;
        
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-main);
        font-size: 16px; /* Base font size */
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background: #fff;
    }

    /* Typography */
    .fuji-product-container h2 {
        font-size: 20px; /* Max 20px */
        color: var(--brand-red);
        border-left: 5px solid var(--brand-red);
        padding-left: 12px;
        margin: 30px 0 15px 0;
        font-weight: 700;
        text-transform: uppercase;
    }
    .fuji-product-container h3 {
        font-size: 18px;
        color: #444;
        margin: 25px 0 10px 0;
        font-weight: 600;
    }
    .fuji-product-container p {
        margin-bottom: 12px;
        text-align: justify;
    }
    .fuji-product-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .fuji-product-container li {
        margin-bottom: 8px;
    }
    .fuji-product-container a {
        color: var(--brand-red);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted var(--brand-red);
        transition: 0.3s;
    }
    .fuji-product-container a:hover {
        background-color: #fff0f0;
    }

    /* Media Handling (PC vs Mobile) */
    .fuji-product-container .media-wrap {
        text-align: center;
        margin: 25px 0;
    }
    .fuji-product-container .media-wrap img,
    .fuji-product-container img {
        max-width: 70%; /* PC: Prevent huge images */
        width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        border: 1px solid #eee;
    }

    /* Data Tables */
    .fuji-product-container .spec-table-wrap {
        overflow-x: auto;
        margin: 20px 0;
    }
    .fuji-product-container .spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 500px;
        font-size: 15px;
    }
    .fuji-product-container .spec-table th, 
    .fuji-product-container .spec-table td {
        border: 1px solid #ddd;
        padding: 10px 15px;
        text-align: left;
    }
    .fuji-product-container .spec-table th {
        background-color: var(--bg-light);
        color: var(--brand-red);
        width: 30%;
    }

    /* Highlight Features Box */
    .fuji-product-container .feature-box {
        background: var(--bg-light);
        border: 1px solid var(--border);
        padding: 15px;
        border-radius: 6px;
        margin: 20px 0;
    }

    /* Mobile Optimization */
    @media (max-width: 600px) {
        .fuji-product-container { padding: 15px; }
        .fuji-product-container .media-wrap img,
        .fuji-product-container img { max-width: 100%; } /* Mobile: Full width */
        .fuji-product-container h2 { margin: 20px 0 10px 0; font-size: 18px; }
        .fuji-product-container h3 { margin: 15px 0 8px 0; }
        .fuji-product-container p { margin-bottom: 8px; }
        .fuji-product-container .spec-table th, 
        .fuji-product-container .spec-table td { padding: 8px; }
    }
