💐Extra 8% OFF for your first visit, Code: NEWC08
💐Extra 8% OFF for your first visit, Code: NEWC08
💐Extra 8% OFF for your first visit, Code: NEWC08
💐Extra 8% OFF for your first visit, Code: NEWC08
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
RSDQ-Softsiliconedolls
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Account
Log in
Create an account
0
Cart
Close
Home
Finished Babies
Pre-Owned
2025 Brand New
Silicone Reborn Dolls
Silicone Reborn Dolls
All Full Silicone Reborn Dolls
Partial Silicone Reborn Dolls
3"-6" Mini Palm Silicone Reborn Dolls
Vinyl Reborn Dolls
Vinyl Reborn Dolls
12'' Baby Dolls
Large Ones
Alternative
Accessories
Kits
Shop By Categories
Shop By Categories
Baby Girls
Baby Boys
Twins
African American
Newborn
Toddler
"Heartbeat" and Coos
Breath
Supports
Supports
News
FAQS
Track Your Order
Contact Us
Return&Exchange
Sign up(Get Extra 35% off)
Log in
Create an account
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Home
Finished Babies
Pre-Owned
2025 Brand New
Silicone Reborn Dolls
All Full Silicone Reborn Dolls
Partial Silicone Reborn Dolls
3"-6" Mini Palm Silicone Reborn Dolls
SALE
12"&16" Hot Sale Full Liquid Solid Platinum Silicone Baby Doll, No Joint More Flexible Realistic Reborn Baby with Realistic Belly Button and Birth Mark
From
$149.99
$169.99
SAVE
12%
Vinyl Reborn Dolls
12'' Baby Dolls
Large Ones
SALE
Newborn Weighted Partial Silicone Baby 16"&20" Doll with Flexible Limbs and Chubby Face Just Like A Real Baby
From
$140.99
$175.99
SAVE
20%
Alternative
Accessories
Kits
Shop By Categories
Baby Girls
Baby Boys
Twins
African American
Newborn
Toddler
"Heartbeat" and Coos
Breath
Supports
News
FAQS
Track Your Order
Contact Us
Return&Exchange
Sign up(Get Extra 35% off)
More links
New Products
139 Products
139 Products
Featured
Price, low to high
Price, high to low
Newest in
Total sales, high to low
Purchases, high to low
Page views, high to low
Sort
Sort
Sort by
Featured
Price, low to high
Price, high to low
Newest in
Total sales, high to low
Purchases, high to low
Page views, high to low
12"&16" Supple and Soft Limbs, Flexible Silicone Reborn Baby Doll Boy or Girl Ovara and Techem
From
$199.99
12" Full Soft Flexible Silicone Reborn Baby Doll Boy Named Bolinda
From
$159.99
12" Fully Squishy Baby Boy Kabera ,Lifelike & Realistic Handmade Soft Silicone Baby Doll Ziera
From
$159.99
12" Liquid Full Silicone Reborn Baby Boy Doll Edenia, Extremely Flexible and Reusable Solid Platinum Silicone
From
$159.99
12"&16" Fully Squishy Baby Handmade Soft Silicone Baby Doll Boy or Girl Narade and Namra
From
$199.99
12"&16" Extremely Flexible Silicone Reborn Baby Doll Girl or Boy Named Onler and Faide
From
$199.99
[🔊Heartbeat Sound and Breath💝]18'' Cloth Body Reborn Baby Newborn Girl Awake Doll Named Quder With Blue Eyes
From
$87.99
12"&16" Fully Squishy Super Realisitc Reborn Baby Boy or Girl Snader and Gillica
From
$199.99
[New Series!] 20" Lifelike African American Handmade Sleeping Reborn Girl Doll Named Maliert
From
$88.99
12"&16" Full Body Silicone Bendable Reborn Baby Boy or Girl Dolls Named Tilara and Giloer
From
$199.99
12"&16" Supple and Soft Limbs, Flexible Silicone Reborn Baby Doll Boy or Girl Teidy and Labern
From
$199.99
Full Platinum Solid Silicone Baby Doll Boy or Girl Fay with Chubby Face and Flexible Limbs Just Like A Real Baby
From
$169.99
12"&16" Supple and Soft Limbs, Flexible Silicone Reborn Baby Doll Girl or Boy Named Olnera and Ullada
From
$199.99
12"&16" Full Platinum Silicone Newborn Baby Doll Boy or Girl Ottinta and Ritter
From
$199.99
12"&16" Full Silicone Boy or Girl Lliera and Yalra with Chubby Face and Flexible Limbs
From
$199.99
12''/16’’ Doll Show Baby Boy or Girl Ilmiru and Yallara, Reborn Baby Doll with Sweet Face
From
$199.99
Full Platinum Solid Silicone Reborn 12 & 16 Inches Newborn Baby Doll Boy and Girl Macy with A Private Place
From
$169.99
Newborn Sleeping Full Platinum Silicone Reborn Baby Doll Boy and Girl Jacobson with Delicate Hand Painted Details
From
$169.99
12"&16" Reborn Newborn Flexible Full Body SiIicone Baby Doll Boy or Girl Limosa and Ilera, Suitable & Safe for Age 3+ Kids
From
$199.99
12"&16" Extremely Flexible Silicone Reborn Baby Doll Girl or Boy Named Polrad and Varin
From
$199.99
12"&16" Flexible Full Body Platinum Silicone Baby Bendable Reborn Doll Boy or Girl Kamer and Darber
From
$199.99
12"&16" Solid Platinum Liquid Realistic Baby Boy or Girl Jajiya and Plasar,Flexible Newborn Baby Doll
From
$199.99
SALE
12"&16" Liquid Full Silicone Reborn Baby Boy Doll Elijah, Extremely Flexible and Reusable Solid Platinum Silicone
From
$149.99
$199.99
SAVE
25%
12"&16" Flexible Full Body Platinum Silicone Baby Bendable Reborn Doll Boy or Girl Dolar and Tecara
From
$199.99
12 & 16 Inches Full Platinum Solid Silicone Newborn Baby Doll Boy and Girl Jacob and Evelyn with Flexible Limbs & Adorable Chubby Face
From
$169.99
12"&16" Extremely Flexible Silicone Reborn Baby Doll Girl or Boy Named Kletia and Plotar
From
$199.99
Virtual Goods-VIP Service +$ 2.99
$2.99
12" & 16" Flexible Full Body Silicone Reborn Newborn Sleeping Baby Doll Boy and Girl Just Like A Real Baby That can Experience Healing Bathing
From
$199.99
SALE
12"&16" Clement Full Body Silicone Bendable Reborn Baby Boy or Girl Dolls Named Renna and Lanma
From
$184.99
$199.99
SAVE
8%
12"&16" Full Soft Flexible Silicone Reborn Baby Doll Boy or Girl Named Knera and Vinera
From
$199.99
12"&16" Full Soft Flexible Silicone Reborn Baby Doll Boy or Girl Terma and Udafa
From
$199.99
12"&16" Fully Squishy Super Realisitc Reborn Baby Boy or Girl Rilara and Tolona
From
$199.99
12"&16" Fully Squishy Baby Handmade Soft Silicone Baby Doll Boy or Girl Slaver and Ladager
From
$199.99
12"&16" Fully Squishy Baby Handmade Soft Silicone Baby Doll Boy or Girl Bolirta and Elisran
From
$199.99
12"&16" Supple and Soft Limbs, Flexible Silicone Reborn Baby Doll Boy or Girl Gerden and Verada
From
$199.99
12"&16" Full Body Silicone Baby Newborn Doll Girl or Boy Tervata and Luncar with Flexible & Chubby Limbs and Delicate Gift Ready
From
$199.99
12"&16" Clement Full Body Silicone Bendable Reborn Baby Boy or Girl Dolls Rattle and Sattle
From
$199.99
12"&16" Full Platinum Solid Silicone Sleeping Baby Doll Boy or Girl Bande and Soyada with Chubby Cheek & Limbs
From
$199.99
12"&16" Fully Squishy Baby Handmade Soft Silicone Baby Doll Boy or Girl Craner and Nemafa
From
$199.99
12"&16" Liquid Full Silicone Reborn Baby Boy or Girl Bolera and Cavra, Extremely Flexible and Reusable Solid Platinum Silicone
From
$169.99
12"&16" Extremely Flexible Silicone Reborn Baby Doll Girl or Boy Named Srery and Clinse
From
$199.99
12"&16" Flexible Full Body Platinum Silicone Baby Bendable Reborn Doll Boy or Girl Nayya and Ellera
From
$199.99
12" -15" Cute and Comfortable Pants 6-Pieces Set for Reborn Baby🌸
$21.99
12"&16"Fully Squishy Baby Boy or Girl ,Lifelike & Realistic Handmade Soft Silicone Baby Doll Fetagy and Alico
From
$199.99
12"&16" 100% Soft Platinum Solid Silicone Baby Doll Girl or Boy Ribber and Vattala with Rooted Hair
From
$199.99
12"&16" Flexible Solid Platinum Liquid Full Silicone Reborn Doll Baby Boy or Girl Naluta and Boliker
From
$199.99
12" & 16" Full Platinum Silicone Newborn Baby Doll Boy or Girl Kapa and Taver
From
$199.99
12"&16" Full Silicone Boy or Girl Tabara and Uilfsa with Chubby Face and Flexible Limbs
From
$199.99
Reborn Weighted Newborn Full Silicone Baby Doll Boy and Girl Ladd with Floppy and Huggable Body Just Like A Real Baby
From
$169.99
Realistic Full Body Caucasian Silicone Baby Doll Nance with Posable Limbs, Safe for Age 3+ Kids
From
$169.99
Sorry, there are no products in this collection.
Baby Accessories
View all
SALE
[For 12'' Dolls] Baby Shoes for 12 Inches Reborn Dolls (Set of 2 Pairs) Sneakers Set
$9.99
$16.99
SAVE
41%
SALE
[Suitable for 17''~22'' Girl] Adoption Reborn Baby Essentials-8pcs Gift Set
$47.99
$59.99
SAVE
20%
SALE
18-22 Inches Dollreborns® Reborn Baby Princess Suit for 7 Piece Clothes Set
$24.99
$37.99
SAVE
34%
Three Style 6 Piece Set Safest Pacifier and Bottle Reborn Baby Doll Accessories
From
$9.99
17"-22" Reborn Baby Washable Reusable 2 Pcs Diapers Panties Accessories
$9.99
SALE
[Suitable for 17"-22'' Dolls] Reborn Baby Essentials-8pcs Set Accessories
$46.99
$59.99
SAVE
22%
Sign up and save
Entice customers to sign up for your mailing list with discounts or exclusive offers. Include an image for extra impact.
Subscribe
Thanks for subscribing
Optional button