.pd { font-family: inherit; } .pd *, .pd *::before, .pd *::after { box-sizing: border-box; } /* Dimension grid */ .pd-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e6e2dc; border: 1px solid #e6e2dc; border-radius: 3px; overflow: hidden; margin: 0 0 24px 0; } .pd-dim { background: #fff; padding: 12px 14px; } .pd-dim-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.6px; font-weight: 500; margin-bottom: 4px; } .pd-dim-value { font-size: 14px; color: #1a2e1f; font-weight: 600; } /* Intro paragraph */ .pd p { font-size: 15px; color: #555; line-height: 1.8; margin: 0 0 18px 0; } .pd p:last-of-type { margin-bottom: 24px; } /* Section headings */ .pd h2 { font-size: 17px; font-weight: 700; color: #1a2e1f; margin: 32px 0 14px 0; padding-bottom: 10px; border-bottom: 1.5px solid #e6e2dc; letter-spacing: -0.1px; } /* Feature list */ .pd-features { list-style: none; padding: 0; margin: 0 0 8px 0; } .pd-features li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #f0ede8; font-size: 14px; color: #555; line-height: 1.6; } .pd-features li:last-child { border-bottom: none; } .pd-features li::before { content: ""; display: block; width: 18px; height: 18px; min-width: 18px; background: #1a2e1f; border-radius: 50%; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; } .pd-features li strong { color: #1a2e1f; font-weight: 600; } /* Specs table */ .pd-table { width: 100%; border-collapse: collapse; margin: 0 0 8px 0; border: none !important; } .pd-table, .pd-table td, .pd-table th { border: none !important; box-shadow: none !important; outline: none !important; } .pd-table tr { border-bottom: 1px solid #f0ede8 !important; } .pd-table tr:first-child { border-top: 1px solid #f0ede8 !important; } .pd-table tr:last-child { border-bottom: none !important; } .pd-table td { padding: 12px 8px; font-size: 14px; vertical-align: top; } .pd-table td:first-child { color: #999; font-weight: 500; font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase; width: 36%; padding-right: 20px; padding-top: 14px; } .pd-table td:last-child { color: #444; } .pd-table a { color: #1a2e1f; text-decoration: underline; } /* Lifestyle split sections */ .pd-split { display: flex; gap: 0; margin: 32px 0; border-radius: 3px; overflow: hidden; background: #f7f5f2; } .pd-split.pd-split-rev { flex-direction: row-reverse; background: #1a2e1f; } .pd-split-img { flex: 1; min-height: 280px; overflow: hidden; } .pd-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; } .pd-split-text { flex: 1; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; } .pd-split-text h3 { font-size: 20px; font-weight: 700; color: #1a2e1f; margin: 0 0 12px 0; line-height: 1.25; } .pd-split-rev .pd-split-text h3 { color: #fff; } .pd-split-text p { font-size: 14px; color: #555; line-height: 1.75; margin: 0; } .pd-split-rev .pd-split-text p { color: rgba(255,255,255,0.75); } @media (max-width: 680px) { .pd-split, .pd-split.pd-split-rev { flex-direction: column; } .pd-split-img { min-height: 220px; } .pd-split-text, .pd-split-rev .pd-split-text { padding: 24px 20px; } .pd-split-text h3 { font-size: 17px; } .pd-dims { grid-template-columns: repeat(2, 1fr); } } /* Image sections */ .pd-img-section { margin: 16px 0; text-align: center; background: #f7f5f2; border-radius: 3px; padding: 24px; } .pd-img-section img { max-width: 100%; border-radius: 2px; } .pd-img-caption { font-size: 13px; color: #999; margin-top: 10px; } /* Video */ .pd-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 3px; margin: 24px 0; } .pd-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; } /* Delivery note */ .pd-delivery { background: #f7f5f2; border-left: 3px solid #1a2e1f; padding: 16px 20px; border-radius: 0 3px 3px 0; margin: 0 0 8px 0; } .pd-delivery p { margin: 0; font-size: 14px; color: #555; } .pd-delivery strong { color: #1a2e1f; } /* FAQ accordion */ .pd-faq { margin: 0; padding: 0; list-style: none; } .pd-faq-item { border-bottom: 1px solid #f0ede8; } .pd-faq-item:first-child { border-top: 1px solid #f0ede8; } .pd-faq-q { width: 100%; background: none; border: none; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-size: 14px; font-weight: 600; color: #1a2e1f; font-family: inherit; gap: 12px; } .pd-faq-q:hover { color: #2a4a2f; } .pd-faq-icon { width: 20px; height: 20px; min-width: 20px; border: 1.5px solid #d0ccc5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #999; transition: transform 0.2s, border-color 0.2s; line-height: 1; } .pd-faq-item.open .pd-faq-icon { border-color: #1a2e1f; color: #1a2e1f; transform: rotate(45deg); } .pd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .pd-faq-a-inner { padding: 0 0 16px 0; font-size: 14px; color: #666; line-height: 1.75; } .pd-faq-a-inner a { color: #1a2e1f; } Sofa size 200 x 150cm Bed size 150 x 180cm Height 95cm The Mocca Mini Corner Sofa Bed is the more compact version of our best-selling Mocca range, created for homes where space is tighter but comfort still matters. It gives you the same corner sofa practicality, hidden storage and proper bed function, without taking up as much room as a full king size model. Unlike many compact sofa beds that compromise on comfort, the Mocca Mini uses a supportive combination of high-density foam, pocket springs and zigzag springs to create a seat that feels substantial and a bed that works well for regular use. It is ideal for smaller living rooms, flats, guest rooms or holiday homes where every centimetre counts. The reversible chaise gives you more flexibility when planning your room layout, and the two hidden storage compartments help keep bedding neatly out of sight. Available in all SofaBedExpert fabrics, the Mocca Mini can be tailored to suit both modern and more classic interiors. Key Features Compact corner design. A smart space-saving layout that gives you generous seating and a large sleeping area without the footprint of a larger corner sofa. Supportive sprung comfort. Built with high-density foam, pocket springs and zigzag springs for balanced support in both sofa and bed use. Everyday practicality. Ideal for regular sleeping, guests or smaller homes where one piece of furniture needs to do more. Two storage compartments. Useful hidden storage beneath the chaise for bedding, pillows and other essentials. Reversible chaise. Can be positioned on either side to suit your room layout. Effortless conversion. Easy-opening mechanism transforms the sofa into a bed quickly and smoothly. Specifications Dimensions 200cm (W) x 150cm (D) x 95cm (H) Sleeping area 150 x 180cm Construction High-density foam, pocket springs, zigzag springs, strong plywood frame, silicone fibre-filled cushions Weight capacity 350kg Fabrics Available in all SofaBedExpert fabric ranges, including easy-clean options. Order a free swatch book Create a Comfortable Bed in Seconds The Mocca Mini opens quickly and smoothly into a generous 150 x 180cm sleeping area, making it a practical solution for smaller homes that still need a proper bed function. Maximise Your Space Two hidden storage compartments beneath the chaise give you practical everyday storage for bedding, pillows and essentials, helping you make the most of a smaller room. What Is Inside? High-density foam combined with pocket and zigzag springs for unbeatable comfort. Watch It in Action Measurements Delivery Note Please ensure your narrowest access point is at least 48cm wide including doorways, hallways, stairs and tight turns. If you are unsure, contact us before ordering and we will help confirm access. Frequently Asked Questions Is the Mocca Mini suitable for regular sleeping?+ Yes. The Mocca Mini is designed to offer proper support for regular use, using a combination of high-density foam, pocket springs and zigzag springs. It is a much more supportive option than a typical occasional-use folding sofa bed. How big is the bed when opened?+ The sleeping area measures 150 x 180cm. The width is generous and similar to a king size width, while the length is shorter, so it is ideal for most people, though very tall adults may prefer one of our longer models. Can I choose which side the chaise goes on?+ Yes. The chaise is fully reversible and can be positioned on either the left or right side, giving you more flexibility when planning your room layout. Does it have storage?+ Yes. The Mocca Mini includes two hidden storage compartments beneath the chaise, ideal for storing duvets, pillows and spare bedding. What fabrics are available?+ The Mocca Mini is available in all SofaBedExpert fabric ranges, including easy-clean options suitable for homes with children or pets. Order a free fabric sample book and we will post it to you within 2 to 3 working days. Will it fit through my door?+ Please ensure your narrowest access point — doorways, hallways, stairs and any tight turns — is at least 48cm wide. If you are unsure, contact us before ordering and we will help confirm access. (function(){ var items = document.querySelectorAll('.pd-faq-item'); items.forEach(function(item){ var btn = item.querySelector('.pd-faq-q'); var ans = item.querySelector('.pd-faq-a'); btn.addEventListener('click', function(){ var isOpen = item.classList.contains('open'); items.forEach(function(i){ i.classList.remove('open'); i.querySelector('.pd-faq-a').style.maxHeight = '0'; i.querySelector('.pd-faq-icon').textContent = '+'; }); if(!isOpen){ item.classList.add('open'); ans.style.maxHeight = ans.scrollHeight + 'px'; item.querySelector('.pd-faq-icon').textContent = '+'; } }); }); })();