Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed
Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed

Large Washable Fluffy Orthopedic Soft Dog Pillow Dog Sofa Bed

765650 sold
$32.99
$112.85
-$79.86
Buy 2 Get 10% Off Plus Free Shipping (Total Discount Is About $15)
COLOR-Camel
Please select a color
SIZE-M
Please select a size
Quantity
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);

Snoozing When it comes to turning your living room into the ultimate relaxation space for your beloved pet, finding a couch that offers the right level of comfort is key. has a comfortable balance of firmness and comfort, designed to give your pet a cozy place to stay warm. Suitable for small-medium, large dogs and cats.

  • Joint Healthy Support: Based on the dog's spine design, the bed supports spinal alignment by taking pressure off joints as it is constructed from high-quality materials as a durable and long-lasting support. It is good for your pet's health. 
  • Comfort Elevated Headrest: Designed with two armrests and pillow to support dog's neck to relax while lying on their side with legs extended.
  • Cozy Sleep Experiences: With various sizes, recommending extra large space for your furry friends to enjoy their own spot to sleep or sit in. As their personal cozy space, they can go and curl up anytime they want.
  • Stay Warm and Safe: Crafted with fluffy faux fur and soft plush, it provides warmth and insulation for dogs while curling up. With high-density foam, its durability also means that the bed will withstand daily use and provide reliable comfort for years to come.
  • Easy Maintenance and Cleaning: With removable cover and machine-washable, it remains clean and hygienic with minimal effort on your part, and your dog sofa bed will be ready for your pet's next nap.

Main Material: 
Plush, Egg-Crate Foam, Anti-slip cloth

Products Size: 

M: 23.6"L x 17.7"W x 12"H (60x45x30 cm)
L: 31.4"L x 22.4"W x 13"H (80x57x33 cm)
XL: 39"L x 26.3"W x 15.7"H (100x67x40 cm)
2XL: 47"L x 29.5"W x 15.7"H (120x75x40 cm)

Inner Sleep Space Size:
M: 15.7''L x 13.8''W (40x35 cm)
L: 23.6''L x 16.5''W (60x42 cm)
XL: 29.9''L x 18.5''W (76x47 cm)
2XL: 36.2''L x 20.5''W (92x52 cm)

Joint Healthy Support

Based on the dog's spine design, the bed supports spinal alignment by taking pressure off joints as it is constructed from high-quality materials as a durable and long-lasting support. It is good for your pet's health.

High-quality Material

Designed with thick, durable faux lambswool fabric, this sofa bed offers exceptional comfort and resists pilling, making it perfect for dogs who enjoy digging or burrowing. The soft texture ensures a cozy resting spot, while the sturdy fabric holds up against daily use.

Comfort Elevated Headrest

Designed with two armrests and pillow to support dog's neck to relax while lying on their side with legs extended.