{"product_id":"no-rinse-fabric-decontamination","title":"No-Rinse Fabric Decontamination","description":"\u003cstyle type=\"text\/css\"\u003e\/* Design System Variables *\/\n    .product-detail-container {\n      --primary: #0056b3;\n      --primary-hover: #004494;\n      --text-main: #1a1a1a;\n      --text-sub: #4a4a4a;\n      --bg-body: #ffffff;\n      --bg-card: #ffffff;\n      --bg-soft: #eef6ff;\n      --radius-md: 12px;\n      --radius-lg: 24px;\n      --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);\n      --shadow-lg: 0 10px 30px rgba(0, 86, 179, 0.1);\n      --border-color: #d1e3f8;\n      \n      max-width: 1200px;\n      margin: 0 auto;\n      padding: 0 5%;\n      box-sizing: border-box;\n      overflow-wrap: break-word;\n      word-break: break-word;\n      font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif;\n      color: var(--text-main);\n    }\n\n    \/* Typography Rules *\/\n    .product-detail-container h1 {\n      font-size: 22px;\n      line-height: 1.3;\n      color: var(--primary);\n      margin-bottom: 1rem;\n      font-weight: 700;\n    }\n\n    .product-detail-container h2, \n    .product-detail-container h3,\n    .product-detail-container .faq-q {\n      font-size: 20px;\n      line-height: 1.4;\n      color: var(--text-main);\n      margin-bottom: 1rem;\n      font-weight: 600;\n    }\n\n    .product-detail-container p,\n    .product-detail-container li,\n    .product-detail-container span,\n    .product-detail-container td,\n    .product-detail-container th,\n    .product-detail-container .badge,\n    .product-detail-container .tag,\n    .product-detail-container .image-placeholder {\n      font-size: 18px;\n      line-height: 1.6;\n    }\n\n    \/* Layout \u0026 Spacing *\/\n    .section-block {\n      margin-top: clamp(2rem, 5vw, 4rem);\n      margin-bottom: clamp(2rem, 5vw, 4rem);\n    }\n\n    \/* Hero Section *\/\n    .hero-section {\n      text-align: center;\n      background: linear-gradient(to bottom, var(--bg-soft), transparent);\n      padding: 2rem;\n      border-radius: var(--radius-lg);\n    }\n    \n    .hero-badge {\n      display: inline-block;\n      background-color: var(--primary);\n      color: white;\n      padding: 8px 16px;\n      border-radius: 50px;\n      font-weight: 600;\n      margin-bottom: 1.5rem;\n      letter-spacing: 0.5px;\n    }\n\n    .hero-image-wrapper {\n      margin-top: 2rem;\n    }\n\n    \/* Feature Sections *\/\n    .feature-item {\n      display: flex;\n      align-items: center;\n      gap: 3rem;\n      margin-bottom: 4rem;\n    }\n\n    .feature-media {\n      flex: 1;\n      min-width: 0;\n    }\n\n    .feature-copy {\n      flex: 1;\n      min-width: 0;\n    }\n\n    .feature-copy h3 {\n      color: var(--primary);\n    }\n\n    .feature-tags {\n      display: flex;\n      flex-wrap: wrap;\n      gap: 10px;\n      margin-top: 1.5rem;\n    }\n\n    .tag {\n      background-color: var(--bg-soft);\n      color: var(--primary);\n      padding: 6px 12px;\n      border-radius: 6px;\n      font-weight: 500;\n      border: 1px solid var(--border-color);\n    }\n\n    \/* Image Placeholders *\/\n    .image-placeholder {\n      width: 100%;\n      height: auto;\n      aspect-ratio: 4 \/ 3;\n      background-color: #f5f5f5;\n      border: 2px dashed #ccc;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      color: #666;\n      border-radius: var(--radius-md);\n      text-align: center;\n      padding: 1rem;\n      box-sizing: border-box;\n    }\n\n    \/* Specifications Table *\/\n    .spec-table {\n      width: 100%;\n      border-collapse: collapse;\n      background: var(--bg-card);\n      box-shadow: var(--shadow-sm);\n      border-radius: var(--radius-md);\n      overflow: hidden;\n    }\n\n    .spec-table tr {\n      border-bottom: 1px solid var(--border-color);\n    }\n\n    .spec-table tr:last-child {\n      border-bottom: none;\n    }\n\n    .spec-table td {\n      padding: 18px;\n      vertical-align: top;\n    }\n\n    .spec-table td:first-child {\n      font-weight: 600;\n      color: var(--primary);\n      width: 35%;\n      background-color: #fcfdff;\n    }\n\n    \/* FAQ Section *\/\n    .faq-list {\n      display: grid;\n      gap: 1.5rem;\n    }\n\n    .faq-item {\n      background: var(--bg-card);\n      border: 1px solid var(--border-color);\n      border-radius: var(--radius-md);\n      padding: 1.5rem;\n      box-shadow: var(--shadow-sm);\n    }\n\n    .faq-a {\n      color: var(--text-sub);\n      margin-top: 0.5rem;\n    }\n\n    \/* Mobile Responsive *\/\n    @media (max-width: 767px) {\n      .feature-item {\n        flex-direction: column !important; \/* Force column layout to override inline styles *\/\n        gap: 1.5rem;\n        margin-bottom: 3rem;\n      }\n      \n      \/* Force Image First on Mobile *\/\n      .feature-media {\n        order: 1;\n        width: 100%;\n      }\n      \n      .feature-copy {\n        order: 2;\n        width: 100%;\n      }\n\n      .spec-table, .spec-table tbody, .spec-table tr, .spec-table td {\n        display: block;\n        width: 100%;\n        box-sizing: border-box;\n      }\n\n      .spec-table thead {\n        display: none;\n      }\n\n      .spec-table td {\n        display: grid;\n        grid-template-columns: minmax(110px, 40%) minmax(0, 1fr);\n        gap: 14px;\n        padding: 14px 0;\n        align-items: start;\n        border-bottom: none;\n      }\n\n      .spec-table tr {\n        border-bottom: 1px solid var(--border-color);\n        padding: 10px 15px;\n      }\n\n      .spec-table td::before {\n        content: attr(data-label);\n        font-weight: 600;\n        color: var(--primary);\n        font-size: 18px;\n      }\n\n      .spec-table td:first-child {\n        background-color: transparent;\n        width: 100%;\n      }\n      \n      .spec-value {\n        display: block;\n        min-width: 0;\n        max-width: 100%;\n        overflow-wrap: anywhere;\n        word-break: break-word;\n      }\n    }\n\n    @media (max-width: 420px) {\n      .spec-table td {\n        grid-template-columns: 1fr;\n        gap: 6px;\n      }\n    }\n\u003c\/style\u003e\n\u003cdiv class=\"product-detail-container\"\u003e\n\u003c!--\n[AI Design Logic]\nProduct Type: Portable Laundry Decontamination Wipes (Shirt Cleaning Wipes)\nTarget Audience: Business professionals, travelers, commuters dealing with clothing stains on the go.\nVisual Style: Clean, Clinical, Fresh, Professional Blue \u0026 White theme.\nColor Strategy: Primary Blue (#0056b3) for trust and hygiene, Light Blue (#e6f2ff) for soft backgrounds, White for cleanliness.\nModule Order: Hero -\u003e Features (Fabric\/Formula, Packaging, Usage) -\u003e Specifications -\u003e FAQ.\nDetail Image Mapping: Hero=detail_1, Feature1=detail_2, Feature2=detail_5, Feature3=detail_8.\nSpecification Data Source: detail_2, spec_sku_list (data extraction only; no specification image placeholder is rendered).\nCompare Section: Not included (Information insufficient to build a structured comparison table without external references).\nInformation Boundary: Only information explicitly provided in the product analysis report, detail images, specification images, and the current conversation has been used. No unverified product facts have been added.\n--\u003e\n\u003cdiv class=\"product-detail-container\"\u003e\n\u003c!-- A. INTRO \/ HERO CONTENT BLOCK --\u003e\n\u003csection class=\"hero-section section-block\"\u003e\n\u003cdiv class=\"hero-badge\"\u003eLaundry Decontamination Wipes\u003c\/div\u003e\n\n\u003ch1\u003eQuick Stain Removal Anywhere\u003c\/h1\u003e\n\n\u003cp\u003eDesigned to tackle common clothing stains such as grease, coffee, sauces, and food spills instantly.\u003c\/p\u003e\n\n\u003cdiv class=\"hero-image-wrapper\"\u003e\n\u003cdiv class=\"image-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg cke-id=\"img74\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260920155551\/b37ddf803fbc04a5c33a8f68404d688f.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c!-- B. FEATURE SECTIONS --\u003e\u003c!-- Feature 1: Fabric Technology --\u003e\n\n\u003cdiv class=\"feature-item section-block\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"image-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg cke-id=\"img75\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260920150327\/a1db01e1c39ed323d8af50c8e49d0e3b.png\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch3\u003eTextured 3D Cleaning Fabric\u003c\/h3\u003e\n\n\u003cp\u003eMade with a 3D textured non-woven fabric that helps lift dirt and stains while remaining flexible and durable. The wipe provides a practical cleaning area for targeted stain treatment.\u003c\/p\u003e\n\n\u003cdiv class=\"feature-tags\"\u003e\n\u003cspan class=\"tag\"\u003e12 × 15 cm Size\u003c\/span\u003e \u003cspan class=\"tag\"\u003e3D Plastic Point Fabric\u003c\/span\u003e \u003cspan class=\"tag\"\u003eFlexible Material\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 2: Portability --\u003e\n\n\u003cdiv class=\"feature-item section-block\" style=\"flex-direction: row-reverse;\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"image-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg cke-id=\"img78\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260920172944\/04d755e89f3c0968eed2e1987756b5c3.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch3\u003eIndividually Packed \u0026amp; Portable\u003c\/h3\u003e\n\n\u003cp\u003eEach wipe comes in compact, individually sealed packaging to help keep it ready for use. Easy to carry in your bag, pocket, car, or suitcase for quick clothing cleanups at work, while dining, or during travel.\u003c\/p\u003e\n\n\u003cdiv class=\"feature-tags\"\u003e\n\u003cspan class=\"tag\"\u003eSealed Aluminum Film\u003c\/span\u003e \u003cspan class=\"tag\"\u003ePocket Size\u003c\/span\u003e \u003cspan class=\"tag\"\u003eTravel Ready\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- Feature 3: Usage \u0026 Formula --\u003e\n\n\u003cdiv class=\"feature-item section-block\"\u003e\n\u003cdiv class=\"feature-media\"\u003e\n\u003cdiv class=\"image-placeholder\"\u003e\n\u003cdiv\u003e\n\u003cdiv\u003e\u003cdiv\u003e\u003cimg cke-id=\"img79\" referrerpolicy=\"no-referrer\" src=\"https:\/\/wxalbum-10001658-file.dianxiaomi.com\/wxalbum\/1332898\/20260920172944\/26a123b2b021714faabf6639485a92d9.jpg\"\u003e\u003c\/div\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"feature-copy\"\u003e\n\u003ch3\u003eSimple Water-Free Cleaning\u003c\/h3\u003e\n\n\u003cp\u003eThe cleaning formula penetrates stains quickly, making everyday spot cleaning simple and convenient. Simply rub the stain repeatedly until wiped clean, then dry with a paper towel. No washing machine required.\u003c\/p\u003e\n\n\u003cdiv class=\"feature-tags\"\u003e\n\u003cspan class=\"tag\"\u003eNo Water Needed\u003c\/span\u003e \u003cspan class=\"tag\"\u003eEasy to Use\u003c\/span\u003e \u003cspan class=\"tag\"\u003eClean Clothes Anytime\u003c\/span\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c!-- C. SPECIFICATIONS --\u003e\n\n\u003csection class=\"specifications-section section-block\"\u003e\n\u003ch2\u003eSpecifications\u003c\/h2\u003e\n\n\u003ctable class=\"spec-table\"\u003e\n\t\u003ctbody\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Product Name\"\u003e\u003cspan class=\"spec-value\"\u003eLaundry Decontamination Wipes\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Wipe Dimensions\"\u003e\u003cspan class=\"spec-value\"\u003e12 x 15 cm (approx. 4.7 x 5.9 inches)\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Packaging\"\u003e\u003cspan class=\"spec-value\"\u003eIndividual Sealed Pack\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Box Quantity\"\u003e\u003cspan class=\"spec-value\"\u003e12 Packs per Box\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Key Ingredients\"\u003e\u003cspan class=\"spec-value\"\u003eRO Water, Surfactants, Oil Remover\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd data-label=\"Fabric Type\"\u003e\u003cspan class=\"spec-value\"\u003e3D Textured Non-Woven Fabric\u003c\/span\u003e\u003c\/td\u003e\n\t\t\u003c\/tr\u003e\n\t\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/section\u003e\n\u003c!-- D. FAQ --\u003e\n\n\u003csection class=\"faq-section section-block\"\u003e\n\u003ch2\u003eFrequently Asked Questions\u003c\/h2\u003e\n\n\u003cdiv class=\"faq-list\"\u003e\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eWhat types of stains can these wipes remove?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-a\"\u003eThese wipes are designed to handle common clothing stains including oil stains, ketchup, coffee, barbecue sauce, blood, and curry.\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eHow do I use the wipe effectively?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-a\"\u003ePlace a paper towel on the back of the garment under the stain. Rub the stain repeatedly with the wet wipe until it is wiped clean. Finally, wipe the newly cleaned part with a paper towel to absorb moisture.\u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cdiv class=\"faq-item\"\u003e\n\u003cdiv class=\"faq-q\"\u003eDo I need water to use this product?\u003c\/div\u003e\n\n\u003cdiv class=\"faq-a\"\u003eNo, the wipes feature a wash-free formula using RO water and surfactants, allowing you to clean clothes anytime and anywhere without needing a sink or laundry machine.\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/section\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n","brand":"Bak","offers":[{"title":"1 Box (12Pcs)","offer_id":47513417810111,"sku":null,"price":19.99,"currency_code":"USD","in_stock":true},{"title":"2 Boxes (24 Pcs)","offer_id":47513417842879,"sku":null,"price":19.99,"currency_code":"USD","in_stock":true},{"title":"3 Boxes (36 Pcs)","offer_id":47513417875647,"sku":null,"price":19.99,"currency_code":"USD","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0701\/3220\/3711\/files\/b37ddf803fbc04a5c33a8f68404d688f.jpg?v=1789891046","url":"https:\/\/ggkbkw-fz.myshopify.com\/products\/no-rinse-fabric-decontamination","provider":"Bak","version":"1.0","type":"link"}