
    /* --- URGENT FIX: HIDE ZERO PRICES --- */
    .prod_price, .price_data, .ueeshop_price, .prod_list .prod_price, .prod_box .prod_price {
        display: none !important;
    }

    /* --- Force Full Width --- */
    .fuji-hero-wrapper-breakout {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #fff;
        padding: 50px 0;
        border-bottom: none; 
    }

    .fuji-hero-container {
        width: 96%;
        max-width: 1440px; 
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center; 
        justify-content: flex-start;
        gap: 50px; 
    }

    /* --- Left Side: Image --- */
    .fuji-hero-image {
        flex: 0 0 42%; 
        max-width: 650px; 
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fuji-hero-image img {
        width: 92%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* --- Right Side: Content --- */
    .fuji-hero-content {
        flex: 1; 
        min-width: 350px; 
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
    }

    .fuji-hero-content h2 {
        font-size: 34px; 
        font-weight: 800;
        color: #000;
        margin-top: 0;
        margin-bottom: 15px;
        line-height: 1.25;
    }

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

    .fuji-hero-intro {
        font-size: 16px;
        color: #444;
        margin-bottom: 20px;
        text-align: justify;
        line-height: 1.6;
    }
    
    .fuji-hero-intro strong {
        color: #000;
        font-weight: 700;
    }

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

    .fuji-feature-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #333;
        font-size: 16px;
    }

    .fuji-feature-list li strong {
        color: #000;
        font-weight: 700;
    }

    .fuji-feature-list li::before {
        content: '•'; 
        position: absolute;
        left: 0;
        top: 0px;
        color: #ba372a; 
        font-weight: 900;
        font-size: 18px;
    }

    /* Setup Info */
    .fuji-setup-detail {
        font-size: 14px;
        color: #666;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        border-left: 4px solid #ba372a;
    }

    .fuji-setup-detail strong {
        color: #ba372a;
        text-transform: uppercase;
        font-size: 13px;
        display: block;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .fuji-setup-steps {
        font-weight: 600;
        color: #333;
    }
    
    .fuji-arrow-icon {
        color: #ba372a;
        font-weight: 900;
        margin: 0 6px;
    }

    .fuji-catalog-link {
        font-size: 15px;
        color: #555;
        margin-bottom: 25px;
        font-style: italic;
    }

    .fuji-catalog-link a {
        color: #ba372a;
        text-decoration: underline;
        font-weight: 700;
    }

    .fuji-btn-quote {
        display: inline-block;
        background-color: #f4c01e; 
        color: #000;
        font-weight: 800;
        font-size: 16px;
        padding: 14px 45px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .fuji-btn-quote:hover {
        background-color: #dcb311;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        color: #000;
    }

    /* New Scroll Link Style */
    .fuji-scroll-link {
        display: inline-block;
        margin-left: 25px;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    .fuji-scroll-link:hover {
        color: #ba372a;
    }

    @media (max-width: 900px) { 
        .fuji-hero-wrapper-breakout {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            left: 0;
            right: 0;
        }
        .fuji-hero-container {
            flex-direction: column;
            gap: 25px;
        }
        .fuji-hero-image {
            flex: 1 1 100%;
            max-width: 100%;
        }
        .fuji-hero-image img {
            width: 92%;
        }
        .fuji-hero-content {
            padding-right: 0;
            min-width: 100%;
        }
        .fuji-btn-quote {
            display: block;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 15px;
        }
        .fuji-scroll-link {
            display: block;
            margin-left: 0;
            text-align: center;
        }
    }
