ALIGNED ACTION ALIGNED ACTION ALIGNED ACTION

unified DREAM

144,00 

Please select your desired colors ↑ 
min. 1 color – max. 3 colors

Product Info

Here you choose your unique colors to manifest your unique DREAM into reality and make it a lived and felt experience.
Your bag is uniqly crafted for you.

* Made from recycled tents
* Rainproof
* Light weight and foldable
* Big front bag and smaller back pocket for phone/wallet etc.
* Wear it around your shoulder or waist
* Washing machine proof
(40degree celsius)

* Made in Berlin by Sophia

We send with every new moon. Expect your order to arrive at the beginning of the next cycle. 

1. Right of Withdrawal
As a consumer, you have the right to cancel your order within 14 days without providing any reason. The withdrawal period begins on the day you or a person designated by you receives the goods.

2. Return Shipping Costs

  • If the goods are defective or incorrectly delivered, we will cover the return shipping costs.

  • In the case of a regular return (e.g., if you do not like the product), you are responsible for the direct costs of returning the item.

3. Conditions for a Refund

  • The goods must be unused, undamaged, and returned in their original packaging.

  • Discounted or personalized items are excluded from returns.

expand your dream

setTimeout(function () { const colorCircles = document.querySelectorAll(".color-circle"); let selectedColors = []; if (colorCircles.length === 0) { console.log("❌ Keine Farbkreise gefunden! Stelle sicher, dass sie existieren."); return; } console.log("✅ Farbkreise gefunden:", colorCircles); colorCircles.forEach(function (circle) { circle.addEventListener("click", function () { const color = this.getAttribute("data-color"); if (selectedColors.indexOf(color) !== -1) { // Falls die Farbe bereits gewählt wurde → entfernen selectedColors = selectedColors.filter(function (c) { return c !== color; }); this.classList.remove("selected"); } else { if (selectedColors.length < maxColors) { var maxColors = 3; var currentCount = selectedColors.length; if (currentCount < maxColors) { selectedColors.push(color); this.classList.add("selected"); } } console.log("🎨 Ausgewählte Farben:", selectedColors); }); }); }, 3000); // ⏳ Warte 3 Sekunden, damit die Elemente geladen werden document.addEventListener("DOMContentLoaded", function () { var colorCircles = document.querySelectorAll(".color-circle"); var selectedColors = []; colorCircles.forEach(function(circle) { circle.addEventListener("click", function () { var color = this.getAttribute("data-color"); if (selectedColors.indexOf(color) !== -1) { selectedColors = selectedColors.filter(function(c) { return c !== color; }); this.classList.remove("selected"); } else if (selectedColors.length !== 3) { selectedColors.push(color); this.classList.add("selected"); } document.getElementById("selectedColorsInput").value = selectedColors.join(", "); }); }); document.getElementById("addToCartButton").addEventListener("click", function () { var selectedColors = document.getElementById("selectedColorsInput").value; var productID = "981"; // Ersetze dies mit deiner echten Produkt-ID! if (selectedColors.length === 0) { alert("Bitte wähle mindestens eine Farbe aus!"); return; } var url = "/?add-to-cart=" + productID + "&colors=" + encodeURIComponent(selectedColors); fetch(url, { method: "GET" }) .then(function(response) { if (response.ok) { alert("Produkt wurde in den Warenkorb gelegt!"); window.location.href = "/warenkorb/"; } else { alert("Fehler beim Hinzufügen zum Warenkorb!"); } }) .catch(function(error) { console.error("Fehler:", error); }); }); }); document.getElementById("addToCartButton").addEventListener("click", function () { const selectedColors = document.getElementById("selectedColorsInput").value; const productID = "981"; // Setze hier deine echte Produkt-ID ein if (selectedColors.length === 0) { alert("Bitte wähle mindestens eine Farbe aus!"); return; } // WooCommerce Add-to-Cart-URL nutzen const url = `/warenkorb/?add-to-cart=${productID}&variation_id=${productID}&attribute_pa_farbe=${encodeURIComponent(selectedColors)}`; window.location.href = url; });