0

Summer flamingo

Non-returnable

Pre-cut figure printed on 3/16” Foam Board (lightweight and slim). Ready-made design for decorative use.

  • Select Size
  • Quantity
Price
$18.00 - $50.00
Verano Garza
Product Details
Items have been added to cart.
One or more items could not be added to cart due to certain restrictions.
Added to cart
- There was an error adding to cart. Please try again.
Quantity updated
- An error occurred. Please try again later.
Deleted from cart
- Can't delete this product from the cart at the moment. Please try again later.
// --- OCULTAR CAMPOS DE ENVÍO SI PICK-UP ESTÁ SELECCIONADO --- document.addEventListener("DOMContentLoaded", function () { function updateShippingVisibility() { const shippingOptions = document.querySelectorAll("input[name='shippingMethod']"); const shippingFields = document.querySelectorAll( "input[name='shippingAddress.firstName'], input[name='shippingAddress.lastName'], textarea[name='shippingAddress.address1'], input[name='shippingAddress.city'], select[name='shippingAddress.stateOrProvince'], input[name='shippingAddress.postalCode'], input[name='shippingAddress.phone']" ); let isPickup = false; shippingOptions.forEach(opt => { if (opt.checked && opt.value.toLowerCase().includes("pick")) { isPickup = true; } }); shippingFields.forEach(field => { const fieldWrapper = field.closest("div"); if (fieldWrapper) { fieldWrapper.style.display = isPickup ? "none" : "block"; } }); // Mensaje opcional let notice = document.getElementById("pickupNotice"); if (!notice) { notice = document.createElement("p"); notice.id = "pickupNotice"; notice.style.color = "green"; notice.style.fontWeight = "bold"; document.querySelector(".shipping-address")?.prepend(notice); } notice.innerText = isPickup ? "📍 You selected Store Pickup. Shipping address is not required." : ""; } const observer = new MutationObserver(updateShippingVisibility); observer.observe(document.body, { childList: true, subtree: true }); document.addEventListener("change", updateShippingVisibility); setTimeout(updateShippingVisibility, 500); });