
    /* GLOBAL STYLES */
    .fuji-product-detail {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
    }

    /* RTL Support for Arabic */
    .fuji-product-detail.rtl-layout {
        direction: rtl;
        text-align: right;
    }
    .fuji-product-detail.rtl-layout .advantage-card {
        border-left: none;
        border-right: 4px solid #C41230;
    }
    .fuji-product-detail.rtl-layout ul {
        padding-left: 0;
        padding-right: 20px;
    }
    .fuji-product-detail.rtl-layout .cta-link {
        display: inline-block; /* Fix for RTL link flows */
    }

    /* Headings */
    .fuji-product-detail h2 {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
        margin-top: 35px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .fuji-product-detail h2:first-of-type { margin-top: 0; }

    .fuji-product-detail h3 {
        font-size: 19px;
        font-weight: 600;
        color: #C41230; /* Fuji Red */
        margin-top: 25px;
        margin-bottom: 12px;
    }

    /* Text & Lists */
    .fuji-product-detail p { margin-bottom: 16px; text-align: justify; }
    .fuji-product-detail.rtl-layout p { text-align: justify; } /* RTL Justify */

    .fuji-product-detail ul { margin-bottom: 20px; }
    .fuji-product-detail li { margin-bottom: 10px; }

    /* Grid System */
    .advantage-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }
    .advantage-card {
        flex: 1 1 calc(50% - 20px);
        background: #f8f9fa;
        padding: 20px;
        border-left: 4px solid #C41230;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: transform 0.2s ease;
    }
    .advantage-card:hover { transform: translateY(-2px); }
    .advantage-title {
        display: block;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #000;
    }

    /* Tables */
    .table-wrapper { overflow-x: auto; margin-bottom: 25px; }
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 16px;
    }
    .spec-table td { padding: 12px 15px; border: 1px solid #e0e0e0; }
    .spec-label {
        font-weight: 700;
        background-color: #f1f1f1;
        width: 35%;
        color: #222;
    }

    /* Visuals */
    .fuji-product-detail img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* Feature Box */
    .safety-box {
        background-color: #fffbf0;
        border: 1px solid #f9e79f;
        padding: 20px;
        border-radius: 8px;
        margin: 30px 0;
    }

    /* CTA */
    .cta-box {
        background-color: #fff;
        border: 1px solid #eaeaea;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 30px;
        text-align: center;
        margin-top: 40px;
        border-radius: 8px;
    }
    .cta-link {
        color: #C41230;
        text-decoration: none;
        font-weight: 700;
        margin: 0 15px;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s;
    }
    .cta-link:hover { border-bottom-color: #C41230; }

    /* Mobile */
    @media (max-width: 768px) {
        .advantage-card { flex: 1 1 100%; }
        .fuji-product-detail { padding: 10px; }
        .spec-label { width: 45%; }
    }
