{"title":"BESTSELLERS","description":"","products":[{"product_id":"cheeky-top","title":"CHEEKY TOP","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 24px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        There’s a moment in summer when everything slows down.\n        Cheeky feels like that moment.\n        The air is warm but quiet, the light turns soft and golden\n        \u003cbr\u003e\u003cbr\u003e\n        \n        The thicker fabric offers a sensation of ultimate comfort Like skin still carries the heat of the day.\n\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"S","offer_id":52926460920142,"sku":"","price":54.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":52926460952910,"sku":"","price":54.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":52926460985678,"sku":"","price":54.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/IMG_0636.jpg?v=1771600764"},{"product_id":"loul-bottom","title":"LOUL BOTTOM","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 24px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Loul embodies simplicity and sensuality With These deep stripes between burgundy and midnight tones, carry the intensity of that moment.\n        \n        \u003cbr\u003e\u003cbr\u003e\n        \n        The contrast trim sharpens the lines, framing the body the way shadows define shapes under strong sunlight.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"S","offer_id":52926461346126,"sku":"","price":48.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":52926461378894,"sku":"","price":48.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":52926461411662,"sku":"","price":48.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/Elisa_MRS_25_-_Cecile_Larher_-_BD_82_311f0028-227f-402a-9f23-141e2c0e120e.jpg?v=1777493677"},{"product_id":"cheeky-bottom","title":"CHEEKY BOTTOM","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 24px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        There’s a moment in summer when everything slows down.\n        Cheeky feels like that moment.\n        The air is warm but quiet, the light turns soft and golden\n        \u003cbr\u003e\u003cbr\u003e\n        \n        The thicker fabric offers a sensation of ultimate comfort Like skin still carries the heat of the day.\n\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"S","offer_id":52926461608270,"sku":"","price":52.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":52926461641038,"sku":"","price":52.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":52926461673806,"sku":"","price":52.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/IMG_0940_2.jpg?v=1777498689"},{"product_id":"loul-top","title":"LOUL TOP","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 24px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Loul embodies simplicity and sensuality With These deep stripes between burgundy and midnight tones, carry the intensity of that moment.\n        \n        \u003cbr\u003e\u003cbr\u003e\n        \n        The contrast trim sharpens the lines, framing the body the way shadows define shapes under strong sunlight.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"S","offer_id":52926461739342,"sku":"","price":50.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":52926461772110,"sku":"","price":50.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":52926461804878,"sku":"","price":50.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/image00007_b63de4d5-f358-4fbe-84d1-f89ea1fa9f48.jpg?v=1777494553"},{"product_id":"halo-halo-bottom","title":"APPLE PIE BOTTOM","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 22px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        This print isn’t just a pattern.\n        It’s summer at your grandparents’ house,\n        A checkered tablecloth under fig trees,\n        Homemade jam, Salt still drying on your shoulders.\n        \u003cbr\u003e\u003cbr\u003e\n\n        This shorty bikini becomes a memory worn on the skin.\n        The cut is simple, almost innocent.\n        But slightly high-cut, sculpted, intentional, like growing up and realizing nostalgia can be sensual.\n        It’s a swimsuit that remembers childhood…\n        through the gaze of a woman.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size XS\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"XS","offer_id":59519772000590,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"S","offer_id":59519772033358,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":59519772066126,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":59519772098894,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"XL","offer_id":59519772131662,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/000005560030-3.jpg?v=1778071489"},{"product_id":"apple-pie-top","title":"APPLE PIE TOP","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 22px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        This print isn’t just a pattern.\n        It’s summer at your grandparents’ house,\n        A checkered tablecloth under fig trees,\n        Homemade jam, Salt still drying on your shoulders.\n        \u003cbr\u003e\u003cbr\u003e\n\n        This shorty bikini becomes a memory worn on the skin.\n        The cut is simple, almost innocent.\n        But slightly high-cut, sculpted, intentional, like growing up and realizing nostalgia can be sensual.\n        It’s a swimsuit that remembers childhood…\n        through the gaze of a woman.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"XS","offer_id":59519819219278,"sku":null,"price":56.0,"currency_code":"EUR","in_stock":true},{"title":"S","offer_id":59519819252046,"sku":null,"price":56.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":59519819284814,"sku":null,"price":56.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":59519819317582,"sku":null,"price":56.0,"currency_code":"EUR","in_stock":true},{"title":"XL","offer_id":59519819350350,"sku":null,"price":56.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/000005560004.jpg?v=1777486315"},{"product_id":"cider-bottom","title":"CIDER BOTTOM","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 22px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        This print isn’t just a pattern.\n        It’s summer at your grandparents’ house,\n        A checkered tablecloth under fig trees,\n        Homemade jam, Salt still drying on your shoulders.\n        \u003cbr\u003e\u003cbr\u003e\n\n        This shorty bikini becomes a memory worn on the skin.\n        The cut is simple, almost innocent.\n        But slightly high-cut, sculpted, intentional, like growing up and realizing nostalgia can be sensual.\n        It’s a swimsuit that remembers childhood…\n        through the gaze of a woman.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size S\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"XS","offer_id":59519821513038,"sku":null,"price":54.0,"currency_code":"EUR","in_stock":true},{"title":"S","offer_id":59519821545806,"sku":null,"price":54.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":59519821578574,"sku":null,"price":54.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":59519821611342,"sku":null,"price":54.0,"currency_code":"EUR","in_stock":true},{"title":"XL","offer_id":59519821644110,"sku":null,"price":54.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/000005600014.jpg?v=1777488067"},{"product_id":"cider-top","title":"CIDER TOP","description":"\u003cbody\u003e\n\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\"\u003e\n  \u003clink rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin\u003e\n\n  \u003clink href=\"https:\/\/fonts.googleapis.com\/css2?family=Archivo+Black\u0026amp;family=Montserrat:wght@100..900\u0026amp;display=swap\" rel=\"stylesheet\"\u003e\n\n  \u003cstyle\u003e\n\n    body{\n      margin:0;\n      padding:20px;\n    }\n\n    .details-accordion {\n      border-bottom: 1px solid #000;\n    }\n\n    summary {\n      font-family: \"Archivo Black\", sans-serif;\n      font-size: 12px;\n      cursor: pointer;\n      padding: 14px 0;\n\n      display: flex;\n      align-items: center;\n      justify-content: space-between;\n\n      list-style: none;\n      user-select: none;\n    }\n\n    summary::-webkit-details-marker {\n      display: none;\n    }\n\n    .accordion-icon {\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 22px;\n      font-weight: 300;\n      line-height: 1;\n\n      transition:\n        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);\n\n    }\n\n    .details-accordion.open .accordion-icon {\n      transform: rotate(180deg);\n    }\n\n    .accordion-content {\n\n      max-height: 0;\n      overflow: hidden;\n\n      opacity: 0;\n\n      transition:\n        max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),\n        opacity 0.45s ease;\n\n    }\n\n    .details-accordion.open .accordion-content {\n      max-height: 500px;\n      opacity: 1;\n    }\n\n    .accordion-content p {\n\n      margin: 0;\n      padding: 0 8px 18px;\n\n      font-family: \"Montserrat\", sans-serif;\n      font-size: 12px;\n      line-height: 1.6;\n\n      opacity: 1;\n\n    }\n\n    .text-animate {\n      animation: textReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1);\n    }\n\n    @keyframes textReveal {\n\n      from {\n        opacity: 0;\n        letter-spacing: 0.4px;\n        line-height: 2.4;\n        filter: blur(3px);\n      }\n\n      to {\n        opacity: 1;\n        letter-spacing: 0px;\n        line-height: 1.6;\n        filter: blur(0px);\n      }\n\n    }\n\n  \u003c\/style\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eDescription \u0026amp; Features\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        This print isn’t just a pattern.\n        It’s summer at your grandparents’ house,\n        A checkered tablecloth under fig trees,\n        Homemade jam, Salt still drying on your shoulders.\n        \u003cbr\u003e\u003cbr\u003e\n\n        This shorty bikini becomes a memory worn on the skin.\n        The cut is simple, almost innocent.\n        But slightly high-cut, sculpted, intentional, like growing up and realizing nostalgia can be sensual.\n        It’s a swimsuit that remembers childhood…\n        through the gaze of a woman.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eSize \u0026amp; Fit\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Studio shoot\n        \u003cbr\u003e\u003cbr\u003e\n        Inez is wearing size XS\n        \u003cbr\u003e\n        \n        Height: 170cm\n        \u003cbr\u003e\n\n        Bust: 76cm\n        \u003cbr\u003e\n\n        Waist: 60cm\n        \u003cbr\u003e\n\n        Hips: 86cm\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cdetails class=\"details-accordion\"\u003e\n\n    \u003csummary\u003e\n      \u003cspan\u003eFabric \u0026amp; Care\u003c\/span\u003e\n      \u003cspan class=\"accordion-icon\"\u003e+\u003c\/span\u003e\n    \u003c\/summary\u003e\n\n    \u003cdiv class=\"accordion-content\"\u003e\n\n      \u003cp class=\"accordion-text\"\u003e\n        Made from recycled fabric (78% polyamide, 22% elastane), made in Portugal.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Rinse after use. Cold hand wash and flat dry in shade.\n        \u003cbr\u003e\u003cbr\u003e\n\n        Do not soak, bleach or tumble dry. Colors may gradually fade with extended sun exposure.\n      \u003c\/p\u003e\n\n    \u003c\/div\u003e\n\n  \u003c\/details\u003e\n\n  \u003cscript\u003e\n\n    const accordions = document.querySelectorAll('.details-accordion');\n\n    accordions.forEach((accordion) =\u003e {\n\n      const icon = accordion.querySelector('.accordion-icon');\n      const text = accordion.querySelector('.accordion-text');\n\n      accordion.addEventListener('toggle', () =\u003e {\n\n        if (accordion.open) {\n\n          accordion.classList.add('open');\n          icon.textContent = '−';\n\n          text.classList.remove('text-animate');\n\n          void text.offsetWidth;\n\n          text.classList.add('text-animate');\n\n        } else {\n\n          accordion.classList.remove('open');\n          icon.textContent = '+';\n\n        }\n\n      });\n\n    });\n\n  \u003c\/script\u003e\n\n\u003c\/body\u003e","brand":"Cornelia","offers":[{"title":"XS","offer_id":59519822201166,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"S","offer_id":59519822233934,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"M","offer_id":59519822266702,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"L","offer_id":59519822299470,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true},{"title":"XL","offer_id":59519822332238,"sku":null,"price":60.0,"currency_code":"EUR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0911\/6680\/2254\/files\/3E1A5657bis.png?v=1777488067"}],"url":"https:\/\/corneliaswim.com\/fr\/collections\/bestsellers.oembed","provider":"Cornelia","version":"1.0","type":"link"}