Skip to content

Cart

Your cart is empty

Loved by moms. Trusted by photographers.
Steamed & refreshed before arrival
Low-wear, high-care gowns
Not mass-rented
Studio & outdoor ready

Low rotation. Thoughtfully cared for. Always refreshed.

Our gowns are reserved intentionally, worn sparingly, and prepared with care before every arrival.

"Retro" Pink Candy Petal Length Dress (3 year- 4 year)

Sale price$99.00 USD
Title:
📅 Arrival Date
📅 Return Date
document.addEventListener('DOMContentLoaded', initGallery); document.addEventListener('shopify:section:load', initGallery); function initGallery() { const section = document.querySelector('#shopify-section-template--16940692537566__main'); if (!section) return; const gallery = section.querySelector('.product-gallery'); const thumbnails = section.querySelectorAll('.thumbnail'); const mediaItems = gallery?.querySelectorAll('[data-media-id]'); const prevBtn = section.querySelector('.gallery-arrow--prev'); const nextBtn = section.querySelector('.gallery-arrow--next'); if (!gallery || !mediaItems.length) return; let currentIndex = 0; function showImage(index) { mediaItems.forEach((item, i) => { item.style.display = i === index ? 'block' : 'none'; }); thumbnails.forEach((thumb, i) => { thumb.classList.toggle('active', i === index); }); } showImage(currentIndex); thumbnails.forEach((thumb, index) => { thumb.addEventListener('click', function () { currentIndex = index; showImage(currentIndex); }); }); nextBtn?.addEventListener('click', function() { currentIndex = (currentIndex + 1) % mediaItems.length; showImage(currentIndex); }); prevBtn?.addEventListener('click', function() { currentIndex = (currentIndex - 1 + mediaItems.length) % mediaItems.length; showImage(currentIndex); }); }