{"title":"BLUE","description":"","products":[{"product_id":"lombre","title":"L'ombre","description":"\n\u003cstyle\u003e\n.accordion {\n  width: 100%;\n  max-width: 700px;\n  margin: 20px auto;\n  font-family: \"Helvetica Neue\", sans-serif;\n  background-color: #F9F9F9; \/* Added background color *\/\n  border-radius: 10px;\n  padding: 10px 0;\n}\n\n\/* Each accordion item *\/\n.accordion-item + .accordion-item {\n  border-top: 1px solid #e0e0e0;\n}\n\n\/* Header styling *\/\n.accordion-header {\n  background: #F9F9F9; \/* Matches accordion bg *\/\n  cursor: pointer;\n  padding: 16px 20px;\n  font-weight: 500;\n  font-size: 15px;\n  color: #111;\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  user-select: none;\n  -webkit-tap-highlight-color: transparent;\n  transition: background 0.3s ease;\n}\n\n.accordion-header:hover {\n  background: #f0f0f0;\n}\n\n\/* ▼ Down Arrow (default) *\/\n.accordion-header::after {\n  content: \"▾\";\n  font-size: 16px;\n  color: #111;\n  transition: transform 0.3s ease;\n}\n\n\/* ▲ Rotates when active *\/\n.accordion-header.active::after {\n  transform: rotate(-180deg);\n}\n\n\/* Accordion content *\/\n.accordion-content {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s ease, padding 0.3s ease;\n  font-size: 14px;\n  color: #444;\n  padding: 0 20px;\n  background-color: #F9F9F9; \/* Match the whole theme *\/\n}\n\n.accordion-content.open {\n  padding: 16px 20px;\n}\n\n.accordion-content p {\n  margin: 0;\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"accordion\"\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eProduct Overview\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003eStrength in softness. Art in motion.\u003c\/p\u003e\n\n\u003cp\u003e\n\nFor those who wear stories, not just clothes.A deep navy canvas becomes the backdrop for a quiet bloom. The Navy Bloom Oversized Tee features a hand-illustrated floral design across the back, painted in gradients of blue, lilac, and blush shades that capture calm strength and understated elegance. Inspired by nature’s resilience, it’s a tribute to beauty that endures, to power found in delicacy. Every line and petal is drawn with intention, creating movement and emotion that feels alive. The front remains stripped back a matte-black embossed KLAIMN logo, bold in its subtlety — a study in precision and restraint, where minimalism becomes identity. Crafted from premium heavyweight cotton, the oversized silhouette drapes effortlessly while holding its form, combining comfort, structure, and presence. Refined yet daring. Minimal yet unforgettable. A wearable canvas that merges art and apparel — made for those who don’t follow, but define.\n\n\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eAbout the Piece\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003eThe Navy Bloom artwork turns fabric into a living canvas. Floral forms unfold in layered tones of navy, lilac, and soft blush — hues that flow into one another through precision pigment printing. Overlaid with raised black puff detailing, the composition gains sculptural depth, where smooth gradients meet bold texture. The result is a quiet contrast — a design that feels alive in both sight and touch, merging softness with strength.\u003c\/p\u003e\n\u003cbr\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eFit \u0026amp; Details\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003e100% Heavyweight Cotton\u003c\/p\u003e\n\n\u003cp\u003e260 GSM\u003c\/p\u003e\n\n\u003cp\u003eOversized Fit \u003c\/p\u003e\n\n\u003cp\u003eRibbed Neckline\u003c\/p\u003e\n\n\u003cp\u003eHigh-Density Screen Print\u003c\/p\u003e\n\n\u003cp\u003eReverse Wash Only\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eShipping\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003eShips within 24 hours\u003c\/p\u003e\n\n\u003cp\u003eFree Pan-India delivery\u003c\/p\u003e\n\n\u003cp\u003eNext-day dispatch\u003c\/p\u003e\n\n\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\n\n \u003cscript\u003e\n\n document.addEventListener('DOMContentLoaded', function() {\n\n  const headers = document.querySelectorAll(\".accordion-header\");\n\n\n\n  headers.forEach(header =\u003e {\n\n   header.addEventListener(\"click\", function() {\n\n    const content = this.nextElementSibling;\n\n\n\n    if (this.classList.contains(\"active\")) {\n\n     \/\/ Close current\n\n     this.classList.remove(\"active\");\n\n     content.style.maxHeight = null;\n\n     setTimeout(() =\u003e content.classList.remove(\"open\"), 350);\n\n    } else {\n\n     \/\/ Close others\n\n     headers.forEach(other =\u003e {\n\n      if (other !== this \u0026\u0026 other.classList.contains(\"active\")) {\n\n       other.classList.remove(\"active\");\n\n       const otherContent = other.nextElementSibling;\n\n       otherContent.style.maxHeight = null;\n\n       otherContent.classList.remove(\"open\");\n\n      }\n\n     });\n\n\n\n     \/\/ Open this one\n\n     this.classList.add(\"active\");\n\n     content.classList.add(\"open\");\n\n     content.style.maxHeight = content.scrollHeight + \"px\";\n\n    }\n\n   });\n\n  });\n\n });\n\n\u003c\/script\u003e","brand":"Klaimn","offers":[{"title":"XS","offer_id":43677374611507,"sku":null,"price":3575.0,"currency_code":"INR","in_stock":false},{"title":"S","offer_id":43270330908723,"sku":"KLA-004","price":3575.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":43270330941491,"sku":"KLA-005","price":3575.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":43270330974259,"sku":"KLA-006","price":3575.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":43270331007027,"sku":"KLA-007","price":3575.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":43470834663475,"sku":null,"price":3575.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/5_6e7099ee-3a17-4cbe-9961-3b35c906294f.png?v=1760443780"},{"product_id":"summer2026-copy-copy-copy-copy","title":"Unbound Blade Tee — Deep Blue","description":"\u003cstyle\u003e\n.accordion {\n  width: 100%;\n  max-width: 700px;\n  margin: 20px auto;\n  font-family: \"Helvetica Neue\", sans-serif;\n  background-color: #F9F9F9; \/* Added background color *\/\n  border-radius: 10px;\n  padding: 10px 0;\n}\n\n\/* Each accordion item *\/\n.accordion-item + .accordion-item {\n  border-top: 1px solid #e0e0e0;\n}\n\n\/* Header styling *\/\n.accordion-header {\n  background: #F9F9F9; \/* Matches accordion bg *\/\n  cursor: pointer;\n  padding: 16px 20px;\n  font-weight: 500;\n  font-size: 15px;\n  color: #111;\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  user-select: none;\n  -webkit-tap-highlight-color: transparent;\n  transition: background 0.3s ease;\n}\n\n.accordion-header:hover {\n  background: #f0f0f0;\n}\n\n\/* ▼ Down Arrow (default) *\/\n.accordion-header::after {\n  content: \"▾\";\n  font-size: 16px;\n  color: #111;\n  transition: transform 0.3s ease;\n}\n\n\/* ▲ Rotates when active *\/\n.accordion-header.active::after {\n  transform: rotate(-180deg);\n}\n\n\/* Accordion content *\/\n.accordion-content {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s ease, padding 0.3s ease;\n  font-size: 14px;\n  color: #444;\n  padding: 0 20px;\n  background-color: #F9F9F9; \/* Match the whole theme *\/\n}\n\n.accordion-content.open {\n  padding: 16px 20px;\n}\n\n.accordion-content p {\n  margin: 0;\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"accordion\"\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eProduct Overview\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\n\n\u003cp\u003e\n\n\nMeet the Museum Edit Tee in Blue—a deeper, more immersive version of the piece. The darker base pulls the artwork into a more intense, layered visual.Constructed from 240–250 GSM heavyweight cotton, it maintains a structured silhouette with lasting comfort. The puff print urumi sword adds a raised, tactile element, while the screen-printed artwork builds intricate detailing around it. Finished with a ribbed crew neckline for durability.\n\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eFit \u0026amp; Details\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003e100% heavyweight cotton\u003c\/p\u003e\n\n\u003cp\u003e240 GSM\u003c\/p\u003e\n\n\u003cp\u003eScreen Print\u003c\/p\u003e\n\n\u003cp\u003eReverse Wash Only\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eShipping\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003eShips within 24 hours\u003c\/p\u003e\n\n\u003cp\u003eFree Pan-India delivery\u003c\/p\u003e\n\n\u003cp\u003eNext-day dispatch\u003c\/p\u003e\n\n\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\n\n \u003cscript\u003e\n\n document.addEventListener('DOMContentLoaded', function() {\n\n  const headers = document.querySelectorAll(\".accordion-header\");\n\n\n\n  headers.forEach(header =\u003e {\n\n   header.addEventListener(\"click\", function() {\n\n    const content = this.nextElementSibling;\n\n\n\n    if (this.classList.contains(\"active\")) {\n\n     \/\/ Close current\n\n     this.classList.remove(\"active\");\n\n     content.style.maxHeight = null;\n\n     setTimeout(() =\u003e content.classList.remove(\"open\"), 350);\n\n    } else {\n\n     \/\/ Close others\n\n     headers.forEach(other =\u003e {\n\n      if (other !== this \u0026\u0026 other.classList.contains(\"active\")) {\n\n       other.classList.remove(\"active\");\n\n       const otherContent = other.nextElementSibling;\n\n       otherContent.style.maxHeight = null;\n\n       otherContent.classList.remove(\"open\");\n\n      }\n\n     });\n\n\n\n     \/\/ Open this one\n\n     this.classList.add(\"active\");\n\n     content.classList.add(\"open\");\n\n     content.style.maxHeight = content.scrollHeight + \"px\";\n\n    }\n\n   });\n\n  });\n\n });\n\n\u003c\/script\u003e","brand":"Klaimn Your Clothing","offers":[{"title":"XS","offer_id":44174837415987,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":44174837448755,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":44174837481523,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":44174837514291,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":44174837547059,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":44337436295219,"sku":null,"price":4089.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/lightblueside.jpg?v=1779215140"},{"product_id":"recovery-tee-deep-green-copy","title":"AFTERWISH — Cobalt Blue","description":"\n\u003cstyle\u003e\n.accordion {\n  width: 100%;\n  max-width: 700px;\n  margin: 20px auto;\n  font-family: \"Helvetica Neue\", sans-serif;\n  background-color: #F9F9F9; \/* Added background color *\/\n  border-radius: 10px;\n  padding: 10px 0;\n}\n\n\/* Each accordion item *\/\n.accordion-item + .accordion-item {\n  border-top: 1px solid #e0e0e0;\n}\n\n\/* Header styling *\/\n.accordion-header {\n  background: #F9F9F9; \/* Matches accordion bg *\/\n  cursor: pointer;\n  padding: 16px 20px;\n  font-weight: 500;\n  font-size: 15px;\n  color: #111;\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  user-select: none;\n  -webkit-tap-highlight-color: transparent;\n  transition: background 0.3s ease;\n}\n\n.accordion-header:hover {\n  background: #f0f0f0;\n}\n\n\/* ▼ Down Arrow (default) *\/\n.accordion-header::after {\n  content: \"▾\";\n  font-size: 16px;\n  color: #111;\n  transition: transform 0.3s ease;\n}\n\n\/* ▲ Rotates when active *\/\n.accordion-header.active::after {\n  transform: rotate(-180deg);\n}\n\n\/* Accordion content *\/\n.accordion-content {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s ease, padding 0.3s ease;\n  font-size: 14px;\n  color: #444;\n  padding: 0 20px;\n  background-color: #F9F9F9; \/* Match the whole theme *\/\n}\n\n.accordion-content.open {\n  padding: 16px 20px;\n}\n\n.accordion-content p {\n  margin: 0;\n}\n\u003c\/style\u003e\n\n\u003cdiv class=\"accordion\"\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eProduct Overview\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003e\n\nThe 11:11 Make A Wish Tee is crafted from premium heavyweight cotton, offering a structured yet soft feel for elevated everyday wear. The clean front keeps the design minimal, while the “11:11 Make A Wish” artwork on the back adds a bold and expressive identity to the piece. Finished in a vibrant Ember Orange tone, the tee balances statement aesthetics with refined simplicity. Designed to move effortlessly between streetwear and luxury essentials, it reflects the core spirit of Klaimn — modern, minimal, and intentionally bold.\n\n\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eFit \u0026amp; Details\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003e100% Heavyweight Cotton\u003c\/p\u003e\n\n\u003cp\u003e260 GSM\u003c\/p\u003e\n\n\u003cp\u003eOversized Fit \u003c\/p\u003e\n\n\u003cp\u003eRibbed Neckline\u003c\/p\u003e\n\n\u003cp\u003eHigh-Density Screen Print\u003c\/p\u003e\n\n\u003cp\u003eReverse Wash Only\u003c\/p\u003e\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-item\"\u003e\n\n\u003cdiv class=\"accordion-header\"\u003eShipping\u003c\/div\u003e\n\n\u003cdiv class=\"accordion-content\"\u003e\n\n\u003cp\u003eShips within 24 hours\u003c\/p\u003e\n\n\u003cp\u003eFree Pan-India delivery\u003c\/p\u003e\n\n\u003cp\u003eNext-day dispatch\u003c\/p\u003e\n\n\n\n\u003c\/div\u003e\n\n\u003c\/div\u003e\n\n\n\n\n\n \u003cscript\u003e\n\n document.addEventListener('DOMContentLoaded', function() {\n\n  const headers = document.querySelectorAll(\".accordion-header\");\n\n\n\n  headers.forEach(header =\u003e {\n\n   header.addEventListener(\"click\", function() {\n\n    const content = this.nextElementSibling;\n\n\n\n    if (this.classList.contains(\"active\")) {\n\n     \/\/ Close current\n\n     this.classList.remove(\"active\");\n\n     content.style.maxHeight = null;\n\n     setTimeout(() =\u003e content.classList.remove(\"open\"), 350);\n\n    } else {\n\n     \/\/ Close others\n\n     headers.forEach(other =\u003e {\n\n      if (other !== this \u0026\u0026 other.classList.contains(\"active\")) {\n\n       other.classList.remove(\"active\");\n\n       const otherContent = other.nextElementSibling;\n\n       otherContent.style.maxHeight = null;\n\n       otherContent.classList.remove(\"open\");\n\n      }\n\n     });\n\n\n\n     \/\/ Open this one\n\n     this.classList.add(\"active\");\n\n     content.classList.add(\"open\");\n\n     content.style.maxHeight = content.scrollHeight + \"px\";\n\n    }\n\n   });\n\n  });\n\n });\n\n\u003c\/script\u003e\n\u003c\/div\u003e","brand":"Klaimn Your Clothing","offers":[{"title":"XS","offer_id":44320413876275,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":44320413909043,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":44320413941811,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":44320413974579,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":44320414007347,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":44320414040115,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/Bluedesign_2.jpg?v=1778957286"}],"url":"https:\/\/www.klaimn.com\/collections\/blue.oembed","provider":"Klaimn Your Clothing","version":"1.0","type":"link"}