
    /* SCOPED CSS FOR PRODUCT DETAIL - RESPONSIVE & SEO FRIENDLY */
    #fuji-product-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 0; /* Remove top padding */
    }

    /* TYPOGRAPHY */
    #fuji-product-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #d32f2f; /* Fuji Red Accent */
        padding-bottom: 8px;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* SPECIFIC FIX: Remove margin from the very first heading to close the gap */
    #fuji-product-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-product-detail h3 {
        font-size: 18px;
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    #fuji-product-detail p {
        margin-bottom: 15px;
    }

    /* RESPONSIVE IMAGES */
    #fuji-product-detail img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }

    /* LIST STYLES */
    #fuji-product-detail ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    #fuji-product-detail li {
        margin-bottom: 8px;
    }

    /* SEO DATA TABLE */
    #fuji-product-detail .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }

    #fuji-product-detail .spec-table th, 
    #fuji-product-detail .spec-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: center;
    }

    #fuji-product-detail .spec-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }

    /* FAQ SECTION */
    #fuji-product-detail .faq-item {
        background-color: #f9f9f9;
        border-left: 4px solid #d32f2f;
        padding: 15px;
        margin-bottom: 15px;
    }

    #fuji-product-detail .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }

    /* CALL TO ACTION BUTTONS */
    #fuji-product-detail .cta-link {
        color: #d32f2f;
        font-weight: bold;
        text-decoration: underline;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 768px) {
        #fuji-product-detail .spec-table {
            display: block;
            overflow-x: auto;
        }
        #fuji-product-detail h2 {
            font-size: 18px;
        }
    }
