{"product_id":"luxury-slippers","title":"Hanneke™  |  Luxury Slippers","description":"\u003cdiv\u003e\n\u003cp\u003e\u003cmeta charset=\"UTF-8\"\u003e \u003cmeta content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\" name=\"viewport\"\u003e\u003c\/p\u003e\n\u003cstyle\u003e\n  \/* --- Reset and CSS Variables --- *\/\n  :root {\n    --primary-color: #dba3a3; \/* Elegant Pink *\/\n    --bg-color: #ffffff;      \/* WHITE Background *\/\n    --text-dark: #333333;\n    --text-light: #555555;\n    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);\n  }\n\n  * {\n    margin: 0;\n    padding: 0;\n    box-sizing: border-box;\n    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;\n  }\n\n  \/* Prevent horizontal overflow on mobile *\/\n  html, body { width: 100%; overflow-x: hidden; }\n\n  body {\n    background-color: var(--bg-color);\n    color: var(--text-dark);\n    line-height: 1.6;\n    padding-top: 16px;\n    padding-bottom: 28px;\n    -webkit-text-size-adjust: 100%;\n    text-rendering: optimizeLegibility;\n    -webkit-font-smoothing: antialiased;\n  }\n\n  \/* --- Main Container (Mobile-first) --- *\/\n  .main-container {\n    width: 100%;\n    max-width: 720px;\n    margin: 0 auto;\n    padding: 0 14px;\n  }\n\n  \/* --- Product Cards --- *\/\n  .product-card {\n    background: #fff;\n    border-radius: 14px;\n    overflow: hidden;\n    box-shadow: var(--shadow-soft);\n    margin-bottom: 18px;          \/* ✅ less space on mobile *\/\n    border: 1px solid #f0f0f0;\n  }\n\n  \/* Image container *\/\n  .image-wrapper {\n    position: relative;\n    width: 100%;\n    height: 0;\n    padding-bottom: 100%;\n    overflow: hidden;\n    background: #f7f7f7;\n  }\n\n  .image-wrapper img {\n    position: absolute;\n    inset: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    display: block;\n  }\n\n  \/* --- Text Content --- *\/\n  .card-content {\n    padding: 18px 14px;           \/* ✅ smaller padding on mobile *\/\n    text-align: center;\n  }\n\n  .card-title {\n    font-size: 1.12rem;           \/* ✅ more balanced on mobile *\/\n    color: var(--text-dark);\n    margin-bottom: 10px;\n    font-weight: 700;\n    letter-spacing: 0.2px;\n    text-transform: capitalize;\n    line-height: 1.25;\n  }\n\n  .title-underline {\n    width: 48px;\n    height: 3px;\n    background-color: var(--primary-color);\n    margin: 0 auto 12px auto;\n    border-radius: 2px;\n    opacity: 0.8;\n  }\n\n  \/* ✅ removes the \"large spacing\" from justify on mobile *\/\n  .card-text {\n    font-size: 0.98rem;\n    color: var(--text-light);\n    font-weight: 400;\n    line-height: 1.7;\n\n    text-align: left;             \/* ✅ mobile: better readability and no gaps *\/\n    text-align-last: auto;\n    hyphens: auto;\n    -webkit-hyphens: auto;\n    overflow-wrap: break-word;\n    word-break: normal;\n    letter-spacing: 0;\n    margin: 0;\n  }\n\n  .highlight {\n    color: var(--primary-color);\n    font-weight: 600;\n  }\n\n  \/* --- Section: Specifications (Mobile Friendly) --- *\/\n  .specs-container {\n    background-color: #fcfcfc;\n    border-radius: 12px;\n    padding: 18px 14px;           \/* ✅ smaller padding on mobile *\/\n    margin-top: 16px;\n    border: 1px solid #eeeeee;\n  }\n\n  .specs-title {\n    text-align: center;\n    font-size: 1.02rem;\n    font-weight: 700;\n    color: var(--text-dark);\n    margin-bottom: 12px;\n    text-transform: uppercase;\n    letter-spacing: 0.8px;\n    line-height: 1.2;\n  }\n\n  .specs-list {\n    list-style: none;\n    padding: 0;\n    margin: 0;\n  }\n\n  .specs-list li {\n    display: grid;                \/* ✅ better than flex for mobile *\/\n    grid-template-columns: 1fr 1fr;\n    gap: 10px;\n    align-items: center;\n    padding: 12px 0;\n    border-bottom: 1px solid #e6e6e6;\n    font-size: 0.92rem;\n  }\n\n  .specs-list li:last-child {\n    border-bottom: none;\n  }\n\n  .spec-label {\n    font-weight: 700;\n    color: var(--text-dark);\n    text-align: left;\n    min-width: 0;\n  }\n\n  .spec-value {\n    color: var(--text-light);\n    font-weight: 400;\n    text-align: right;\n    min-width: 0;\n    overflow-wrap: anywhere;      \/* ✅ does not overflow *\/\n  }\n\n  \/* ====== Breakpoints ====== *\/\n  @media (min-width: 480px) {\n    .main-container { padding: 0 16px; }\n    .product-card { margin-bottom: 20px; }\n    .card-content { padding: 20px 16px; }\n    .card-title { font-size: 1.18rem; }\n    .card-text { font-size: 1rem; text-align: justify; text-align-last: center; } \/* ✅ returns justify without \"extreme gaps\" *\/\n    .specs-container { padding: 20px 16px; }\n  }\n\n  @media (min-width: 768px) {\n    body { padding-top: 18px; padding-bottom: 36px; }\n    .main-container { max-width: 760px; padding: 0 20px; }\n    .product-card { border-radius: 15px; margin-bottom: 24px; }\n    .card-content { padding: 24px 20px; }\n    .card-title { font-size: 1.25rem; letter-spacing: 0.5px; }\n    .title-underline { width: 50px; margin-bottom: 15px; }\n    .specs-container { padding: 24px 20px; margin-top: 20px; }\n    .specs-title { font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 1px; }\n    .specs-list li { font-size: 0.95rem; padding: 14px 0; }\n  }\n\u003c\/style\u003e\n\n\u003cmain class=\"main-container\"\u003e\n  \u003csection class=\"product-card\"\u003e\n    \u003cdiv class=\"image-wrapper\"\u003e\n      \u003cimg alt=\"Soft interior synthetic sheep wool\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0593\/4986\/0481\/files\/Soutien_Anatomique_Apaisant.webp?v=1765401513\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"card-content\"\u003e\n      \u003ch2 class=\"card-title\"\u003eSpecialised Ergonomic Design\u003c\/h2\u003e\n      \u003cdiv class=\"title-underline\"\u003e\u003c\/div\u003e\n      \u003cp class=\"card-text\"\u003eDeveloped by a \u003cspan class=\"highlight\"\u003eteam of health professionals\u003c\/span\u003e, this anatomical insole has been designed to redistribute plantar pressure. It effectively relieves chronic pain, even after long hours in a static position.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"product-card\"\u003e\n    \u003cdiv class=\"image-wrapper\"\u003e\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0593\/4986\/0481\/files\/2111.webp?v=1765461816\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"card-content\"\u003e\n      \u003ch2 class=\"card-title\"\u003eJoint Anti-Fatigue Technology\u003c\/h2\u003e\n      \u003cdiv class=\"title-underline\"\u003e\u003c\/div\u003e\n      \u003cp class=\"card-text\"\u003eOur advanced cushioning system absorbs micro-shocks with every step. This technology significantly reduces the load and \u003cspan class=\"highlight\"\u003etension on the knees\u003c\/span\u003e, preventing joint fatigue during your daily movements.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"product-card\"\u003e\n    \u003cdiv class=\"image-wrapper\"\u003e\n      \u003cimg alt=\"Non-slip safety sole\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0593\/4986\/0481\/files\/Stabilite_A_Chaque_Pas.webp?v=1765401514\"\u003e\n    \u003c\/div\u003e\n    \u003cdiv class=\"card-content\"\u003e\n      \u003ch2 class=\"card-title\"\u003eHigh Performance Grip\u003c\/h2\u003e\n      \u003cdiv class=\"title-underline\"\u003e\u003c\/div\u003e\n      \u003cp class=\"card-text\"\u003eThe structure of the outsole has been ingeniously sculpted to provide maximum traction. It ensures \u003cspan class=\"highlight\"\u003eunmatched stability\u003c\/span\u003e on all smooth surfaces, combining home safety with precision engineering.\u003c\/p\u003e\n    \u003c\/div\u003e\n  \u003c\/section\u003e\n\n  \u003csection class=\"specs-container\"\u003e\n    \u003ch3 class=\"specs-title\"\u003eTechnical Sheet\u003c\/h3\u003e\n    \u003cul class=\"specs-list\"\u003e\n      \u003cli\u003e\n        \u003cspan class=\"spec-label\"\u003eMain Material\u003c\/span\u003e\n        \u003cspan class=\"spec-value\"\u003eFaux Fur (Wool)\u003c\/span\u003e\n      \u003c\/li\u003e\n      \u003cli\u003e\n        \u003cspan class=\"spec-label\"\u003eInsole\u003c\/span\u003e\n        \u003cspan class=\"spec-value\"\u003eEVA Foam (Memory)\u003c\/span\u003e\n      \u003c\/li\u003e\n      \u003cli\u003e\n        \u003cspan class=\"spec-label\"\u003eOutsole\u003c\/span\u003e\n        \u003cspan class=\"spec-value\"\u003eRubber\u003c\/span\u003e\n      \u003c\/li\u003e\n      \u003cli\u003e\n        \u003cspan class=\"spec-label\"\u003eSeason\u003c\/span\u003e\n        \u003cspan class=\"spec-value\"\u003eAutumn \/ Winter\u003c\/span\u003e\n      \u003c\/li\u003e\n    \u003c\/ul\u003e\n  \u003c\/section\u003e\n\u003c\/main\u003e\n\u003c\/div\u003e","brand":"Emma \u0026 Rose Cape Town","offers":[{"title":"Beige \/ 35-36","offer_id":53954394587478,"sku":"14:771;200000124:200000334","price":699.0,"currency_code":"ZAR","in_stock":true},{"title":"Beige \/ 37-38","offer_id":53954394620246,"sku":"14:771;200000124:100010482","price":699.0,"currency_code":"ZAR","in_stock":true},{"title":"Beige \/ 39-40","offer_id":53954394653014,"sku":"14:771;200000124:200000898","price":699.0,"currency_code":"ZAR","in_stock":true},{"title":"Khaki \/ 35-36","offer_id":53954394685782,"sku":"14:200001438;200000124:200000334","price":699.0,"currency_code":"ZAR","in_stock":true},{"title":"Khaki \/ 37-38","offer_id":53954394718550,"sku":"14:200001438;200000124:100010482","price":699.0,"currency_code":"ZAR","in_stock":true},{"title":"Khaki \/ 39-40","offer_id":53954394751318,"sku":"14:200001438;200000124:200000898","price":766.44,"currency_code":"ZAR","in_stock":true},{"title":"Black \/ 35-36","offer_id":53954394784086,"sku":"14:193;200000124:200000334","price":766.44,"currency_code":"ZAR","in_stock":true},{"title":"Black \/ 37-38","offer_id":53954394816854,"sku":"14:193;200000124:100010482","price":766.44,"currency_code":"ZAR","in_stock":true},{"title":"Black \/ 39-40","offer_id":53954394849622,"sku":"14:193;200000124:200000898","price":766.44,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0958\/5377\/3142\/files\/17.webp?v=1779372654","url":"https:\/\/emmarosecapetown.co.za\/products\/luxury-slippers","provider":"Emma \u0026 Rose Cape Town","version":"1.0","type":"link"}