{"product_id":"vida-designs-cambridge-3-tier-low-bookcase-white-wooden-shelving-display-storage-unit-office-living-room-furniture","title":"Vida Designs Cambridge 3 Tier Low Bookcase, White Wooden Shelving Display Storage Unit Office Living Room Furniture","description":"\u003cdiv\u003e\n\u003cdiv lang=\"en_GB\"\u003e\n\u003cdiv class=\"aplus-v2 desktop celwidget\" cel_widget_id=\"aplus\"\u003e\n\u003cscript type=\"application\/javascript\"\u003e\/\/ \u003c![CDATA[\n    \/**\n     * Common event handler for click and keydown events.\n     * @param {Event} event - The event object.\n     * @param {Function} handleClickOrEnter - Function to handle click or Enter key events.\n     * @param {Function} handleEsc - Function to handle Esc key events.\n     *\/\n    \/\/ [TODO][AplusMantle-8064] Create common event handler util(key events, click events) in AplusModuleResources\n    function handleClickAndKeyEvents(event, handleClickOrEnterOrSpace) {\n        const ENTER_KEY_CODE = 13;\n        const ESCAPE_KEY_CODE = 27;\n        const SPACE_KEY_CODE = 32;\n        const isClick = event.type === 'click';\n        const isKeydown = event.type === 'keydown';\n        const isEnter = isKeydown \u0026\u0026 event.keyCode === ENTER_KEY_CODE;\n        const isSpace = isKeydown \u0026\u0026 event.keyCode === SPACE_KEY_CODE;\n        const isEsc = isKeydown \u0026\u0026 event.keyCode === ESCAPE_KEY_CODE;\n\n        if (isClick || isEnter || isSpace) {\n            handleClickOrEnterOrSpace();\n        } else if (isEsc) {\n            handleEsc(event);\n        }\n    }\n\n    \/**\n    * Function to handle esc key event.\n    * @param {Event} event - The event object.\n    *\/\n    function handleEsc(event) {\n        event.target.blur()  \/\/ force remove focus\n    }\n\/\/ ]]\u003e\u003c\/script\u003e\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\nP.now('premium-module-5-comparison-table-scroller').execute('init-premium-module-5-comparison-table', function(init){\n    if (init) {\n        return;\n    }\n    P.register('premium-module-5-comparison-table-scroller', function(){\n        return function() {\n            P.when('jQuery', 'a-popover', 'A', 'ready').execute('premium-5-comparison-table-scroller', function($, popover, A) {\n                function initCompTable(module) {\n                    \/**\n                    * Premium comparison table: popover trigger module\n                    *\/\n                    var comparisonName = $(module).data('comparison-name');\n                    (function() {\n                        var $additionalInfo = $('.aplus-v2 .aplus-popover-trigger');\n                        $additionalInfo.each(function(i, trigger) {\n                            return popover.create(trigger, $(trigger).data());\n                        });\n                        $additionalInfo.hover(\n                            function() {\n                                $(this).focus();\n                            }\n                        );\n                    })();\n                    \/**\n                    * Premium comparison table: adjust column width module\n                    *\/\n                    (function() {\n                        var VISIBLE_COLUMNS = 4.2;  \/* How many visible columns on load *\/\n                        var MIN_WIDTH = 230;\n                        var getWidth = function() {\n                            return $(this).outerWidth();\n                        }\n                        \/* cache selectors *\/\n                        var\n                            $container = $('.aplus-v2 .comparison-table #'+comparisonName),\n                            $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'),\n                            $slider = $('.aplus-v2 .comparison-table #'+comparisonName+' .table-slider'),\n                            $columns = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column'),\n                            $activeColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column.active.active-item');\n\n                        \/* Formula for determining desired column width *\/\n\n                        var calculatedColumnWidth = Math.floor(\n                            ($container.innerWidth() - $header.innerWidth()) \/ VISIBLE_COLUMNS\n                        );\n\n                        var childWidths = $activeColumn.map(getWidth).get();\n                        var maxChildWidth = Math.max(MIN_WIDTH, Math.max.apply(Math, childWidths));\n                        var minColumnWidth = $columns.innerWidth();\n\n                        \/* set the min-width of each column to the calulated width or minWidth *\/\n                        $columns.css(\n                            'min-width',\n                            Math.max(MIN_WIDTH, (calculatedColumnWidth \u003c minColumnWidth\n                                ? calculatedColumnWidth\n                                : minColumnWidth))\n                        );\n                        $activeColumn.css('width', maxChildWidth);\n\n                        \/* show the component *\/\n                        $container.removeClass('loading');\n                    })();\n\n                    \/**\n                     * Premium comparison table: sticky attribute \u0026 column\n                     *\/\n\n                    (function() {\n                        \/* cache selectors *\/\n                        const comparisonTable = document.querySelector('.aplus-v2 .comparison-table #'+comparisonName);\n                        const header = comparisonTable.querySelector('td.attribute');\n                        const fixedColumn = comparisonTable.querySelector('td.active');\n\n                        const attributeColumnObserver = new ResizeObserver((entries) =\u003e {\n                            for (let entry of entries) {\n                                const bounds = entry.target.getBoundingClientRect().width;\n                                const activeCellWidth = window.getComputedStyle(fixedColumn).left;\n                                if (bounds + \"px\" !== activeCellWidth) {\n                                    const activeCells = document.querySelectorAll('.aplus-data-column.active');\n                                    activeCells.forEach(cell =\u003e cell.style.left = bounds + \"px\");\n\n                                }\n                            }\n\n                        })\n\n                        attributeColumnObserver.observe(header)\n                    })();\n\n                    \/**\n                    * Premium comparison table: top scroll bar\n                    *\/\n                    (function() {\n                        \/* cache selectors *\/\n                        var\n                            $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'),\n                            $fixedColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' td.active'),\n                            $scrollWrapperTop = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-top'),\n                            $scrollWrapperBottom = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-bottom'),\n                            $scrollWidth = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-width'),\n                            $scrollBar = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-bar');\n                        \/* confirm fixed column exists and can add width to the total width of the scroll bar *\/\n                        var fixedColumnWidth = $fixedColumn.innerWidth();\n                        if ( fixedColumnWidth === null ) {\n                            fixedColumnWidth = 0;\n                        }\n                        \/* set width of scrollBar *\/\n                        $scrollBar.css('width', $scrollWidth.innerWidth() + fixedColumnWidth + $header.innerWidth());\n                        \/* connect scrolls together *\/\n                        $scrollWrapperTop.scroll(function() {\n                            $scrollWrapperBottom.scrollLeft($scrollWrapperTop.scrollLeft());\n                        });\n                        $scrollWrapperBottom.scroll(function() {\n                            $scrollWrapperTop.scrollLeft($scrollWrapperBottom.scrollLeft());\n                        });\n                    })();\n                }\n\n                $('.aplus-v2 .premium-aplus-module-5 .table-container').each(function(index, module) {\n                    initCompTable(module);\n                });\n            });\n        }\n    });\n});\n}));\n\/\/ ]]\u003e\u003c\/script\u003e\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\n  P.now('aplus-module-tech-specs').execute('init-premium-module-tech-specs', function(init) {\n    if (init) {\n      return;\n    }\n    P.register('aplus-module-tech-specs', function() {\n      function showTablesFallback(tables) {\n        \/\/ unsuccessful toggling \"hide\" parent class, fallback to toggling table css directly\n        if (tables \u0026\u0026 typeof tables.css === 'function') {\n          tables.css('visibility','visible');\n        }\n      }\n      function showTables(tables, hideLoadingCssClassName) {\n        if (tables \u0026\u0026 typeof tables.closest === 'function') {\n          var hideTableContainers = tables.closest('.' + hideLoadingCssClassName);\n          if (hideTableContainers.length \u0026\u0026 typeof hideTableContainers.removeClass === 'function') {\n            hideTableContainers.removeClass(hideLoadingCssClassName);\n            return; \/\/ do not go to fallback\n          }\n        }\n        showTablesFallback(tables);\n      }\n      function resizeSpecTables($, tables) {\n        var tableHeights = [];\n        tables.each(function(i, table) {\n          tableHeights.push($(table).height());\n        });\n        var maxHeight = Math.max.apply(undefined, tableHeights);\n        tables.height(maxHeight);\n      }\n      return function(moduleId, tableCssClassName, hideLoadingCssClassName) {\n        P.when('A', 'ready').execute('premium-resize-tech-spec-tables', function(A) {\n          var $ = A.$;\n          var targetClassName = '.' + moduleId + ' .' + tableCssClassName;\n          var tables = $(targetClassName);\n          try {\n            resizeSpecTables($, tables);\n            showTables(tables, hideLoadingCssClassName);\n          } catch (e) {\n            \/\/ in case resizeSpecTables throws, try to show tables or all hides\n            if (tables \u0026\u0026 tables.length) {\n              showTablesFallback(tables)\n            } else {\n              \/\/ final attempt, show all hidden tables\n              var hideTableContainers = $('.' + (hideLoadingCssClassName || 'aplus-tech-spec-hide-loading'));\n              hideTableContainers.removeClass(hideLoadingCssClassName);\n            }\n          }\n        });\n      }\n    });\n  });\n}));\n\/\/ ]]\u003e\u003c\/script\u003e\n\u003cnoscript\u003e\n   \u003cstyle type=\"text\/css\"\u003e\n    .aplus-tech-spec-hide-loading {\n      visibility: visible !important;\n    }\n  \u003c\/style\u003e\n  \u003c\/noscript\u003e\n\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\nP.now('premium-module-11-faq').execute('init-premium-module-11-faq', function(init) {\n    if (init) {\n        return;\n    }\n    P.register('premium-module-11-faq', function() {\n        return function() {\n            P.when('A', 'jQuery', 'ready').execute('premium-11-faq', function(A, $){\n                function initFaq(module) {                   \n                    const MODULE_CLASS_NAME = 'premium-aplus-module-11';\n                    const FAQ_CONTAINER_CLASS_NAME = 'faqs-container';\n                    const FAQ_BLOCK_CLASS_NAME = 'faq-block';\n                    const moduleId = $(module).data('faq-block');\n                    const $faqBlocks = $('.aplus-v2 .' + MODULE_CLASS_NAME + ' .' + FAQ_CONTAINER_CLASS_NAME + '.' + moduleId + ' .' + FAQ_BLOCK_CLASS_NAME);\n\n                    \/**\n                    * Function to handle click or Enter or Space key events.\n                    * @param {Element} element - The this object from which the event is dispatched\n                    * @param {faqBlocks} faqBlocks - List of all the Question and Answer blocks.\n                    *\/\n                    function handleClickOrEnterOrSpace(element, faqBlocks) {\n                        const $element = $(element);\n                        const isActive = $element.hasClass('aplus-active');\n\n                        faqBlocks.removeClass('aplus-active');\n                        faqBlocks.find('[data-faq-question]').attr('aria-expanded', 'false');\n\n                        if (!isActive) {\n                            $element.addClass('aplus-active');\n                            $element.find('[data-faq-question]').attr('aria-expanded', 'true');\n                        }\n                    }\n\n                    \/* Using jQuery event namespace for preventing duplicate binding on twister refresh *\/\n                    $faqBlocks.unbind('click keydown.premiumAplusModule11ClickHandler').bind('click keydown.premiumAplusModule11ClickHandler', function(event) {\n                        handleClickAndKeyEvents(event, () =\u003e handleClickOrEnterOrSpace(this, $faqBlocks)); \n                    });\n                }\n                $(\".aplus-v2 .premium-aplus-module-11 .faqs-container\").each(function(index, module) {\n                    initFaq(module);\n                });\n            });\n        };\n    });\n});\n}));\n\/\/ ]]\u003e\u003c\/script\u003e\n\u003cdiv class=\"aplus-content-wrapper\"\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-2-fullbackground-image aplus-premium\" cel_widget_id=\"aplus-premium-module-2-fullbackground-image\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-aplus premium-aplus-module-2\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-background-wrapper\"\u003e\n\u003cdiv class=\"a-section a-spacing-none background-image\"\u003e\n\u003cimg alt=\"\" class=\"a-lazy-loaded\" data-src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/76acd4ea-e547-41c0-b16e-d6d9e5ed25b5.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/76acd4ea-e547-41c0-b16e-d6d9e5ed25b5.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n\u003cnoscript\u003e\n        \u003cimg alt=\"\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/76acd4ea-e547-41c0-b16e-d6d9e5ed25b5.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n       \u003c\/noscript\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"a-section a-text-center\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-2-fullbackground-image aplus-premium\" cel_widget_id=\"aplus-premium-module-2-fullbackground-image\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-aplus premium-aplus-module-2\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-background-wrapper\"\u003e\n\u003cdiv class=\"a-section a-spacing-none background-image\"\u003e\n\u003cimg alt=\"\" class=\"a-lazy-loaded\" data-src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/48ae0cf3-29f9-468d-918b-16be1f18a625.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/48ae0cf3-29f9-468d-918b-16be1f18a625.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n\u003cnoscript\u003e\n        \u003cimg alt=\"\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/48ae0cf3-29f9-468d-918b-16be1f18a625.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n       \u003c\/noscript\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"a-section a-text-center\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-2-fullbackground-image aplus-premium\" cel_widget_id=\"aplus-premium-module-2-fullbackground-image\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-aplus premium-aplus-module-2\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-background-wrapper\"\u003e\n\u003cdiv class=\"a-section a-spacing-none background-image\"\u003e\n\u003cimg alt=\"\" class=\"a-lazy-loaded\" data-src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/af7b2ec0-aa4b-45d3-a797-cb2d35aa19b0.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/af7b2ec0-aa4b-45d3-a797-cb2d35aa19b0.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n\u003cnoscript\u003e\n        \u003cimg alt=\"\" src=\"https:\/\/m.media-amazon.com\/images\/S\/aplus-media-library-service-media\/af7b2ec0-aa4b-45d3-a797-cb2d35aa19b0.__CR0,0,1464,600_PT0_SX1464_V1___.jpg\"\u003e\n       \u003c\/noscript\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"a-section a-text-center\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-16-tech-specs aplus-premium\" cel_widget_id=\"aplus-premium-module-16-tech-specs\"\u003e\n\u003cdiv class=\"a-section a-spacing-none aplus-index-3 premium-aplus premium-aplus-module-16 aplus-container-3\"\u003e\n\u003ch3 class=\"a-size-extra-large a-spacing-base a-text-center\"\u003eProduct Specifications\u003c\/h3\u003e\n\u003cdiv class=\"a-row\"\u003e\n\u003cdiv class=\"a-column a-span6 aplus-tech-spec-hide-loading\"\u003e\n\u003ctable class=\"a-bordered a-horizontal-stripes aplus-tech-spec-table\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Material \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e Particleboard \u0026amp; MDF \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Finish \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e Paper Veneer \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Dimensions \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e H: 76 \/ W: 60 \/ D: 24 cm Aprox \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"a-column a-span6 aplus-tech-spec-hide-loading a-span-last\"\u003e\n\u003ctable class=\"a-bordered a-horizontal-stripes aplus-tech-spec-table\"\u003e\n\u003ctbody\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Weight \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e 8.8 kg \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Colour \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e White \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr\u003e\n\u003ctd class=\"a-text-bold\"\u003e\u003cspan\u003e Brand \u003c\/span\u003e\u003c\/td\u003e\n\u003ctd\u003e\u003cspan\u003e Vida Designs \u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\n      P.when('aplus-module-tech-specs').execute('invoke-premium-tech-spec-resize', function(resizeSpecTables) {\n        resizeSpecTables('aplus-index-3', 'aplus-tech-spec-table', 'aplus-tech-spec-hide-loading');\n      });\n    }));\n\/\/ ]]\u003e\u003c\/script\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-11-faq aplus-premium\" cel_widget_id=\"aplus-premium-module-11-faq\"\u003e\n\u003cdiv class=\"a-section a-spacing-none premium-aplus premium-aplus-module-11\"\u003e\n\u003cdiv data-faq-block=\"4\" class=\"a-section a-spacing-none aplus-container-2 faqs-container 4\"\u003e\n\u003cul class=\"faq-list\"\u003e\n\u003cli id=\"faq-qa-pair-0\" class=\"faq-block\"\u003e\n\u003cp class=\"aplus-question aplus-p1\"\u003eIs assembly required?\u003c\/p\u003e\n\u003cp class=\"aplus-answer aplus-p2\"\u003eYes, the item arrives flat packed and will require self-assembly.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli id=\"faq-qa-pair-1\" class=\"faq-block\"\u003e\n\u003cp class=\"aplus-question aplus-p1\"\u003eWhat's Included?\u003c\/p\u003e\n\u003cp class=\"aplus-answer aplus-p2\"\u003eIncluded in the packaging is the bookcase, hardware and also easy to follow assembly instructions.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli id=\"faq-qa-pair-2\" class=\"faq-block\"\u003e\n\u003cp class=\"aplus-question aplus-p1\"\u003eWhat is the bookcase made of?\u003c\/p\u003e\n\u003cp class=\"aplus-answer aplus-p2\"\u003eThe product is made of particleboard and mdf, it is finished in paper veneer.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli id=\"faq-qa-pair-3\" class=\"faq-block\"\u003e\n\u003cp class=\"aplus-question aplus-p1\"\u003eIs the 3 tier bookcase available in any other colours?\u003c\/p\u003e\n\u003cp class=\"aplus-answer aplus-p2\"\u003eYes, the bookcase comes in colour options of White, Oak, Walnut, Black, Grey and Dark wood.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003cli id=\"faq-qa-pair-4\" class=\"faq-block\"\u003e\n\u003cp class=\"aplus-question aplus-p1\"\u003eAre there any other items that can match with the 3 tier bookcase?\u003c\/p\u003e\n\u003cp class=\"aplus-answer aplus-p2\"\u003eYes, our product range has a variety of items which can match with the bookcase.\u003c\/p\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\n    P.when('premium-module-11-faq').execute('invoke-premium-11-faq', function(init){\n        init();\n    });\n}));\n\/\/ ]]\u003e\u003c\/script\u003e\n\u003c\/div\u003e\n\u003cdiv class=\"celwidget aplus-module premium-module-5-comparison-table-scroller aplus-premium\" cel_widget_id=\"aplus-premium-module-5-comparison-table-scroller\"\u003e\n\u003cdiv class=\"premium-aplus premium-aplus-module-5 aplus-container-3 comparison-table\"\u003e\n\u003ch3 class=\"a-text-center aplus-h1 a-text-bold\"\u003e\u003c\/h3\u003e\n\u003cdiv id=\"comparison-table-container-5\" data-comparison-name=\"comparison-table-container-5\" class=\"a-section a-spacing-none table-container loading\"\u003e\n\u003cdiv class=\"table-slider scroll-wrapper-bottom\"\u003e\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cscript type=\"text\/javascript\"\u003e\/\/ \u003c![CDATA[\n(function(f) {var _np=(window.P._namespace(\"PremiumAplusModule\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) {\n    P.when('premium-module-5-comparison-table-scroller', 'ready').execute('invoke-premium-5-comparison-table', function(init){ init() });\n}));\n\/\/ ]]\u003e\u003c\/script\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv\u003e\n\u003cdiv id=\"feature-bullets\" class=\"a-section a-spacing-medium a-spacing-top-small\"\u003e\n\u003cul class=\"a-unordered-list a-vertical a-spacing-mini\"\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e Sturdy and robust construction: The Cambridge 3 tier low bookcase is made from chipboard and MDF, which give it a solid and reliable structure. It can safely support a variety of items, including books, decor and other household essentials, making it a practical and functional storage solution. \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e Option for wall-mounting: While the Cambridge 3 tier low bookcase is freestanding, it also comes with the option to screw it into the wall for added stability and safety. This feature is particularly useful if you have young children or pets in your home as it prevents the bookcase from tipping over and causing any accidents. \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e Stylish and modern appearance: The Cambridge 3 tier low bookcase has a sleek and contemporary design that will complement any room in your home. The paper veneer finish gives it a polished and refined look, making it a great addition to a living room, bedroom or home office. \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e Ample storage space: With its 3-tier design, this bookcase provides plenty of storage space for your books, DVDs or decorative items. The open shelves make it easy to access your items and the low height of the bookcase makes it ideal for smaller spaces. \u003c\/span\u003e\u003c\/li\u003e\n\u003cli class=\"a-spacing-mini\"\u003e\u003cspan class=\"a-list-item\"\u003e Customizable options: The Cambridge 3 tier low bookcase is available in a range of colours including black, white, oak, walnut and grey. It also comes in different sizes including 3 tier low, 3 tier medium, 4 tier large and 5 tier extra-large. This means you can choose the perfect size and colour to suit your needs and complement your existing decor. \u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cdiv data-csa-c-content-id=\"voyager-product-details-jumplink\" data-csa-c-slot-id=\"voyager-product-details-jumplink\" data-csa-c-type=\"link\" class=\"a-section aok-hidden\"\u003e\n\u003cspan class=\"caretnext\"\u003e›\u003c\/span\u003e \u003ca id=\"seeMoreDetailsLink\" class=\"a-link-normal\" href=\"#productDetails\"\u003e See more product details \u003c\/a\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e\n\u003cdiv\u003e\n\u003cdiv class=\"a-section a-spacing-small a-spacing-top-small\"\u003e\n\u003ctable class=\"a-normal a-spacing-micro\" role=\"list\"\u003e\n\u003ctbody\u003e\n\u003ctr class=\"a-spacing-small po-material\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eMaterial\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eEngineered Wood\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-mounting_type\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eMounting type\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eFree Standing\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-room_type\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eRoom type\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eBedroom, Home Office, Office\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-shelf_type\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eShelf type\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eLow shelf\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-number_of_shelves\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eNumber of shelves\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003e3\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-special_feature\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eSpecial feature\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eHeavy Duty\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-item_depth_width_height\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eProduct dimensions\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003e24D x 60W x 75H centimetres\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-item_shape\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eShape\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eRectangular\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-style\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eStyle\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eModern\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003ctr class=\"a-spacing-small po-finish_type\" role=\"listitem\"\u003e\n\u003ctd class=\"a-span3\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base a-text-bold\"\u003eFinish type\u003c\/span\u003e\u003c\/td\u003e\n\u003ctd class=\"a-span9\" role=\"presentation\"\u003e\u003cspan class=\"a-size-base po-break-word\"\u003eLaminated\u003c\/span\u003e\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003c\/div\u003e\n\u003c\/div\u003e","brand":"R \u0026 E Tinkerbells Little Boutique ","offers":[{"title":"Medium (3 Shelf) \/ Dark Wood","offer_id":56930656289146,"sku":null,"price":44.99,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) \/ Black","offer_id":56930656321914,"sku":null,"price":44.87,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ Grey","offer_id":56930656354682,"sku":null,"price":74.99,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ Walnut","offer_id":56930656387450,"sku":null,"price":66.29,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ Dark Wood","offer_id":56930656420218,"sku":null,"price":37.49,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ Black","offer_id":56930656452986,"sku":null,"price":72.27,"currency_code":"GBP","in_stock":true},{"title":"Medium (3 Shelf) \/ Grey","offer_id":56930656485754,"sku":null,"price":44.99,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) \/ Oak","offer_id":56930656518522,"sku":null,"price":52.79,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ Dark Wood","offer_id":56930656551290,"sku":null,"price":74.99,"currency_code":"GBP","in_stock":true},{"title":"Medium (3 Shelf) \/ White","offer_id":56930656584058,"sku":null,"price":44.99,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ White","offer_id":56930656616826,"sku":null,"price":31.86,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ Grey","offer_id":56930656649594,"sku":null,"price":37.49,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ Oak","offer_id":56930656682362,"sku":null,"price":72.27,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ Black","offer_id":56930656715130,"sku":null,"price":31.86,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) (Pack of 2) \/ Walnut","offer_id":56930656747898,"sku":null,"price":105.57,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ Oak","offer_id":56930656780666,"sku":null,"price":33.14,"currency_code":"GBP","in_stock":true},{"title":"Medium (3 Shelf) \/ Black","offer_id":56930656813434,"sku":null,"price":44.99,"currency_code":"GBP","in_stock":true},{"title":"Low (3 Shelf) \/ Walnut","offer_id":56930656846202,"sku":null,"price":33.14,"currency_code":"GBP","in_stock":true},{"title":"Extra Large (5 Shelf) \/ White","offer_id":56930656878970,"sku":null,"price":72.27,"currency_code":"GBP","in_stock":true},{"title":"Medium (3 Shelf) \/ Oak","offer_id":56930656911738,"sku":null,"price":44.99,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) \/ White","offer_id":56930656944506,"sku":null,"price":42.24,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) \/ Dark Wood","offer_id":56930656977274,"sku":null,"price":59.99,"currency_code":"GBP","in_stock":true},{"title":"Large (4 Shelf) \/ Walnut","offer_id":56930657010042,"sku":null,"price":44.87,"currency_code":"GBP","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0642\/4988\/9014\/files\/81j1EJo-McL.jpg?v=1780008295","url":"https:\/\/retinkerbellslittleboutique.myshopify.com\/products\/vida-designs-cambridge-3-tier-low-bookcase-white-wooden-shelving-display-storage-unit-office-living-room-furniture","provider":"R \u0026 E Tinkerbells Little Boutique ","version":"1.0","type":"link"}