{"title":"BROWNS","description":"","products":[{"product_id":"the-reality-brown","title":"The Reality Brown","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  \u003cdiv class=\"accordion-item\"\u003e\n    \u003cdiv class=\"accordion-header\"\u003eProduct Overview\u003c\/div\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cp\u003eWhen the world makes no sense — wear it anyway.\u003c\/p\u003e\n      \u003cp\u003eThe CONFUSION? Oversized Tee is bold, unfiltered, and unapologetically loud — a visual statement born from the raw pulse of street culture. Inspired by underground zines, punk art, and rebellion in form, it questions everything and answers with defiance. The back features oversized puff-print typography, the word CONFUSION? stacked in striking layers of raised ink — tactile, loud, deliberate. Each question mark doubles as a symbol of chaos and challenge. On the front, the tone shifts: minimal, grounded, and marked only by KLAIMN’s bold signature logo. The contrast between front and back captures a dialogue — clarity versus chaos, restraint versus expression. Crafted from premium heavyweight cotton, the oversized silhouette drapes with structure and intent. The puff-print finish adds a dimensional edge, making the piece as much art as apparel. A manifesto in motion — designed for those who thrive in contradiction, who wear confusion not as doubt, but as identity.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"accordion-item\"\u003e\n    \u003cdiv class=\"accordion-header\"\u003eAbout the Piece\u003c\/div\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cp\u003eA statement piece born from controlled chaos. The CONFUSION? Oversized Tee transforms typography into art — a collision of order and disorder, clarity and noise. The bold puff-print lettering explodes across the back in layered dimensions, each question mark stacked with purpose, each line crafted to disrupt. The high-density ink rises from the surface with a tactile edge, turning words into structure — a sculptural form of expression. In contrast, the front remains stripped to KLAIMN’s signature logo, anchoring the design in minimalism. Together, they form a study in balance: disruption contained within design.\u003c\/p\u003e\n      \n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"accordion-item\"\u003e\n    \u003cdiv class=\"accordion-header\"\u003eFit \u0026amp; Details\u003c\/div\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cp\u003e100% Heavyweight Cotton\u003c\/p\u003e\n      \u003cp\u003e260 GSM\u003c\/p\u003e\n      \u003cp\u003eOversized Fit\u003c\/p\u003e\n      \u003cp\u003eRibbed Neckline\u003c\/p\u003e\n      \u003cp\u003eHigh-Density Screen Print\u003c\/p\u003e\n      \u003cp\u003eReverse Wash Only\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"accordion-item\"\u003e\n    \u003cdiv class=\"accordion-header\"\u003eShipping\u003c\/div\u003e\n    \u003cdiv class=\"accordion-content\"\u003e\n      \u003cp\u003eShips within 24 hours\u003c\/p\u003e\n      \u003cp\u003eFree Pan-India delivery\u003c\/p\u003e\n      \u003cp\u003eNext-day dispatch\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\ndocument.addEventListener('DOMContentLoaded', function() {\n  const headers = document.querySelectorAll(\".accordion-header\");\n\n  headers.forEach(header =\u003e {\n    header.addEventListener(\"click\", function() {\n      const content = this.nextElementSibling;\n\n      if (this.classList.contains(\"active\")) {\n        \/\/ Close current\n        this.classList.remove(\"active\");\n        content.style.maxHeight = null;\n        setTimeout(() =\u003e content.classList.remove(\"open\"), 350);\n      } else {\n        \/\/ Close others\n        headers.forEach(other =\u003e {\n          if (other !== this \u0026\u0026 other.classList.contains(\"active\")) {\n            other.classList.remove(\"active\");\n            const otherContent = other.nextElementSibling;\n            otherContent.style.maxHeight = null;\n            otherContent.classList.remove(\"open\");\n          }\n        });\n\n        \/\/ Open this one\n        this.classList.add(\"active\");\n        content.classList.add(\"open\");\n        content.style.maxHeight = content.scrollHeight + \"px\";\n      }\n    });\n  });\n});\n\u003c\/script\u003e\n","brand":"Klaimn","offers":[{"title":"XS","offer_id":43677374873651,"sku":null,"price":2675.0,"currency_code":"INR","in_stock":false},{"title":"S","offer_id":43270329958451,"sku":"","price":2675.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":43270329991219,"sku":"","price":2675.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":43270330023987,"sku":"","price":2675.0,"currency_code":"INR","in_stock":false},{"title":"XL","offer_id":43270330056755,"sku":"","price":2675.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":43470835679283,"sku":null,"price":2675.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/12_78c6b3d2-64e4-46be-8760-c57db49bcc3d.png?v=1760447824"},{"product_id":"the-suede-club-jacket-brown","title":"Suede Club Jacket Brown","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\nA winter staple redefined with a refined edge. The Suede Club Jacket is crafted in a premium suede-finish fabric, pairing a soft hand feel with a structured, modern silhouette. Its clean, zipper-front design keeps the look minimal, while the elevated texture adds depth and quiet luxury.\n\nBuilt for effortless versatility, the jacket moves seamlessly between everyday wear and polished layering. Warm, lightweight, and intentionally understated, it embodies the balance between contemporary street style and premium craftsmanship — a piece designed to stand out by staying subtle.\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 Suede Club Jacket is a study in quiet confidence — minimal in form, elevated in presence. The suede-finish texture adds depth without excess, while the clean silhouette keeps the look controlled and intentional. Every detail is restrained, allowing the material and structure to speak for themselves. Designed for those who move with subtle authority, this jacket blends modern refinement with timeless character — an effortless expression of Klaimn’s understated luxury.\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% Soft Suede\u003c\/p\u003e\n\n\u003cp\u003e380 GSM\u003c\/p\u003e\n\n\u003cp\u003e3D Metal Logo\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":43822204420147,"sku":null,"price":6589.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":43822204452915,"sku":null,"price":6589.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":43822204485683,"sku":null,"price":6589.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":43822204518451,"sku":null,"price":6589.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":43822204551219,"sku":null,"price":6589.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/24_20052e4c-38c9-4171-9750-e25f0851e5a2.png?v=1767343746"},{"product_id":"the-club-knit-beige","title":"The Club Knit Beige","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\nThe Course Knit Quarter-Zip is designed for winter days when comfort and structure need to work together. Made from a soft, textured knit, it delivers warmth without weight and a silhouette that stays clean and controlled. The quarter-zip neckline adds versatility — easy to layer, easy to dress up, and always polished.\n\nIts relaxed fit keeps movement effortless, while the refined finish gives it a premium edge suited for both on-course moments and everyday wear. Functional, minimal, and intentionally elevated, this piece sits at the center of Klaimn’s approach to modern winter essentials.\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 Course Knit Quarter-Zip pairs relaxed ease with quiet precision. Its textured knit and sharp neckline create a presence that’s subtle yet refined, carrying athletic influence without losing its understated character. Designed for those who move with calm authority, this piece blends intention, comfort, and modern restraint — effortlessly Klaimn.\n\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% Soft Suede\u003c\/p\u003e\n\n\u003cp\u003e380 GSM\u003c\/p\u003e\n\n\u003cp\u003e3D Metal Logo\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":43822203273267,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":43822203306035,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":43822203338803,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":43822203371571,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":43822203404339,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":43822203437107,"sku":null,"price":5145.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/9_67f59f54-9312-4ee7-bff8-f2810287f891.png?v=1765962073"},{"product_id":"the-club-knit-grey","title":"The Club Knit Grey","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\nThe Course Knit Quarter-Zip is designed for winter days when comfort and structure need to work together. Made from a soft, textured knit, it delivers warmth without weight and a silhouette that stays clean and controlled. The quarter-zip neckline adds versatility — easy to layer, easy to dress up, and always polished.\n\nIts relaxed fit keeps movement effortless, while the refined finish gives it a premium edge suited for both on-course moments and everyday wear. Functional, minimal, and intentionally elevated, this piece sits at the center of Klaimn’s approach to modern winter essentials.\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 Course Knit Quarter-Zip pairs relaxed ease with quiet precision. Its textured knit and sharp neckline create a presence that’s subtle yet refined, carrying athletic influence without losing its understated character. Designed for those who move with calm authority, this piece blends intention, comfort, and modern restraint — effortlessly Klaimn.\n\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% Soft Suede\u003c\/p\u003e\n\n\u003cp\u003e380 GSM\u003c\/p\u003e\n\n\u003cp\u003e3D Metal Logo\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":43822158381107,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":43822158413875,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":43822158446643,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":43822158348339,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":43822158479411,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":43822158512179,"sku":null,"price":4775.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/15_6b50da9d-1806-49d9-8496-b8383de283a6.png?v=1765797509"},{"product_id":"afterwish-solar-orange","title":"AFTERWISH — Solar Orange","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":44320414597171,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"S","offer_id":44320414629939,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"M","offer_id":44320414662707,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"L","offer_id":44320414695475,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"XL","offer_id":44320414728243,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true},{"title":"XXL","offer_id":44320414761011,"sku":null,"price":3289.0,"currency_code":"INR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0639\/7299\/9219\/files\/ChatGPTImageMay17_2026_12_09_07AM.png?v=1778957323"}],"url":"https:\/\/www.klaimn.com\/collections\/browns.oembed","provider":"Klaimn Your Clothing","version":"1.0","type":"link"}