
    /* 隐藏价格 */
    .prod_price, .price_data, .ueeshop_price, .product_price, .price_box { display: none !important; }

    /* 布局容器 - 采用您验证过的结构 */
    .fuji-arabic-hero-wrapper {
        position: relative;
        background-color: #fff;
        padding: 50px 0;
        width: 100%; /* 放弃 left:50% 写法，改用标准流 */
        box-sizing: border-box;
        direction: rtl; /* 强制 RTL */
        overflow-x: hidden; /* 防止横向滚动条 */
    }

    .fuji-arabic-container {
        width: 96%;
        max-width: 1440px;
        margin: 0 auto; /* 标准居中 */
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center; /* 容器内元素居中 */
        gap: 40px;
        font-family: 'Tahoma', 'Arial', sans-serif;
    }

    .fuji-arabic-image {
        flex: 1 1 400px;
        max-width: 600px;
        display: flex;
        justify-content: center;
    }

    .fuji-arabic-image img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        display: block;
    }

    .fuji-arabic-content {
        flex: 1 1 400px;
        min-width: 300px;
        color: #333;
        text-align: right; /* 顶部保持右对齐 */
    }

    .fuji-arabic-h2 {
        font-size: 32px;
        font-weight: 800;
        color: #000;
        margin-top: 0;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .fuji-arabic-subhead {
        font-size: 18px;
        font-weight: 700;
        color: #ba372a;
        margin-bottom: 20px;
        display: block;
        font-style: italic;
    }

    .fuji-arabic-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .fuji-arabic-list li {
        position: relative;
        padding-right: 20px; /* RTL Padding */
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
    }

    .fuji-arabic-list li::before {
        content: '•';
        position: absolute;
        right: 0; /* RTL Position */
        color: #ba372a;
        font-weight: 900;
        font-size: 18px;
    }

    .fuji-arabic-btn {
        display: inline-block;
        background-color: #f4c01e;
        color: #000;
        font-weight: 800;
        font-size: 16px;
        padding: 12px 40px;
        border-radius: 4px;
        text-decoration: none;
        text-transform: uppercase;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    @media (max-width: 900px) {
        .fuji-arabic-container { flex-direction: column; }
        .fuji-arabic-content { text-align: right; }
        .fuji-arabic-btn { display: block; width: 100%; text-align: center; }
    }
