{"product_id":"💖x2-brasier","title":"💖X2 BRASIER BRALETTE✨Olvídate del dolor y las marcas de las incomodas varillas","description":"\u003cstyle\u003e\n  .product__title{\n    display: none !important;\n  }\n  \n  .mas-vendido-01 {\n    display: none !important;\n  }\n\n  .stock-info{\n    display: none !important;\n  }\n\n  .envio-garantia {\n    display: none !important;\n  }\n  .stock-limitado{\n    display: none !important;\n  }\n  \n  .price  {\n    display: none !important;\n  }\n  \n  .product__modal-opener  {\n    display: none !important;\n}\n  \n  \n  .mas-vendido {\n    color: #ebebeb !important;\n  }\n\n  .raiting-perso {\n    color: #ebebeb !important;\n  }\n\n  \n  img {\n    border-radius: 0px !important;\n    width: 100vw;\n  }\n\n\u003c\/style\u003e\n\n\u003cstyle\u003e\n  \/* Ocultar secciones por defecto *\/\n  .tiktok-bot-content,\n  .normal-visitor-content {\n    display: none;\n  }\n\n  \/* Mostrar contenido según el tipo de visitante *\/\n  body.is-tiktok-bot .tiktok-bot-content {\n    display: block !important;\n  }\n\n  body.is-normal-visitor .normal-visitor-content {\n    display: block !important;\n  }\n\n  \/* Ocultar image-carousel-wrapper solo para bots *\/\n  body.is-tiktok-bot .image-carousel-wrapper {\n    display: none !important;\n\n  }\n\n  \/* Asegurar que se muestre para visitantes normales *\/\n  body.is-normal-visitor .image-carousel-wrapper {\n    display: block !important;\n  }\n\n  \/* Ocultar custom-product-title solo para bots *\/\n  body.is-tiktok-bot .custom-product-title {\n    display: none !important;\n  }\n\n  \/* Asegurar que se muestre para visitantes normales *\/\n  body.is-normal-visitor .custom-product-title {\n    display: block !important;\n  }\n\u003c\/style\u003e\n\n\u003cscript\u003e\n  (function () {\n    \/**\n     * Detecta si el visitante es un bot de TikTok usando múltiples señales\n     * @returns {Object} Objeto con información detallada de la detección\n     *\/\n    function detectTikTokBot() {\n      try {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const referrer = document.referrer.toLowerCase();\n        const urlParams = new URLSearchParams(window.location.search);\n\n        \/\/ Sistema de scoring para mayor precisión\n        let botScore = 0;\n        let detectionSignals = [];\n\n        \/\/ Patrones de bots de TikTok (más completos)\n        const tiktokBotPatterns = [\n          \"bytespider\",\n          \"tiktok\",\n          \"bytedance\",\n          \"musical_ly\",\n          \"ttbot\",\n          \"toutiaospider\",\n          \"bytebot\",\n          \"spider\",\n        ];\n\n        \/\/ 1. Verificar User Agent (peso: 3 puntos)\n        const isBotUserAgent = tiktokBotPatterns.some((pattern) =\u003e\n          userAgent.includes(pattern)\n        );\n        if (isBotUserAgent) {\n          botScore += 3;\n          detectionSignals.push({\n            type: \"user_agent\",\n            value: navigator.userAgent,\n            weight: 3,\n          });\n        }\n\n        \/\/ 2. Verificar Referrer de TikTok (peso: 2 puntos)\n        const isTikTokReferrer =\n          referrer.includes(\"tiktok.com\") ||\n          referrer.includes(\"bytedance.com\") ||\n          referrer.includes(\"musical.ly\");\n        if (isTikTokReferrer \u0026\u0026 !isBotUserAgent) {\n          \/\/ Solo cuenta si NO es User Agent bot (para evitar doble conteo)\n          botScore += 2;\n          detectionSignals.push({\n            type: \"referrer\",\n            value: document.referrer,\n            weight: 2,\n          });\n        }\n\n        \/\/ 3. Verificar parámetros de URL de TikTok Ads (peso: 1 punto)\n        const tiktokUrlParams = [\"ttclid\", \"tt_content\", \"tt_medium\", \"tt_source\"];\n        const hasTikTokParams = tiktokUrlParams.some((param) =\u003e\n          urlParams.has(param)\n        );\n        if (hasTikTokParams) {\n          botScore += 1;\n          const foundParams = tiktokUrlParams.filter((param) =\u003e\n            urlParams.has(param)\n          );\n          detectionSignals.push({\n            type: \"url_params\",\n            value: foundParams.join(\", \"),\n            weight: 1,\n          });\n        }\n\n        \/\/ 4. Validación de navegador real (reduce falsos positivos)\n        \/\/ Los bots suelen tener características limitadas\n        const hasRealBrowserFeatures =\n          typeof window !== \"undefined\" \u0026\u0026\n          typeof document !== \"undefined\" \u0026\u0026\n          typeof navigator !== \"undefined\" \u0026\u0026\n          typeof navigator.userAgent !== \"undefined\" \u0026\u0026\n          typeof document.createElement !== \"undefined\";\n\n        \/\/ Verificar características avanzadas del navegador\n        const hasAdvancedFeatures =\n          typeof window.localStorage !== \"undefined\" ||\n          typeof window.sessionStorage !== \"undefined\" ||\n          typeof WebSocket !== \"undefined\" ||\n          typeof CanvasRenderingContext2D !== \"undefined\";\n\n        \/\/ Si NO tiene características de navegador real y tiene señales de bot\n        if (!hasRealBrowserFeatures || (!hasAdvancedFeatures \u0026\u0026 botScore \u003e 0)) {\n          botScore += 1;\n          detectionSignals.push({\n            type: \"limited_browser_features\",\n            value: \"Navegador limitado detectado\",\n            weight: 1,\n          });\n        }\n\n        \/\/ 5. Verificar si el User Agent es sospechosamente corto o genérico\n        const userAgentLength = navigator.userAgent.length;\n        if (userAgentLength \u003c 20 \u0026\u0026 botScore \u003e 0) {\n          botScore += 1;\n          detectionSignals.push({\n            type: \"short_user_agent\",\n            value: `Longitud: ${userAgentLength} caracteres`,\n            weight: 1,\n          });\n        }\n\n        \/\/ 6. Verificar headers HTTP adicionales (si están disponibles)\n        \/\/ Algunos bots no envían ciertos headers estándar\n\n        \/\/ Umbral de decisión: 3 o más puntos = bot\n        const isBot = botScore \u003e= 3;\n        const confidence = Math.min(100, (botScore \/ 7) * 100);\n\n        return {\n          isBot: isBot,\n          botScore: botScore,\n          confidence: confidence.toFixed(1),\n          signals: detectionSignals,\n          userAgent: navigator.userAgent,\n          referrer: document.referrer,\n          urlParams: Object.fromEntries(urlParams),\n        };\n      } catch (error) {\n        console.error(\"❌ Error en detección de bot:\", error);\n        \/\/ En caso de error, asumir visitante normal por defecto\n        return {\n          isBot: false,\n          botScore: 0,\n          confidence: \"0.0\",\n          signals: [],\n          error: error.message,\n        };\n      }\n    }\n\n    \/**\n     * Aplica las clases CSS según el tipo de visitante\n     *\/\n    function applyVisitorClasses(isBot) {\n      try {\n        if (isBot) {\n          document.body.classList.add(\"is-tiktok-bot\");\n          document.body.classList.remove(\"is-normal-visitor\");\n          console.log(\"🤖 Bot de TikTok detectado - Mostrando contenido para bot\");\n        } else {\n          document.body.classList.add(\"is-normal-visitor\");\n          document.body.classList.remove(\"is-tiktok-bot\");\n\ndocument.getElementsByClassName(\"product__title\")[0].classList.remove(\"product__title\");\n    document.getElementsByClassName(\"mas-vendido-01\")[0].classList.remove(\"mas-vendido-01\");\n    document.getElementsByClassName(\"stock-info\")[0].classList.remove(\"stock-info\");\n    document.getElementsByClassName(\"envio-garantia\")[0].classList.remove(\"envio-garantia\");\n    document.getElementsByClassName(\"stock-limitado\")[0].classList.remove(\"stock-limitado\");\n\ndocument.getElementsByClassName(\"price\")[0].style.setProperty(\"display\", \"block\", \"important\");\n    document.getElementsByClassName(\"product__modal-opener\")[0].classList.remove(\"product__modal-opener\");\n\n\n          console.log(\"👤 Visitante normal detectado - Mostrando contenido normal\");\n        }\n      } catch (error) {\n        console.error(\"❌ Error al aplicar clases CSS:\", error);\n      }\n    }\n\n    \/\/ Ejecutar detección cuando el DOM esté listo\n    if (document.readyState === \"loading\") {\n      document.addEventListener(\"DOMContentLoaded\", function () {\n        runDetection();\n      });\n    } else {\n      \/\/ DOM ya está listo\n      runDetection();\n    }\n\n    function runDetection() {\n      console.log(\"🔍 Iniciando detección de bot de TikTok...\");\n\n      const detectionResult = detectTikTokBot();\n\n      \/\/ Mostrar información detallada en consola\n      console.group(\"🔍 Resultados de Detección\");\n      console.log(\"Es Bot:\", detectionResult.isBot ? \"✅ SÍ\" : \"❌ NO\");\n      console.log(\"Puntuación:\", detectionResult.botScore + \"\/7\");\n      console.log(\"Confianza:\", detectionResult.confidence + \"%\");\n      console.log(\"Señales detectadas:\", detectionResult.signals.length);\n      if (detectionResult.signals.length \u003e 0) {\n        console.table(detectionResult.signals);\n      }\n      if (detectionResult.error) {\n        console.error(\"Error:\", detectionResult.error);\n      }\n      console.groupEnd();\n\n      \/\/ Aplicar clases CSS\n      applyVisitorClasses(detectionResult.isBot);\n\n    }\n  })();\n\u003c\/script\u003e\n\n\u003cscript\u003e\n  \/\/ Función para cambiar manualmente a vista normal\n  function switchToNormalView() {\n    \/\/ Remover clase de bot\n    document.body.classList.remove('is-tiktok-bot');\n    \/\/ Agregar clase de visitante normal\n    document.body.classList.add('is-normal-visitor');\n    \n\n    document.getElementsByClassName(\"product__title\")[0].classList.remove(\"product__title\");\n    document.getElementsByClassName(\"mas-vendido-01\")[0].classList.remove(\"mas-vendido-01\");\n    document.getElementsByClassName(\"stock-info\")[0].classList.remove(\"stock-info\");\n    document.getElementsByClassName(\"envio-garantia\")[0].classList.remove(\"envio-garantia\");\n    document.getElementsByClassName(\"stock-limitado\")[0].classList.remove(\"stock-limitado\");\n\ndocument.getElementsByClassName(\"price\")[0].style.setProperty(\"display\", \"block\", \"important\");\n    document.getElementsByClassName(\"product__modal-opener\")[0].classList.remove(\"product__modal-opener\");\n\n\n\n\n\n    \/\/ Log para debugging\n    console.log('👁️ Vista cambiada manualmente a visitante normal');\n  }\n\n  \/\/ Esperar a que el DOM cargue para agregar el event listener\n  document.addEventListener('DOMContentLoaded', function() {\n    const switchBtn = document.getElementById('switch-to-normal-view');\n    if (switchBtn) {\n      switchBtn.addEventListener('click', switchToNormalView);\n      \n      \/\/ Efecto hover minimalista premium\n      switchBtn.addEventListener('mouseenter', function() {\n        this.style.background = 'linear-gradient(135deg, #2a2a2a 0%, #1d1d1d 100%)';\n        this.style.borderColor = '#d4d4d4';\n        this.style.boxShadow = '0 4px 16px rgba(184, 184, 184, 0.25)';\n        this.style.transform = 'translateY(-1px)';\n      });\n      \n      switchBtn.addEventListener('mouseleave', function() {\n        this.style.background = 'linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%)';\n        this.style.borderColor = '#b8b8b8';\n        this.style.boxShadow = '0 2px 12px rgba(184, 184, 184, 0.15)';\n        this.style.transform = 'translateY(0)';\n      });\n    }\n  });\n\u003c\/script\u003e\n\n\u003cdiv style=\"margin: 0px\"\u003e\n  \u003cdiv class=\"tiktok-bot-content\"\u003e\n    \u003cdiv class=\"product-bot-section\"\u003e\n\n      \u003cimg alt=\"\" src=\"https:\/\/aeis00-yq.myshopify.com\/cdn\/shop\/files\/cotenidooculto.webp\"\u003e\n\n      \u003c!-- Botón para cambiar a vista normal --\u003e\n      \u003cdiv style=\"display: flex; justify-content: center; align-items: center; padding: 16px 20px;\"\u003e\n        \u003cbutton id=\"switch-to-normal-view\" style=\"\n          background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);\n          color: #ffffff;\n          border: 2.5px solid #b8b8b8;\n          padding: 20px 48px;\n          border-radius: 6px;\n          font-weight: 600;\n          font-size: 20px;\n          letter-spacing: 0.3px;\n          cursor: pointer;\n          box-shadow: 0 2px 12px rgba(184, 184, 184, 0.15);\n          transition: all 0.2s ease;\n          text-align: center;\n          font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n        \"\u003e\n\t\tVER CONTENIDO COMPLETO\n        \u003c\/button\u003e\n      \u003c\/div\u003e\n\n      \u003cimg alt=\"\" src=\"\"\u003e\n\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n  \u003cdiv class=\"normal-visitor-content\"\u003e\n    \u003cdiv class=\"product-normal-section\"\u003e\n\n\n\n\n\n\n\n\n\n\n\n\u003ch4 style=\"text-align: center;\"\u003e\u003cstrong\u003e\u003cspan\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0870\/3993\/4778\/files\/a2i4pwvr.png?v=1740020785\" alt=\"\"\u003e\u003c\/span\u003e\u003c\/strong\u003e\u003c\/h4\u003e\n\u003ch4 style=\"text-align: center;\"\u003e\u003cstrong\u003e\u003cspan\u003e💖BRASIER ERGONOMICO, Olvídate del dolor y las marcas.🥰\u003c\/span\u003e\u003c\/strong\u003e\u003c\/h4\u003e\n\u003cdiv style=\"text-align: left;\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0934\/3100\/5471\/files\/VIDEO_REALSE.mp4.gif?v=1758833814\" alt=\"\" width=\"573\" height=\"573\"\u003e\u003c\/div\u003e\n\u003ch4 style=\"text-align: center;\"\u003e\n\u003cstrong\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/strong\u003e\u003cspan\u003e💖Comodidad Absoluta, Estilo Impecable!\u003c\/span\u003e\n\u003c\/h4\u003e\n\u003cp style=\"text-align: center;\" data-end=\"373\" data-start=\"203\"\u003e\u003cspan\u003e🌸Descubre el brasier que se adapta a ti. Sin aros, sin costuras incómodas y con soporte perfecto para todo el día.🥰\u003c\/span\u003e\u003c\/p\u003e\n\u003cp style=\"text-align: center;\" data-end=\"373\" data-start=\"203\"\u003e\u003cspan\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0934\/3100\/5471\/files\/disenosintimos-_ropa_interior_femenina-_ropa_intima_-_brasieres_anchos-VS_1.png?v=1758831950\" alt=\"\" width=\"607\" height=\"608\"\u003e\u003c\/span\u003e\u003cspan\u003e\u003cstrong\u003eMoldea De Forma Natural🍃 \u003c\/strong\u003e\u003c\/span\u003e\u003cspan\u003e\u003cstrong\u003eRealza tu busto🥳 \u003c\/strong\u003e\u003c\/span\u003e\u003cspan\u003e\u003cstrong\u003eProducto \u003c\/strong\u003e\u003cstrong\u003e💯Original💃\u003c\/strong\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003ch2\u003e\u003cspan\u003e\u003cstrong\u003e\u003cimg height=\"579\" width=\"579\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0870\/3993\/4778\/files\/nn.webp?v=1725894617\"\u003e\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h2\u003e\n\u003ch2 style=\"text-align: center;\"\u003e\u003cspan\u003e\u003cstrong\u003eCOMENTARIOS DE NUESTRAS CLIENTAS ⭐⭐⭐⭐⭐\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h2\u003e\n\u003cdiv\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0870\/3993\/4778\/files\/COMENTARIOSSSS.webp?v=1725895624\" alt=\"\"\u003e\u003c\/div\u003e\n\u003ch4 style=\"text-align: center;\"\u003e\n\u003cspan\u003e💖 \u003cstrong\u003eEncuentra Tu A \u003c\/strong\u003e\u003cstrong\u003ejuste PERFECTO y Destaca Tu Belleza Con Nuestro SUJETADOR \u003c\/strong\u003e\u003c\/span\u003e\u003cspan\u003e\u003cstrong\u003eDiseñado Para \u003c\/strong\u003e\u003cstrong\u003eTI \u003c\/strong\u003e\u003cstrong\u003e💫\u003c\/strong\u003e\u003c\/span\u003e\n\u003c\/h4\u003e\n\u003cp style=\"text-align: center;\"\u003e\u003cspan\u003e\u003cstrong\u003e\u003cimg height=\"645\" width=\"584\" src=\"https:\/\/q0.itc.cn\/q_70\/images03\/20241006\/bb8cdc14f5274606841c31b23c5072a7.gif\"\u003e\u003c\/strong\u003e\u003c\/span\u003e\u003cstrong\u003e\u003cspan\u003e✅ CARACTERÍSTICAS:\u003c\/span\u003e\u003c\/strong\u003e\u003c\/p\u003e\n\u003ch4 style=\"text-align: center;\" data-start=\"148\" data-end=\"228\"\u003e\n\u003cstrong data-start=\"148\" data-end=\"173\"\u003e\u003cspan\u003e🌸Sin aros ni varillas:\u003c\/span\u003e\u003c\/strong\u003e\u003cbr data-start=\"173\" data-end=\"176\"\u003e\u003cstrong\u003e\u003cspan\u003eBrinda máxima comodidad sin molestias ni presión. \u003c\/span\u003e\u003c\/strong\u003e\n\u003c\/h4\u003e\n\u003ch2\u003e\u003cspan\u003e\u003cstrong\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0870\/3993\/4778\/files\/1_1.webp?v=1725894832\" alt=\"\"\u003e\u003c\/strong\u003e\u003c\/span\u003e\u003c\/h2\u003e\n\u003cp style=\"text-align: center;\"\u003e\u003cstrong\u003e\u003cspan\u003e\u003c\/span\u003e\u003c\/strong\u003e\u003cstrong data-start=\"649\" data-end=\"685\"\u003e\u003cspan\u003e🌸Material transpirable y liviano:\u003c\/span\u003e\u003c\/strong\u003e\u003cbr data-start=\"685\" data-end=\"688\"\u003e\u003cstrong\u003e\u003cspan\u003ePerfecto para climas cálidos o largas jornadas, evita la acumulación de sudor.\u003c\/span\u003e\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp style=\"text-align: center;\"\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0934\/3100\/5471\/files\/unnamed.jpg?v=1758834016\" alt=\"\" width=\"585\" height=\"735\"\u003e\u003c\/p\u003e\n\u003ch4 style=\"text-align: center;\" data-start=\"453\" data-end=\"540\"\u003e\n\u003cstrong data-start=\"453\" data-end=\"473\"\u003e\u003cspan\u003e🌸Copas moldeadas:\u003c\/span\u003e\u003c\/strong\u003e\u003cbr data-start=\"473\" data-end=\"476\"\u003e\u003cstrong\u003e\u003cspan\u003eRealzan la forma natural del busto con discreción y suavidad.\u003c\/span\u003e\u003c\/strong\u003e\n\u003c\/h4\u003e\n\u003cp\u003e\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0679\/6630\/4454\/files\/17_d39cff43-40d8-4f0a-a7dc-61a1e42bb08b.translated.jpg?v=1754348892\"\u003e\u003c\/p\u003e\n\u003ch4 style=\"text-align: center;\" data-start=\"545\" data-end=\"644\"\u003e\n\u003cstrong data-start=\"545\" data-end=\"578\"\u003e\u003cspan\u003e🌸Diseño de cobertura completa:\u003c\/span\u003e\u003c\/strong\u003e\u003cbr data-start=\"578\" data-end=\"581\"\u003e\u003cstrong\u003e\u003cspan\u003eCubre completamente el busto, brindando seguridad y firmeza.\u003c\/span\u003e\u003c\/strong\u003e\n\u003c\/h4\u003e\n\u003cp\u003e\u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0934\/3100\/5471\/files\/rlTY9hdigkdHQmC5ISq9R71WLU-h28ezIcMw718-_NDDh_3NufSK4qtu79KzgWMgpv3ZOSYhXgYAan7szq8DRXDzVZlhUP1rZ0Y_w500.gif?v=1758834093\" alt=\"\" width=\"578\" height=\"578\"\u003e\u003c\/p\u003e\n\n\n\n\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003c\/div\u003e","brand":"Zeven 2.0","offers":[{"title":"32 \/ Beige","offer_id":51588024959263,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"32 \/ Blanco","offer_id":51588024992031,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"32 \/ Rosa","offer_id":51588025024799,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"32 \/ Rojo","offer_id":51588025057567,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"32 \/ Negro","offer_id":51588025090335,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"32 \/ azul claro","offer_id":51588025123103,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ Beige","offer_id":51588025155871,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ Blanco","offer_id":51588025188639,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ Rosa","offer_id":51588025221407,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ Rojo","offer_id":51588025254175,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ Negro","offer_id":51588025286943,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"34 \/ azul claro","offer_id":51588025319711,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ Beige","offer_id":51588025352479,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ Blanco","offer_id":51588025385247,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ Rosa","offer_id":51588025418015,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ Rojo","offer_id":51588025450783,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ Negro","offer_id":51588025483551,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"36 \/ azul claro","offer_id":51588025516319,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ Beige","offer_id":51588025549087,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ Blanco","offer_id":51588025581855,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ Rosa","offer_id":51588025614623,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ Rojo","offer_id":51588025647391,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ Negro","offer_id":51588025680159,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"38 \/ azul claro","offer_id":51588025712927,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ Beige","offer_id":51588025745695,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ Blanco","offer_id":51588025778463,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ Rosa","offer_id":51588025811231,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ Rojo","offer_id":51588025843999,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ Negro","offer_id":51588025876767,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"40 \/ azul claro","offer_id":51588025909535,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ Beige","offer_id":51588025942303,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ Blanco","offer_id":51588025975071,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ Rosa","offer_id":51588026007839,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ Rojo","offer_id":51588026040607,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ Negro","offer_id":51588026073375,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true},{"title":"42 \/ azul claro","offer_id":51588026106143,"sku":null,"price":68000.0,"currency_code":"COP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0934\/3100\/5471\/files\/Gemini_Generated_Image_ix38geix38geix38.png?v=1757798222","url":"https:\/\/r5kkdb-kr.myshopify.com\/products\/%f0%9f%92%96x2-brasier","provider":"MY SHOP","version":"1.0","type":"link"}