
    /* SCOPED CSS: FUJI KIREMONO - Fixed & Stable Version */
    #fuji-kiremono-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Container alignment */
    #fuji-kiremono-detail .fuji-container {
        width: 100%;
        margin: 0;
        padding: 0; /* Remove top padding */
    }

    /* Typography */
    #fuji-kiremono-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #ba372a; /* Fuji Red */
        padding-bottom: 8px;
        margin-top: 35px;
        margin-bottom: 20px;
        text-transform: uppercase;
        text-align: left;
        font-weight: 700;
    }

    /* KEY FIX: Remove margin only for the very first H2 to eliminate top gap */
    #fuji-kiremono-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-kiremono-detail h3 {
        font-size: 18px;
        color: #ba372a;
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: left;
        font-weight: 700;
    }

    #fuji-kiremono-detail p {
        margin-bottom: 15px;
        text-align: left;
        max-width: 100%;
    }

    #fuji-kiremono-detail ul {
        margin-bottom: 20px;
        padding-left: 20px;
        text-align: left;
    }

    #fuji-kiremono-detail li {
        margin-bottom: 8px;
    }

    /* Links / Buttons */
    #fuji-kiremono-detail a.fuji-btn {
        display: inline-block;
        background-color: #ba372a;
        color: #fff;
        padding: 12px 30px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 15px;
        text-align: center;
    }

    #fuji-kiremono-detail a {
        color: #ba372a;
        text-decoration: underline;
    }

    /* IMAGE STYLING */
    #fuji-kiremono-detail .img-wrapper {
        margin: 25px 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #fuji-kiremono-detail img {
        max-width: 600px;
        width: 100%;
        height: auto;
        display: inline-block;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    /* VIDEO WRAPPER - SIMPLE & STABLE */
    #fuji-kiremono-detail .video-simple-container {
        width: 100%;
        max-width: 800px;
        margin: 30px auto; /* Centers the container */
        text-align: center;
        background: #000;
        border-radius: 6px;
        overflow: hidden;
    }
    
    #fuji-kiremono-detail .video-simple-container iframe {
        width: 100%;
        height: 450px; /* Fixed height ensures visibility on PC */
        border: none;
    }

    /* SPEC TABLE */
    #fuji-kiremono-detail .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
        font-size: 15px;
    }

    #fuji-kiremono-detail .spec-table th, 
    #fuji-kiremono-detail .spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    #fuji-kiremono-detail .spec-table th {
        background-color: #fcfcfc;
        font-weight: bold;
        width: 30%;
        color: #ba372a;
        min-width: 120px;
    }

    /* FAQ STYLING */
    #fuji-kiremono-detail .faq-item {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-left: 4px solid #ba372a;
        padding: 10px 15px;
        margin-bottom: 10px;
        border-radius: 4px;
        text-align: left;
    }

    #fuji-kiremono-detail .faq-question {
        font-weight: bold;
        color: #ba372a;
        display: block;
        margin-bottom: 4px;
        font-size: 16px;
    }

    #fuji-kiremono-detail .faq-item p {
        margin-bottom: 0;
    }

    /* DIVIDER */
    #fuji-kiremono-detail hr {
        border: 0;
        height: 1px;
        background: #eee;
        margin: 40px 0;
    }
    
    /* CTA BOX */
    #fuji-kiremono-detail .cta-box {
        background-color: #fcfcfc; 
        padding: 30px; 
        border-radius: 4px; 
        margin-top: 40px; 
        border: 1px dashed #ddd; 
        text-align: center !important;
    }
    
    #fuji-kiremono-detail .cta-box h3,
    #fuji-kiremono-detail .cta-box p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 768px) {
        #fuji-kiremono-detail h2 { font-size: 20px; } /* Adjusted for mobile readability */
        #fuji-kiremono-detail .spec-table th, 
        #fuji-kiremono-detail .spec-table td { padding: 8px; font-size: 14px; }
        #fuji-kiremono-detail img { max-width: 100%; }
        
        /* Adjust video height for mobile */
        #fuji-kiremono-detail .video-simple-container iframe {
            height: 250px; 
        }
    }
