Buche jetzt deine Fotobox

Fülle das Buchungsformular komplett aus und wir melden uns umgehend bei dir.

Wähle das passende Paket für deine Snap Booth Fotobox aus

Fotobox Glow Mirror

Wähle dein Paket aus:
Paketinfos

Fotobox Ilumi

Wähle dein Paket aus:
Paketinfos

Paparazzi Videobooth

Wähle dein Paket aus:
Paketinfos

360°Booth

Wähle dein Paket aus:
Paketinfos

Fotobox Baby Black

Wähle dein Paket aus:
Paketinfos

Fotobox Magic Mirror

Wähle dein Paket aus:
Paketinfos

Fotobox Tower

Wähle dein Paket aus:
Paketinfos

Fotobox Mini Mirror

Wähle dein Paket aus:
Paketinfos

Fotobox Mirranda

Wähle dein Paket aus:
Paketinfos
Bitte wähle eine Fotobox

Hintergrund auswählen

Mit wem haben wir das Vergnügen?

Etwas Infos zu deinem Event

Zusammenfassung

Fotobox Glow Mirror

 

Fotobox Ilumi

 

Paparazzi Videobooth

 

360°Booth

 

Fotobox Baby Black

 

Fotobox Magic Mirror

 

Fotobox Tower

 

Fotobox Mini Mirror

 

Fotobox Mirranda

 

Produktauswahl

Golden Stage und Gold Texture (Kopieren)

 

Goldene Sterne und Night Sparkle

 

Spektakel der Fantasie

 

Neon Tunnel und Digital Cube

 

Backstein und Clean White

 

Lichttunnel Industrial und Weisse Mauer mit Efeu

 

Backstein Rustikal und Altholz Dunkel

 

Holz mit Lichterkette und Backstein mit Licht

 

Trockenblumen Creme und Boho Feldkranz

 

Natur und Magie

 

Boho und Eleganz

 

Glamour und Goldrausch

 

Sternenstaub bei Nacht

 

Eisblauer und Neutral

 

Flower Power und Retro

 

Winter und Neutral

 

Liebe und Neutral

 

Grün & Neutral

 

Glamour und Neutral

 

Modern und Love

 

Action und Comic

 

Rustikal und Clean

 

Glamour und Party

 

Romantischer Hintergrund

 

Futuristischer Hintergrund

 

Festlicher Hintergrund

 

Dunkler Studiohintergrund

 

Natur und Neutral

 

Rein weiss

 

Rustikale Hochzeit und Goldene Lichter

 

Tropisches Grün und Art-Deco Gold

 

Goldene Ballons und Golden Hearts

 

Tropischer Strand und Zarte Herzen

 

Blumen/Rosen und Romantische Herzen

 

Goldene Geometrie und Mystischer Mondwald

 

Party Ballons und 3D Schwarz Geometrie

 

Hintergrund

Vorhaben

{{vorhaben}}

Eventdatum

{{eventdatum}}

Eventort

{{eventort}}

Mitteilung

Name und Adresse

{{firma @fallback=""}}

{{anrede}} {{gurken}}
{{vorname}} {{nachname}}
{{strasse}}
{{plz}} {{ort}}

Kontaktinfos

{{telefon}}
{{receiver_email}}

Event / Kontakt

const wrapper = document.querySelector('.summary_products');

function updateSummaryItems() {
  const allSummaryItems = wrapper.querySelectorAll('.summary_item');
  const checkedRadios = Array.from(document.querySelectorAll('input[type="radio"]:checked'));
  const checkedProductMap = new Map();

  checkedRadios.forEach(radio => {
    const produktAttr = radio.closest('.pkg-radio-item')?.getAttribute('data-produkt');
    const value = radio.value;
    if (produktAttr) {
      const productId = produktAttr.split('_')[0];
      checkedProductMap.set(productId, value);
    }
  });
  
  allSummaryItems.forEach(item => {
    const productId = item.getAttribute('data-product');
    const value = checkedProductMap.get(productId);
    const summaryLivePackage = item.querySelector('.summary_package_value');
    
    if (value) {
      item.style.display = 'flex';
      summaryLivePackage.textContent = value;
    } else {
      item.style.display = 'none';
    }
  });
}


function updateHiddenSummaryInput() {
  const summaryItems = document.querySelectorAll('.summary_item');
  const data = [];

  summaryItems.forEach(item => {
    if (getComputedStyle(item).display !== 'flex') return;

    const imageEl = item.querySelector('.summary_item-image');
    const titleEl = item.querySelector('h4');
    const valueEl = item.querySelector('.summary_package_value');

    data.push({
      image: imageEl?.getAttribute('src') || '',
      title: titleEl?.textContent.trim() || '',
      value: valueEl?.textContent.trim() || ''
    });
  });

  const hiddenInput = document.querySelector('.hidden-summary-array');
  if (hiddenInput) {
    hiddenInput.value = JSON.stringify(data);
  }
}