body {
    --primary-color: #e74540; /* Corporate Design Farbe */
    --button-active: green;  /* Verfügbare Buttons */
    --button-disabled: #ccc; /* Ausgegraute Buttons */
}

body:not(.wemove-confirmation-page) {
  background-image: url("../img/wemove-bg1.jpg") !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Bestätigungsseite: Sauberer Hintergrund */
body.wemove-confirmation-page {
  background: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

#event-form{
  max-width: 800px;
  margin: 20px auto;
}

/* ============================================
   ANMELDETYP-AUSWAHL CARDS (Step 0)
   ============================================ */

/* Überschrift und Text zentrieren in Step 0 */
.form-section[data-step="0"] h3,
.form-section[data-step="0"] > p {
  text-align: center !important;
}

.anmeldung-typ-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.anmeldung-card {
  background: #fff;
  border: 3px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}

.anmeldung-card:hover {
  transform: translateY(-5px);
  border-color: #e74540;
  box-shadow: 0 8px 20px rgba(231,69,64,0.2);
}

.anmeldung-card.selected {
  border-color: #e74540;
  background: #fff5f5;
  box-shadow: 0 8px 20px rgba(231,69,64,0.3);
}

.anmeldung-card .card-icon {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1;
}

.anmeldung-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.anmeldung-card .card-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #e74540;
  margin: 5px 0;
}

.anmeldung-card .card-description {
  font-size: 14px;
  color: #666;
  margin: 10px 0 20px 0;
  min-height: 40px;
}

.anmeldung-card .card-select-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.anmeldung-card .card-select-btn:hover {
  background: #e74540;
  transform: scale(1.05);
}

.anmeldung-card.selected .card-select-btn {
  background: #e74540;
}

/* Responsive: Tablets */
@media (max-width: 768px) {
  .anmeldung-typ-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .anmeldung-card {
    padding: 25px 15px;
  }
  
  .anmeldung-card .card-icon {
    font-size: 48px;
  }
  
  .anmeldung-card h4 {
    font-size: 20px;
  }
}

/* ============================================
   PRODUKTAUSWAHL CARDS (Step 1)
   ============================================ */
.produkt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.produkt-card {
  background: #fff;
  border: 3px solid #ddd;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}

.produkt-card:hover {
  transform: translateY(-5px);
  border-color: #e74540;
  box-shadow: 0 8px 20px rgba(231,69,64,0.2);
}

.produkt-card.selected {
  border-color: #e74540;
  background: #fff5f5;
  box-shadow: 0 8px 20px rgba(231,69,64,0.3);
}

.produkt-card .produkt-icon {
  font-size: 56px;
  margin-bottom: 15px;
  line-height: 1;
}

.produkt-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produkt-card .produkt-preis {
  font-size: 36px;
  font-weight: 700;
  color: #e74540;
  margin: 15px 0;
  line-height: 1;
}

.produkt-card .produkt-beschreibung {
  font-size: 14px;
  color: #666;
  margin: 10px 0 20px 0;
  min-height: 40px;
}

.produkt-card .produkt-select-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.produkt-card .produkt-select-btn:hover {
  background: #e74540;
  transform: scale(1.05);
}

.produkt-card.selected .produkt-select-btn {
  background: #e74540;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .produkt-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .produkt-card {
    padding: 20px 15px;
  }
  
  .produkt-card .produkt-icon {
    font-size: 48px;
  }
  
  .produkt-card h4 {
    font-size: 18px;
    min-height: 40px;
  }
  
  .produkt-card .produkt-preis {
    font-size: 32px;
  }
}

/* Weiter-Button generell rechtsbündig in allen Steps */
.next-btn {
  float: right !important;
}

/* Clearfix für alle Sections mit Buttons */
.form-section::after {
  content: "";
  display: table;
  clear: both;
}
#ferien-age-filter{
  cursor:pointer;
}
#ferien-filter-bar {
    font-size: 18px;
    border: 1px solid #ccc;
    background: #ffd814;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    text-align: center;
}

#ferien-filter-bar input#ferien-search-input,
#ferien-filter-bar select#ferien-age-filter {
    font-size: 18px;
    padding: 12px 16px;
    margin: 10px;
    border: 2px solid #888;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

#ferien-filter-bar input:focus,
#ferien-filter-bar select:focus {
    border-color: #0a58ca;
    box-shadow: 0 0 8px rgba(10,88,202,0.3);
    outline: none;
}

/* Mittagessen Checkbox */
.mittagessen-checkbox-wrapper {
  padding: 5px 0;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 6px 8px;
}

.mittagessen-checkbox-wrapper.ganztag-mode {
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
}

.mittagessen-checkbox-wrapper label {
  margin: 0;
  cursor: pointer;
}

.mittagessen-checkbox-wrapper input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
}

.mittagessen-checkbox-wrapper input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* ℹ️ Mittagessen Info-Icon (rund mit Hover-Div) */
.mittagessen-info-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: normal;
  color: #0d6efd;
  cursor: help;
  line-height: 1;
}

.mittagessen-info-badge.ganztag-geschenk {
  border-color: #28a745;
  color: #28a745;
  font-size: 12px;
}

.mittagessen-info-badge .dashicons {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

.mittagessen-info-badge .mittagessen-info-tooltip {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #e7f3ff;
  color: #084298;
  border: 1px solid #0d6efd;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 30;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-weight: normal;
}

.mittagessen-info-badge:hover .mittagessen-info-tooltip {
  display: block;
}

/* Gutscheincode Feedback */
.gutschein-feedback {
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.4;
  transition: opacity 0.4s ease;
}

.gutschein-feedback.ok {
  color: #2d8f00;
}

.gutschein-feedback.error {
  color: #d60000;
}

/* Multi-Gutscheincode Container */
#gutscheincode-container {
  margin-top: 20px;
}

.gutschein-row {
  margin-bottom: 20px;
  position: relative;
}

.gutschein-row .form-group {
  position: relative !important;
  margin-bottom: 0 !important;
}

.gutschein-row .form-group input.gutscheincode-input {
  width: 100% !important;
  padding: 12px 50px 12px 15px !important; /* Extra Padding rechts für Status-Icon */
  font-size: 14px !important;
  border: 2px solid #ddd !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

.gutschein-row .form-group input.gutscheincode-input:focus {
  border-color: #e74540 !important;
  box-shadow: 0 0 0 3px rgba(231, 69, 64, 0.1) !important;
  outline: none !important;
}

.gutschein-row .form-group label {
  position: absolute !important;
  top: 50% !important;
  left: 15px !important;
  transform: translateY(-50%) !important;
  background: #fff !important;
  padding: 0 5px !important;
  font-size: 14px !important;
  color: #666 !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
}

.gutschein-row .form-group input.gutscheincode-input:focus + label,
.gutschein-row .form-group input.gutscheincode-input:not(:placeholder-shown) + label {
  top: -1px !important;
  font-size: 12px !important;
  color: #e74540 !important;
}

.gutschein-status {
  position: absolute;
  right: 45px; /* Platz für Remove-Button lassen */
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
  z-index: 10;
}

.remove-gutschein-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-gutschein-btn:hover {
  background: #c82333;
  transform: translateY(-50%) scale(1.1);
}

#add-gutscheincode-btn {
  margin-top: 10px;
  padding: 12px 24px;
  background: #000;
  color: white;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#add-gutscheincode-btn:hover {
  background: #e74540;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#add-gutscheincode-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hinweis-box {
  background: #fffbe6;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.positiv-box {
  background: #e9ffe6;
  border-left: 4px solid #49ff07;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.wochenfilter {
  margin-bottom: 40px;
  margin-top: 40px;
}

.wochenfilter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-filter {
  background: #000;
  color: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
}

.btn-filter:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.beitrag-anzeige {
  margin-right: 5px;
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  color: #111;
  margin-top: 10px;
}



input:not([type="checkbox"]).valid, 
textarea.valid {
  border-color: #4CAF50 !important;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234CAF50" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M6.293 9.707a1 1 0 011.414 0L10 12l6.293-6.293a1 1 0 011.414 1.414l-7 7a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 30px;
}


select.valid {
  border-color: #4CAF50 !important;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234CAF50" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M6.293 9.707a1 1 0 011.414 0L10 12l6.293-6.293a1 1 0 011.414 1.414l-7 7a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 45px;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}


#ferien-form input{
  border: 1px solid #ccc;
  border-radius: 3px;
}

.ferien-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
  font-size: 13px;
}

@media (max-width: 600px) {
  .ferien-info-grid > div {
    flex: 1 1 100%;
  }
}


.ferien-preistabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ferien-preistabelle th,
.ferien-preistabelle td {
  padding: 2px 4px;
  text-align: left;
}
.ferien-preistabelle th {
    border: 1px solid #ccc;
}
.ferien-preistabelle td strong {
  color: #000;
}



.form-section h3{
    margin-bottom:25px;
    font-family: 'Oswald';
    text-transform: uppercase;
}
.tag-date {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: -6px;
  margin-bottom: 4px;
}


.tag-disabled {
  opacity: 0.5;
  position: relative;
  pointer-events: none;
  cursor: not-allowed;
}

.tag-disabled::before {
  content: "❌";
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 14px;
  color: #c00;
  pointer-events: none;
  z-index: 2;
}


.ferien-header-box {
   max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  background: #e9f4ff;
  border-left: 5px solid ;
  padding: 20px;
  margin: 20px auto;
  border-radius: 2px;
}

.ferien-header-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.ferien-header-box p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
}


.summary-block {
  background: #fefefe;
  border: 1px solid #ddd;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.summary-head {
  font-size: 17px;
  margin-bottom: 10px;
}
.summary-beitrag {
  position: relative;
  float: right;
}
.day-pill {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 10px;
  margin: 4px 6px 4px 0;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.summary-price-card {
  background: #fffaf2;
  padding: 20px 10px;
  border-radius: 10px;
  border: 1px solid #f3e1c8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 30px;
  margin-bottom: 30px;
}

.summary-price-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.price-summary-table {
  width: 100%;
  font-size: 15px;
  border-collapse: collapse;
}

.price-summary-table td {
  text-align: left;
  padding: 4px 6px;
  border-bottom: 1px solid #eee;
}

.price-summary-table .summary-total td {
  border-top: 2px solid #ddd;
  font-size: 16px;
  font-weight: bold;
  padding-top: 10px;
}

.checkbox label{
    cursor: pointer;
    user-select: none;
}

/* Label klickbar machen */
.checkbox-grid label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  user-select: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Input verstecken */
.checkbox-grid input[type="checkbox"],
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 2px;
  position: relative;
  background: #fff;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Haken */
.checkbox-grid input[type="checkbox"]::before,
.checkbox input[type="checkbox"]::before {
  content: "✔";
  color: black;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -8px;
  transform: scale(1.5);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Checked-Zustand */
.checkbox-grid input[type="checkbox"]:checked::before,
.checkbox input[type="checkbox"]:checked::before {
  opacity: 1;
}

/* Optional: Hover-Stil */
.checkbox-grid input[type="checkbox"]:hover,
.checkbox input[type="checkbox"]:hover {
  border-color: #ff5555;
  box-shadow: 0 0 3px #ff9999;
}


#ferien-form {
  max-width: 800px;
  margin: 40px auto;

}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
  margin-top: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-box {
  border: 1px solid #e0e0e0;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
}


.form-section,
.form-section-gutschein{
  padding: 30px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.tageselect-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tageselect-wrapper .form-group {
  flex: 1 1 18%;
}


.form-section {
  display: none;
}
.form-section.active {
  display: block;
}
#progress-bar-wrapper {
  margin-top: 20px;
}
#progress-bar {
  width: 0%;
  height: 8px;
  background: #e74540;
  transition: width 0.3s ease;
  border-radius: 4px;
}
#progress-text {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 6px;
}

/* Button-Stile */
.button-primary,
.next-btn,
.prev-btn,
.wemove-form-button {
  font-family: Oswald;
  letter-spacing: 1px;
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border: 1px solid #000;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-right: 10px;
}

.button-primary:hover,
.next-btn:hover,
.prev-btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.wemove-form-button {
  float: right;
  padding-left: 64px;
  padding-right: 64px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wemove-form-button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid black;

}

.monkey-in-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 1s ease, opacity 1s ease;
}

.wemove-form-button:hover .monkey-in-button {
  animation: monkey-jump 1.2s forwards;
}

@keyframes monkey-jump {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: calc(100% - 50px); /* Padding berücksichtigen */
    transform: translateY(-50%) ;
    opacity: 1;
  }
}


.monkey-loading {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  right: 10px;
  height: 30px;
}

.rotate-fade {
  display: inline-block;
  animation: rotateMonkey 1s linear infinite;
  opacity: 1;
}

@keyframes rotateMonkey {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wemove-form-success {
  background: #f0fff4;
  border: 1px solid #b2dfdb;
  padding: 30px;
  border-radius: 2px;
  font-size: 16px;
  color: #1b4332;
  line-height: 1.6;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  max-width: 900px;
  margin: 40px auto;
}

.wemove-form-storno {
  background: #e8e8e8;
  color: #949d99;
}


.wemove-form-success .icon {
  margin-top: 15px;
}

.wemove-form-success svg {
  display: inline-block;
  animation: popIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}


@keyframes monkey-jump {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: calc(100% - 50px); /* Padding berücksichtigen */
    transform: translateY(-50%) ;
    opacity: 1;
  }
}


/* Standard-Styling für alle Dropdowns */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-wrapper select {
    appearance: none; /* Standard-Dropdown-Pfeil ausblenden */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #9b9b9b;
    padding: 10px 35px 10px 15px; /* Platz für den Pfeil */
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Custom-Dropdown-Pfeil */
.custom-select-wrapper::after {
    content: "▼";  /* Alternativ: "\25BC" für Unicode-Pfeil */
    font-size: 14px;
    color: #888;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
  transition: right 0.3s ease;
}
.custom-select-wrapper.validated::after {
  right: 35px !important;
}

.ferien-status.green {
  color: green;
}
.ferien-status.orange {
  color: #e67e22;
}
.ferien-status.red {
  color: #e74540;
  font-weight: bold;
}


/* Dropdown-Fokus-Animation */
.custom-select-wrapper select:focus {
    outline: none;
    border-color: #e74540;
    box-shadow: 0 0 5px rgba(91, 27, 25, 0.5);
}

/* Größere Pfeil-Variante für Hover */
.custom-select-wrapper:hover::after {
    color: #e74540;
}

.zeitraum-warning {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #fff;
  border: 1px solid #e74540;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  z-index: 20;
}

.zeitraum-warning .zeitraum-tooltip {
  display: none;
  position: absolute;
  top: 22px;
  left: 0;
  background: #fff5f5;
  color: #cc0000;
  border: 1px solid #cc0000;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 30;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.zeitraum-warning:hover .zeitraum-tooltip {
  display: block;
}

/* 🎁 Letzter Tag Info-Icon (rot) */
.letzter-tag-info {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #fff;
  border: 1px solid #dc3545;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  z-index: 20;
}

.letzter-tag-info .letzter-tag-tooltip {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 0;
  background: #effbe9;
  color: #34912c;
  border: 1px solid #34912c;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 30;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.letzter-tag-info:hover .letzter-tag-tooltip {
  display: block;
}

.alter-hinweis {
  margin-top: 5px;
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 6px 10px;
  border-radius: 4px;
}
.alter-invalid input {
  border-color: #dc3545 !important;
}

.next-btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  border-color: #aaa;
}




/* ============================================
   ZUSAMMENFASSUNG & PREISBERECHNUNG - STEP 5
   KOMPLETT NEU IM WEMOVE DESIGN
   ============================================ */

/* Container */
#zusammenfassung-box {
  margin: 0 !important;
  padding: 0 !important;
}

#zusammenfassung-box .zusammenfassung-container {
  display: block !important;
  width: 100% !important;
}

/* Event Info Box - Roter Header */
#zusammenfassung-box .event-info-box {
  background: #fff !important;
  border: 1px solid #ed1c24 !important;
  border-radius: 3px !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

#zusammenfassung-box .event-info-box h4 {
  background: #ed1c24 !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#zusammenfassung-box .event-info-box h4 img.emoji {
  width: 24px !important;
  height: 24px !important;
}

#zusammenfassung-box .event-info-box p {
  padding: 12px 20px !important;
  margin: 0 !important;
  font-size: 14px !important;
  color: #333 !important;
  border-bottom: 1px solid #f5f5f5 !important;
  line-height: 1.8 !important;
}

#zusammenfassung-box .event-info-box p:last-child {
  border-bottom: none !important;
  padding-bottom: 20px !important;
}

#zusammenfassung-box .event-info-box p strong {
  color: #000 !important;
  font-weight: 700 !important;
  min-width: 90px !important;
  display: inline-block !important;
}

/* Teilnehmer Liste - Schwarzer Header */
#zusammenfassung-box .teilnehmer-liste {
  background: #fff !important;
  border: 1px solid #333 !important;
  border-radius: 3px !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

#zusammenfassung-box .teilnehmer-liste h4 {
  background: #000 !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#zusammenfassung-box .teilnehmer-liste h4 img.emoji {
  width: 24px !important;
  height: 24px !important;
}

/* Teilnehmer Tabelle */
#zusammenfassung-box .zusammenfassung-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

#zusammenfassung-box .zusammenfassung-table thead {
  background: #f5f5f5 !important;
}

#zusammenfassung-box .zusammenfassung-table thead th {
  background: #f8f8f8 !important;
  color: #000 !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid #ddd !important;
}

#zusammenfassung-box .zusammenfassung-table tbody td {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #333 !important;
  border-bottom: 1px solid #f5f5f5 !important;
}

#zusammenfassung-box .zusammenfassung-table tbody tr:last-child td {
  border-bottom: none !important;
}

#zusammenfassung-box .zusammenfassung-table tbody tr:hover {
  background: #fafafa !important;
}

#zusammenfassung-box .workshop-cell {
  padding: 12px 20px !important;
}

#zusammenfassung-box .workshop-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#zusammenfassung-box .workshop-list li {
  padding: 3px 0 !important;
  font-size: 13px !important;
  color: #666 !important;
  position: relative !important;
  padding-left: 16px !important;
}

#zusammenfassung-box .workshop-list li:before {
  content: "🎯" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  font-size: 12px !important;
}

/* Preisberechnung - Schwarzer Header */
#zusammenfassung-box .preis-berechnung {
  background: #fff !important;
  border: 1px solid #333 !important;
  border-radius: 3px !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

#zusammenfassung-box .preis-berechnung h4 {
  background: #000 !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#zusammenfassung-box .preis-berechnung h4 img.emoji {
  width: 24px !important;
  height: 24px !important;
}

/* Preis Tabelle */
#zusammenfassung-box .preis-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

#zusammenfassung-box .preis-table td {
  padding: 12px 20px !important;
  font-size: 14px !important;
  border-bottom: 1px solid #f5f5f5 !important;
}

#zusammenfassung-box .preis-table tr:last-child td {
  border-bottom: none !important;
}

#zusammenfassung-box .preis-row td {
  font-weight: 600 !important;
  color: #333 !important;
}

#zusammenfassung-box .preis-betrag {
  text-align: right !important;
  font-weight: 700 !important;
  color: #000 !important;
  font-size: 16px !important;
}

/* Rabatte */
#zusammenfassung-box .rabatte-header td {
  padding-top: 25px !important;
  padding-bottom: 15px !important;
  font-weight: 600 !important;
  color: #e74540 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

#zusammenfassung-box .rabatt-row td {
  color: #666 !important;
  font-size: 14px !important;
  padding: 12px 20px !important;
}

#zusammenfassung-box .rabatt-betrag {
  text-align: right !important;
  color: #e74540 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

#zusammenfassung-box .rabatt-summe {
  background: #fff5f5 !important;
  border-top: 1px solid #e74540 !important;
  border-bottom: 1px solid #e74540 !important;
}

#zusammenfassung-box .rabatt-summe td {
  padding: 15px 20px !important;
  font-weight: 600 !important;
  color: #e74540 !important;
  font-size: 15px !important;
}

/* Endpreis Row - HIGHLIGHT */
#zusammenfassung-box .endpreis-row {
  background: #000 !important;
}

#zusammenfassung-box .endpreis-row td {
  padding: 20px !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

#zusammenfassung-box .endpreis {
  text-align: right !important;
  display: block !important;
}

#zusammenfassung-box .alter-preis {
  text-decoration: line-through !important;
  color: #999 !important;
  font-size: 16px !important;
  margin-right: 15px !important;
}

#zusammenfassung-box .neuer-preis {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #7ed321 !important;
}

/* Zahlungs-Info - Gelber Alert */
#zusammenfassung-box .zahlungs-info {
  background: #fffbe6 !important;
  border: 3px solid #ffc107 !important;
  border-radius: 0 !important;
  padding: 20px 25px !important;
  margin-top: 25px !important;
  box-shadow: 0 4px 12px rgba(255,193,7,0.2) !important;
}

#zusammenfassung-box .zahlungs-info p {
  margin: 8px 0 !important;
  font-size: 15px !important;
  color: #333 !important;
  line-height: 1.6 !important;
}

#zusammenfassung-box .zahlungs-info p:first-child {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #000 !important;
}

#zusammenfassung-box .zahlungs-info img.emoji {
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle !important;
}

/* Responsive */
@media (max-width: 768px) {
  #zusammenfassung-box .event-info-box h4,
  #zusammenfassung-box .teilnehmer-liste h4,
  #zusammenfassung-box .preis-berechnung h4 {
    font-size: 16px !important;
    padding: 15px 20px !important;
  }
  
  #zusammenfassung-box .event-info-box p,
  #zusammenfassung-box .zusammenfassung-table td,
  #zusammenfassung-box .preis-table td {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }
  
  #zusammenfassung-box .neuer-preis {
    font-size: 28px !important;
  }
}

/* Mobile Version */
@media (max-width: 800px) {
  .wemove-form-button{
    padding-left: 15px;
    padding-right: 15px;
  }
  .ferien-header-box {
    padding: 15px;
  }
  /* Checkbox-Grid: 2 Spalten auf Mobile */
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 12px !important;
  }
  
  .checkbox-grid label {
    font-size: 14px !important;
    padding: 8px !important;
    background: #f9f9f9 !important;
    border-radius: 6px !important;
    border: 1px solid #e0e0e0 !important;
    transition: background 0.2s ease !important;
  }
  
  .checkbox-grid label:active {
    background: #e0e0e0 !important;
  }
  
  /* Sonstiges alleine in letzter Zeile */
  .checkbox-grid label:last-child {
    grid-column: 1 / -1 !important;
  }
  
  .checkbox-grid input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
  
  /* Text-Input in Sonstiges */
  .checkbox-grid label input[type="text"] {
    width: 60% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    padding: 6px 10px !important;
    margin-left: 8px !important;
  }

/* Gutschein-Shop Styles wurden in gutschein-shop.css ausgelagert */

  .form-section{
    padding: 15px;
  }
  .tage-wrapper .form-group {
    flex: 1 1 100% !important;
  }

  .edit-tag-wrapper{
    flex: 1 1 10%;
  }
  .wemove-ferien-table {
    display: block;
    width: 100%;
  }

  .wemove-ferien-table thead {
    display: none;
  }

  .wemove-ferien-table tbody {
    display: block;
  }

  .wemove-ferien-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px;
    background: white;
  }

  .wemove-ferien-table td {
    border:none !important;
    text-align: center;
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  .wemove-ferien-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
    color: #444;
  }

  .wemove-ferien-table td.half-col {
    display: inline-block;
    width: 48% !important;
    vertical-align: top;
    padding-right: 5px;
  }
  .bt-col{
    height: 65px;
    width: 100% !important;
  }
  .wemove-form-button{
    float: none !important;
  }
}

/* Show Attendance Section */
.show-attendance-section {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.show-attendance-section img {
  max-width: 300px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.show-attendance-section label {
  cursor: pointer;
  user-select: none;
}

.show-attendance-section input[type="checkbox"] {
  cursor: pointer;
  accent-color: #000;
}

.show-attendance-section input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.show-attendance-section input[type="text"]:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

#last-day-text {
  color: #000;
  font-weight: 600;
}

@media (max-width: 600px) {
  .show-attendance-section {
    padding: 15px;
  }
  
  .show-attendance-section img {
    max-width: 100%;
  }
}

/* ===== WEMOVE NOTICE SYSTEM - Einheitlich für alle Typen ===== */
#wemove-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

.wemove-notice {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wemove-notice-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wemove-notice-icon {
    width: 68px;
    height: 48px;
    flex-shrink: 0;
}

.wemove-notice-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

/* Typ-spezifische Titel-Farben */
.wemove-notice-title.notice-success {
    color: #46b450;
}

.wemove-notice-title.notice-error {
    color: #e74540;
}

.wemove-notice-title.notice-warning {
    color: #ffb900;
}

.wemove-notice-title.notice-info {
    color: #00a0d2;
}

.wemove-notice-body {
    padding: 20px;
}

.wemove-notice-message {
    margin-bottom: 25px;
    line-height: 1.5;
    color: #495057;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.wemove-notice-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.wemove-notice-btn {
    padding: 8px 16px;
    border: 1px solid;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Single Button (Success/Error/Info) */
.wemove-notice-btn-single {
    background: #007cba;
    border-color: #005a87;
    color: #fff;
}

.wemove-notice-btn-single:hover {
    background: #005a87;
    border-color: #004a6b;
    color: #fff;
}

/* Cancel Button (Confirmation) */
.wemove-notice-btn-cancel {
    background: #f6f7f7;
    border-color: #dcdcde;
    color: #2c3338;
}

.wemove-notice-btn-cancel:hover {
    background: #f0f0f1;
    border-color: #8c8f94;
    color: #1d2327;
}

/* Confirm Button (Confirmation) */
.wemove-notice-btn-confirm {
    background: #007cba;
    border-color: #005a87;
    color: #fff;
}

.wemove-notice-btn-confirm:hover {
    background: #005a87;
    border-color: #004a6b;
    color: #fff;
}

/* Responsive für Mobile */
@media (max-width: 768px) {
    .wemove-notice {
        min-width: 320px;
        max-width: 95vw;
        margin: 0 10px;
    }
    
    .wemove-notice-header {
        padding: 15px;
    }
    
    .wemove-notice-title {
        font-size: 16px;
    }
    
    .wemove-notice-body {
        padding: 20px;
    }
    
    .wemove-notice-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .wemove-notice-btn {
        width: 100%;
        padding: 14px 20px;
    }
}
/* ===== ENDE WEMOVE NOTICE SYSTEM ===== */

/* ============================================================================
   WORKSHOP DETAIL POPUP
   ============================================================================ */

/* Overlay */
.workshop-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup Container */
.workshop-popup {
    background: #fff;
    border: 3px solid #000;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    opacity: 0;
    animation: popupFadeIn 0.3s ease 0.1s forwards;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Button */
.workshop-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-popup-close:hover {
    background: #e74540;
    transform: rotate(90deg);
}

/* Header */
.workshop-popup-header {
    background: #000;
    color: #fff;
    padding: 30px;
    padding-right: 70px;
}

.workshop-popup-header h2 {
    margin: 0 0 10px 0;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-popup-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.workshop-popup-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workshop-popup-meta-item .dashicons {
    font-size: 18px;
}

/* Body */
.workshop-popup-body {
    padding: 30px;
}

/* Bildergalerie */
.workshop-popup-images {
    margin-bottom: 30px;
}

.workshop-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.workshop-image-item {
    position: relative;
    overflow: hidden;
    border: 2px solid #000;
    aspect-ratio: 4/3;
}

.workshop-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-image-item:hover img {
    transform: scale(1.1);
}

/* Beschreibung */
.workshop-popup-description {
    margin-bottom: 30px;
}

.workshop-popup-description h3 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.workshop-popup-description p {
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Details Grid */
.workshop-popup-details {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #000;
}

.workshop-popup-details h3 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
}

.workshop-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.workshop-detail-item {
    display: flex;
    align-items: start;
    gap: 10px;
}

.workshop-detail-item .dashicons {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.workshop-detail-item strong {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.workshop-detail-item span {
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* Moderne WEMOVE Trainer-Card */
.workshop-trainer-card {
    background: #fff;
    border: 2px solid #000;
    margin-bottom: 20px;
    overflow: hidden;
}

.trainer-card-header {
    background: #000;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trainer-card-header .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.trainer-card-header h3 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 700;
}

.trainer-card-body {
    padding: 20px;
}

.trainer-card-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.trainer-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
    flex-shrink: 0;
}

.trainer-card-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trainer-card-avatar-placeholder .dashicons {
    font-size: 40px;
    color: #999;
}

.trainer-card-info {
    flex: 1;
}

.trainer-card-name {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.trainer-card-motto {
    font-style: italic;
    color: #666;
    margin: 0;
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.trainer-card-motto .dashicons {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trainer-card-description {
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
}

.trainer-card-description p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.trainer-card-contact {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trainer-card-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.trainer-card-email:hover {
    color: #e74540;
}

.trainer-card-email .dashicons {
    font-size: 18px;
}

.trainer-card-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.trainer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.trainer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.trainer-social-link .dashicons {
    font-size: 20px;
}

/* Responsive für Trainer-Card */
@media (max-width: 600px) {
    .trainer-card-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .trainer-card-motto {
        justify-content: center;
    }
    
    .trainer-card-contact {
        align-items: center;
    }
    
    .trainer-card-social {
        justify-content: center;
    }
}

/* Footer mit Buttons */
.workshop-popup-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.workshop-popup-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.workshop-popup-btn:hover {
    background: #e74540;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.workshop-popup-btn .dashicons {
    font-size: 18px;
}

.workshop-popup-btn-secondary {
    background: #6c757d;
}

.workshop-popup-btn-secondary:hover {
    background: #5a6268;
}

/* Workshop Card - Klickbar machen */
.participant-card .workshop-list-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.participant-card .workshop-list-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .workshop-popup-overlay {
        padding: 12px;
        width: auto;
    }
    
    .workshop-popup {
        max-height: 95vh;
        border-width: 2px;
    }
    
    .workshop-popup-header {
        padding: 20px;
        padding-right: 60px;
    }
    
    .workshop-popup-header h2 {
        font-size: 22px;
    }
    
    .workshop-popup-body {
        padding: 20px;
    }
    
    .workshop-images-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-details-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-popup-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .workshop-popup-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   EVENT HEADER BOX - NEUES LAYOUT
   ============================================================================ */

/* Event Title Row - Grid Layout wie event-header-grid für perfekte Spalten-Ausrichtung */
.event-title-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

/* Event Title - linksbündig */
.ferien-header-box .event-title {
    text-align: left;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 28px;
}

/* Products Title Row - Flexbox für Title + Payment Badges */
.products-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: -10px;
}

.products-title-row .products-title {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
}

/* Payment Trust Badges - rechtsbündig, klein, dezent */
.payment-trust-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}

.payment-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-weight: 500;
}

.payment-trust-badges .trust-badge .trust-icon {
    width: 14px;
    height: 14px;

    vertical-align: middle;
    fill: #4CAF50;
}

.payment-trust-badges .payment-separator {
    color: #ddd;
    margin: 0 4px;
}

.payment-trust-badges .payment-option {
    color: #999;
    font-weight: 400;
}

/* 2-spaltiges Grid-Layout: 2/5 Info, 3/5 Preise */
.event-header-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: start;

}

/* Info-Spalte */
.event-info-col .info-item {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.event-info-col .event-info-icon {
    display: inline-block;
    width: 24px;
}

/* Products-Spalte */
.event-products-col {
    width: 100%;
}


/* Discount Badges unter Tabelle */
.discount-badges-bottom {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.discount-badge.has-tooltip:hover {
    transform: translateY(-2px);
}

/* Custom Discount Tooltips */
.discount-tooltip {
    position: fixed;
    background: #000;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    max-width: 280px;
    z-index: 10000;
    display: none;
    pointer-events: none;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
}

/* Close Button für Mobile */
.discount-tooltip .tooltip-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.2s ease;
}

.discount-tooltip .tooltip-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive: Mobile Anpassungen */
@media (max-width: 768px) {
    .discount-tooltip {
        max-width: calc(100vw - 40px);
        padding: 10px 14px 10px 14px;
        font-size: 12px;
        line-height: 1.4;
        pointer-events: auto;
        position: fixed;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
    }
    
    .discount-tooltip .tooltip-close {
        display: flex;
    }
}


/* Produkt-Tabelle Styling */
.event-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.event-products-table th,
.event-products-table td {
    padding: 8px 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.event-products-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.event-products-table .product-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.event-products-table .product-row:hover {
    background-color: #f0f8ff;
}

/* Preis-Zellen - Inline Styling */
.price-cell {
    white-space: nowrap;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.price-early-bird {
    color: #28a745;
    font-weight: 700;
    font-size: 1.1em;
}

.price-regular {
    font-weight: 700;
}

/* Workshop-Zelle */
.workshops-cell {
    text-align: center;
}

.workshops-check {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #28a745;
    font-weight: 600;
}

.workshops-check .dashicons {
    color: #28a745;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.workshops-none {
    color: #999;
}

/* Beschreibung-Zelle */
.description-cell {
    color: #666;
    font-size: 0.9em;
}

/* Keine Tickets Message */
.no-tickets-message {
    color: #999;
    font-style: italic;
    margin: 20px 0;
}

/* Tooltip Card */
.product-tooltip-card {
    position: fixed;
    z-index: 10000;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    max-width: 400px;
    pointer-events: none;
    display: none;
}

/* Close Button für Product Tooltip */
.product-tooltip-card .tooltip-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #e74540;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.2s ease;
    z-index: 1;
}

.product-tooltip-card .tooltip-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.product-tooltip-card .tooltip-header {
    background: #000;
    color: #e74540;
    padding: 15px 20px;
    border-radius: 6px 6px 0 0;
}

.product-tooltip-card .tooltip-header h4 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: #fff;
}

.product-tooltip-card .tooltip-body {
    padding: 20px;
}

.product-tooltip-card .tooltip-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.product-tooltip-card .tooltip-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.product-tooltip-card .tooltip-price .early-bird-price {
    color: #28a745;
    font-size: 28px;
}

.product-tooltip-card .early-bird-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tooltip-card .tooltip-workshops {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 600;
}

.product-tooltip-card .tooltip-workshops .dashicons {
    color: #28a745;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.product-tooltip-card .tooltip-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Workshop-Details im Tooltip */
.tooltip-workshop-details {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.tooltip-workshop-details h5 {
    margin: 0 0 12px 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #333;
}

.workshop-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workshop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.workshop-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.workshop-thumb-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.workshop-info {
    flex: 1;
    min-width: 0;
}

.workshop-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.workshop-time {
    font-size: 12px;
    color: #666;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    /* Event Title Row - Stack auf Mobile */
    .event-title-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    /* Event Title - Kompakt und zentriert */
    .ferien-header-box .event-title {
        font-size: 20px;
        text-align: center;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    /* Products Title Row - Stack auf Mobile */
    .products-title-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .products-title-row .products-title {
        font-size: 14px;
        text-align: center;
    }
    
    /* Payment Trust Badges - Zentriert */
    .payment-trust-badges {
        font-size: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Grid auf 1 Spalte umschalten */
    .event-header-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Info-Spalte - Kompakt */
    .event-info-col .info-item {
        font-size: 13px;
        margin-bottom: 6px;
        display: flex;
        align-items: flex-start;
        gap: 6px;
    }
    
    .event-info-col .event-info-icon {
        width: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    /* Discount Badges - Kleiner und zentriert */
    .discount-badges-bottom {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 12px;
        padding-top: 8px;
    }
    
    .discount-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
    
    /* Tabelle kompakter */
    .event-products-table {
        font-size: 13px;
    }
    
    .event-products-table th,
    .event-products-table td {
        padding: 8px 6px;
    }
    
    /* Beschreibung-Spalte auf Mobile ausblenden */
    .event-products-table .description-cell,
    .event-products-table th:nth-child(4) {
        display: none;
    }
    
    /* Tooltip responsive */
    .product-tooltip-card {
        min-width: 250px;
        max-width: 90vw;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
        bottom: auto;
        position: fixed;
        pointer-events: auto;
    }
    
    .product-tooltip-card .tooltip-close {
        display: flex;
    }
    
    .product-tooltip-card .tooltip-header {
        padding-right: 40px;
    }
    
    .product-tooltip-card .tooltip-header h4 {
        font-size: 16px;
    }
    
    .product-tooltip-card .tooltip-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Noch kompakter auf sehr kleinen Screens */
    .ferien-header-box .event-title {
        font-size: 18px;
        padding: 0 5px;
    }
    
    .event-info-col .info-item {
        font-size: 12px;
    }
    
    .event-info-col .event-info-icon {
        width: 16px;
    }
    
    .products-title-row .products-title {
        font-size: 13px;
    }
    
    .payment-trust-badges {
        font-size: 9px;
    }
    
    .discount-badges-bottom {
        gap: 6px;
    }
    
    .discount-badge {
        font-size: 8px;
        padding: 3px 8px;
    }
    
    .event-products-table {
        font-size: 12px;
    }
    
    .event-products-table th,
    .event-products-table td {
        padding: 6px 4px;
    }
}

/* ============================================
   PARTICIPANT CARDS - MODERN DESIGN
   ============================================ */

#participants-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.participant-card {
    background: #fff;
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.participant-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.participant-card.has-product {
    border-color: #28a745 !important;
}

.participant-card.has-product:hover {
    border-color: #218838 !important;
}

.participant-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.participant-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0;
}

.participant-card-title .participant-number {
    color: #e74540;
}

.participant-card-title .self-badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.participant-delete-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.participant-delete-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.participant-delete-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.participant-card-body {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.participant-card-body .form-group {
    position: relative !important;
    margin-bottom: 0 !important;
    width: 100% !important;
}

.participant-card-body .form-group input,
.participant-card-body .form-group select,
.participant-card-body .form-group textarea {
    width: 100% !important;
    padding: 8px 15px !important;
    font-size: 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    outline: none !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

.participant-card-body .form-group:not(.full-width) > label {
    position: absolute !important;
    top: 50% !important;
    left: 15px !important;
    transform: translateY(-50%) !important;
    background: white !important;
    padding: 0 5px !important;
    font-size: 14px !important;
    color: #999 !important;
    transition: all 0.2s ease !important;
    pointer-events: none !important;
}

.participant-card-body .form-group:not(.full-width) input:focus + label,
.participant-card-body .form-group:not(.full-width) input:not(:placeholder-shown) + label,
.participant-card-body .form-group:not(.full-width) select:focus + label,
.participant-card-body .form-group:not(.full-width) select:valid + label,
.participant-card-body .form-group:not(.full-width) textarea:focus + label,
.participant-card-body .form-group:not(.full-width) textarea:not(:placeholder-shown) + label {
    top: -1px !important;
    font-size: 12px !important;
    color: #e74540 !important;
}

.participant-card-body .form-group.full-width {
    grid-column: 1 / -1 !important;
}

.participant-card-body .form-group.half-width {
    grid-column: span 3 !important;
}

.participant-card-body .form-group.third-width {
    grid-column: span 2 !important;
}

/* Kontaktdaten Section (Step 1) Styling */
.form-section[data-step="1"] .form-group {
    position: relative !important;
    margin-bottom: 20px !important;
}

.form-section[data-step="1"] .form-group input,
.form-section[data-step="1"] .form-group select,
.form-section[data-step="1"] .form-group textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

.form-section[data-step="1"] .form-group label {
    position: absolute !important;
    top: 50% !important;
    left: 15px !important;
    transform: translateY(-50%) !important;
    background: #fff !important;
    padding: 0 5px !important;
    font-size: 14px !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
}

.form-section[data-step="1"] .form-group input:focus,
.form-section[data-step="1"] .form-group select:focus,
.form-section[data-step="1"] .form-group textarea:focus {
    border-color: #e74540 !important;
    box-shadow: 0 0 0 3px rgba(231, 69, 64, 0.1) !important;
}

.form-section[data-step="1"] .form-group input:focus + label,
.form-section[data-step="1"] .form-group input:not(:placeholder-shown) + label,
.form-section[data-step="1"] .form-group select:focus + label,
.form-section[data-step="1"] .form-group select:valid + label,
.form-section[data-step="1"] .form-group textarea:focus + label,
.form-section[data-step="1"] .form-group textarea:not(:placeholder-shown) + label {
    top: -1px !important;
    font-size: 12px !important;
    color: #e74540 !important;
}

/* Desktop Grid-Layout für Kontaktdaten (Step 1) - ab 768px */
@media (min-width: 768px) {
    /* Grid nur auf contact-form-grid Container anwenden */
    .contact-form-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0 20px !important;
    }
    
    /* Zeile 1: E-Mail volle Breite */
    .contact-form-grid .form-group:nth-child(1) {
        grid-column: 1 / -1 !important;
    }
    
    /* Zeile 2: Vorname, Nachname nebeneinander */
    .contact-form-grid .form-group:nth-child(2) {
        grid-column: 1 / 3 !important;
    }
    .contact-form-grid .form-group:nth-child(3) {
        grid-column: 3 / 5 !important;
    }
    
    /* Zeile 3: Straße, PLZ, Ort, Land */
    .contact-form-grid .form-group:nth-child(4) {
        grid-column: 1 / 2 !important;
    }
    .contact-form-grid .form-group:nth-child(5) {
        grid-column: 2 / 3 !important;
    }
    .contact-form-grid .form-group:nth-child(6) {
        grid-column: 3 / 4 !important;
    }
    .contact-form-grid .form-group:nth-child(7) {
        grid-column: 4 / 5 !important;
    }
    
    /* Zeile 4: Telefon 1, Telefon 2 nebeneinander */
    .contact-form-grid .form-group:nth-child(8) {
        grid-column: 1 / 3 !important;
    }
    .contact-form-grid .form-group:nth-child(9) {
        grid-column: 3 / 5 !important;
    }
    
    /* Buttons Row: Flexbox für linksbündig/rechtsbündig */
    .form-buttons-row {
        display: flex !important;
        justify-content: space-between !important;
        margin-top: 20px !important;
    }
}

#add-myself-participant {
    background: #e74540;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

#add-myself-participant:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 69, 64, 0.3);
}

#add-myself-participant .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

#add-participant {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#add-participant:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#add-participant .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Interessiert an - Checkbox Group */
.interest-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

/* Interessiert an - Inline Checkbox Group */
.participant-card-body .form-group.full-width {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.participant-card-body .form-group.full-width > label {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #333 !important;
    flex-shrink: 0 !important;
}

.interest-checkbox-group-inline {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 !important;
    flex-wrap: nowrap !important;
}

.interest-checkbox-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.interest-checkbox-item input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #e74540 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.interest-checkbox-item label {
    position: static !important;
    transform: none !important;
    font-size: 14px !important;
    color: #333 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
    user-select: none !important;
}

.interest-checkbox-item label:hover {
    color: #e74540 !important;
}

/* Workshop-Auswahl Section */
#workshops-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
}

.workshop-participant-section {
    margin-bottom: 30px;
}

.workshop-participant-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74540;
}

.workshop-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.workshop-card {
    display: flex;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 120px;
}

.workshop-card:hover {
    border-color: #e74540;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.workshop-card.selected {
    border-color: #28a745;
    background: #f8fff9;
}

.workshop-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.workshop-card-thumbnail {
    width: 120px;
    min-width: 120px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
}

.workshop-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-card-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.workshop-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 6px 0;
}

.workshop-card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.workshop-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.workshop-card-description {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 8px;
}

.workshop-description-text {
    display: inline;
}

.workshop-read-more {
    color: #e74540;
    font-weight: 600;
    cursor: pointer;
    display: inline;
    margin-left: 5px;
    font-size: 12px;
    text-decoration: underline;
}

.workshop-read-more:hover {
    text-decoration: underline;
}

.workshop-card-trainer {
    font-size: 12px;
    color: #666;
    margin-top: auto;
}

/* Workshop Teilnehmerzahl Anzeige */
.workshop-count-display {
    font-weight: 600;
}

.loading-count {
    color: #999;
    font-style: italic;
}

/* Ausgebuchte Workshops */
.workshop-card.workshop-full {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.workshop-card.workshop-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.workshop-full-badge {
    background: #f44336 !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-selection-info {
    font-size: 16px;
    margin: 20px 0;
}

/* Workshop Upsell Message */
.workshop-upsell-message {
    background: #fff9e6;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.workshop-upsell-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.workshop-upsell-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.workshop-upsell-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 10px 0;
}

.workshop-upsell-content p:last-of-type {
    margin-bottom: 15px;
}

.workshop-upsell-back-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-upsell-back-btn:hover {
    background: #e74540;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 69, 64, 0.3);
}

/* Pulse Animation für Ticket-Button */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 69, 64, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 69, 64, 0);
    }
}

.pulse-animation {
    animation: pulse 1s ease-in-out 3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .workshop-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .workshop-card-thumbnail {
        width: 100%;
        height: 150px;
    }
    
    .workshop-card-content {
        padding: 12px 15px;
    }
    
    .workshop-card-title {
        font-size: 16px;
    }
    
    .workshop-participant-title {
        font-size: 20px;
    }
    
    .workshop-upsell-message {
        flex-direction: column;
        padding: 15px;
    }
    
    .workshop-upsell-icon {
        font-size: 24px;
    }
    
    .workshop-upsell-content h4 {
        font-size: 16px;
    }
    
    .workshop-upsell-back-btn {
        width: 100%;
    }
}

/* Event Details */
.event-details-compact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
}

.event-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: #e74540;
}

.event-separator {
    color: #ccc;
    font-size: 18px;
}

.event-date,
.event-time {
    color: #666;
    font-weight: 500;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.event-location:hover {
    color: #e74540;
}

.event-location .dashicons {
    font-size: 18px;
    color: #e74540;
}

/* Produkt auswählen Button in Participant Card */
.select-product-btn {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.select-product-btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.select-product-btn.selected {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.select-product-btn.selected:hover {
    background: #218838;
    border-color: #218838;
}

/* Product Selection Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.product-modal.active {
    display: block;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.product-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}

.product-modal-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: #000;
}

.product-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.product-modal-close:hover {
    background: #e74540;
    color: #fff;
}

.product-modal-close .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.product-modal-body {
    padding: 30px;
    max-height: calc(85vh - 100px);
    overflow-y: auto;
}

/* Product Cards im Modal */
#product-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: #e74540;
    box-shadow: 0 6px 20px rgba(231, 69, 64, 0.15);
    transform: translateY(-3px);
}

.product-card.selected {
    border-color: #28a745;
    background: #f0fff4;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: none;
}

.product-card.selected .product-card-badge {
    display: block;
}

.product-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    color: #000;
}

.product-card-price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 10px 0;
}

.product-card-price.early-bird {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-price .original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.product-card-workshops {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 12px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-card:hover .product-card-description {
    max-height: 200px;
}

.product-card-early-bird-badge {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
}

/* ============================================
   BESTÄTIGUNGSSEITE - WEMOVE DESIGN
   ============================================ */

.wemove-confirmation-wrapper {
    max-width: 730px;
    margin: 0 auto;
}

/* Hauptcard */
.confirmation-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 0;
    overflow: hidden;
}

/* Schwarzer Header - Zentriert */
.confirmation-card-header {
    background: #000;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.confirmation-card-header h1 {
    margin: 0 0 10px 0;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirmation-card-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Content Bereich */
.confirmation-content {
    padding: 30px;
}

/* Section */
.confirmation-section {
    margin-bottom: 30px;
}

.confirmation-section h2 {
    margin: 0 0 20px 0;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    color: #999;
}

/* Event Details - Kompakte Darstellung */
.event-details-section {
    margin-bottom: 40px !important;
}

.event-details-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 1.8;
}

.event-details-compact .event-title {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-details-compact .event-separator {
    color: #ccc;
    font-weight: 300;
    font-size: 20px;
}

.event-details-compact .event-date,
.event-details-compact .event-time {
    color: #666;
    font-size: 17px;
}

.event-details-compact .event-location {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.event-details-compact .event-location .dashicons {
    font-size: 20px;
}

.event-details-compact .event-location:hover {
    color: #e74540;
}

/* Teilnehmer Box */
.participant-box {
    background: #f8f9fa;
    border-left: 4px solid #000;
    margin-bottom: 15px;
}

.participant-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    position: relative;
}

.participant-header.participant-toggle {
    cursor: pointer;
    transition: background 0.2s ease;
}

.participant-header.participant-toggle:hover {
    background: #f0f0f0;
}

.participant-toggle-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000;
    transition: transform 0.3s ease;
}

.participant-header.active .participant-toggle-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.participant-header .participant-info {
    margin-left: 35px;
}

.participant-content {
    padding: 0 20px 20px 20px;
}

.participant-info {
    flex: 1;
}

.participant-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.participant-title .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.participant-title strong {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participant-badge-self {
    background: #28a745;
    color: #fff;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.participant-name {
    margin: 0 0 3px 0;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participant-age {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.participant-price {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
}

/* Ticket Box */
.ticket-box {
    background: #fff;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-box .dashicons {
    font-size: 20px;
}

.ticket-box strong {
    display: block;
    font-size: 14px;
}

.ticket-box span {
    color: #666;
    font-size: 13px;
}

/* Workshop Section */
.workshop-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.workshop-section-header .dashicons {
    font-size: 18px;
}

.workshop-section-header strong {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-grid {
    display: grid;
    gap: 12px;
}

.workshop-list-item {
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.workshop-list-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #000;
}

.workshop-list-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #000;
}

.workshop-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    flex-wrap: wrap;
}

.workshop-meta .dashicons {
    font-size: 14px;
    vertical-align: middle;
}

.workshop-meta .info-link {
    color: #e74540;
}

.workshop-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #000;
}

/* Zahlungsinformationen */
.payment-box {
    background: #f8f9fa;
    padding: 20px;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-total-label {
    font-size: 16px;
    font-weight: 600;
}

.payment-total-amount {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.payment-info-box {
    background: #fff;
    padding: 12px;
    border-left: 4px solid #000;
    margin-bottom: 15px;
}

.payment-info-box .dashicons {
    vertical-align: middle;
    font-size: 18px;
}

.payment-info-box span {
    font-size: 14px;
}

.payment-calculation {
    font-size: 13px;
    color: #666;
}

.payment-calculation strong {
    display: block;
    margin-bottom: 8px;
}

.payment-calculation-list {
    display: grid;
    gap: 5px;
    margin-left: 15px;
    text-align: right;
}

.payment-calculation-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-calculation-list strong {
    font-weight: 700;
}

.payment-calculation-list .discount-item {
    color: #28a745;
}

.payment-calculation-list .discount-total {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 8px;
}

.payment-calculation-list .discount-total strong {
    color: #28a745;
}

/* Share Section */
.share-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-top: 30px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.share-buttons a {
    max-width: 100%;
}

/* Contact */
.contact-text {
    margin-top: 20px;
    text-align: center;
}

/* ============================================================================
   RESPONSIVE DESIGN - BESTÄTIGUNGSSEITE
   ============================================================================ */

/* Desktop (>768px) */
@media (min-width: 769px) {
    body.wemove-confirmation-page {
        padding: 20px;
    }
}

/* Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    body.wemove-confirmation-page {
        padding: 12px;
    }
    
    .confirmation-card {
        border-radius: 8px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    /* KEIN Body Padding auf Mobile */
    body.wemove-confirmation-page {
        padding: 0 !important;
    }
    
    /* Card */
    .confirmation-card {
        border-radius: 0;
        box-shadow: none;
    }
    
    .confirmation-card-header {
        border-radius: 0;
        padding: 20px 16px;
    }
    
    .confirmation-card-header h1 {
        font-size: 24px;
    }
    
    .confirmation-content {
        padding: 16px;
    }
    
    .confirmation-section {
        margin-bottom: 24px;
    }
    
    .confirmation-section h2 {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        color: #999;
    }
    
    /* Event Details - Kompaktes Mobile Layout */
    .event-details-compact {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .event-title {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        display: block;
        color: #e74540;
        line-height: 1.2;
    }
    
    /* Datum + Zeit Container */
    .event-datetime {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    /* Datum + Zeit in einer Zeile */
    .event-date {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }
    
    .event-date::after {
        content: " • ";
        margin: 0 4px;
        color: #ccc;
    }
    
    .event-time {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }
    
    .event-separator {
        display: none;
    }
    
    /* Ort in eigener Zeile mit Icon */
    .event-location {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        color: #000;
        text-decoration: none;
        font-weight: 500;
        min-height: 44px;
    }
    
    .event-location .dashicons {
        color: #e74540;
        font-size: 18px;
        width: 18px;
        height: 18px;
    }
    
    /* Teilnehmer - Nicht gestaucht */
    .participant-box {
        margin-bottom: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .participant-header {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
    }
    
    .participant-info {
        flex: 1;
        min-width: 0;
    }
    
    .participant-toggle-arrow {
        flex-shrink: 0;
        margin-left: auto;
        font-size: 20px;
        color: #666;
    }
    
    .participant-title {
        font-size: 11px;
        color: #999;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    
    .participant-title strong {
        font-weight: 600;
    }
    
    .participant-name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 4px;
    }
    
    .participant-age {
        font-size: 13px;
        color: #666;
    }
    
    .participant-price {
        font-size: 22px;
        font-weight: 700;
        text-align: right;
        color: #000;
        flex-shrink: 0;
        padding-top: 8px;
    }
    
    .participant-content {
        padding: 16px;
        background: #f9f9f9;
        border-top: 1px solid #e0e0e0;
    }
    
    .participant-badge-self {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 9px;
        padding: 4px 8px;
        background: #4CAF50;
        color: #fff;
        border-radius: 3px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        z-index: 1;
    }
    
    .participant-header {
        position: relative;
    }
    
    .participant-toggle {
        min-height: 44px;
    }
    
    /* Ticket & Workshops */
    .ticket-box {
        padding: 12px;
        font-size: 14px;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .workshop-list-item {
        padding: 12px;
    }
    
    .workshop-list-item strong {
        font-size: 14px;
    }
    
    .workshop-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 12px;
    }
    
    .workshop-image {
        width: 60px;
        height: 60px;
    }
    
    /* Payment */
    .payment-box {
        padding: 16px;
    }
    
    .payment-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-total-amount {
        font-size: 28px;
    }
    
    .payment-calculation {
        font-size: 14px;
    }
    
    .payment-calculation-list {
        gap: 8px;
    }
    
    /* Share Buttons */
    .share-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    
    /* Edit Button */
    .confirmation-edit-btn {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Formular-Anpassungen */
    .participant-card {
        padding: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .participant-card h3 {
        font-size: 18px;
    }
    
    .price-badge {
        font-size: 16px;
        padding: 5px 10px;
    }
    
    .workshop-item {
        padding: 10px;
    }
    
    .workshop-item > div {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Header - Kompakt gestackt */
    .participant-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .participant-card-title {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .participant-card-title .self-badge {
        font-size: 9px;
        padding: 3px 8px;
        margin-left: 6px;
    }
    
    /* Body - 1 Spalte, jedes Feld eine Zeile */
    .participant-card-body {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 12px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Alle Felder auf volle Breite */
    .participant-card-body .form-group {
        grid-column: 1 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .participant-card-body .form-group.half-width,
    .participant-card-body .form-group.third-width {
        grid-column: 1 !important;
    }
    
    /* Input-Felder - Touch-optimiert */
    .participant-card-body .form-group input,
    .participant-card-body .form-group select,
    .participant-card-body .form-group textarea {
        min-height: 44px !important;
        font-size: 16px !important;
        padding: 10px 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border: 1px solid #ccc !important;
        border-radius: 8px !important;
        margin: 0 !important;
    }
    
    /* Labels - Besser lesbar */
    .participant-card-body .form-group:not(.full-width) > label {
        font-size: 11px !important;
    }
    
    .participant-card-body .form-group:not(.full-width) input:focus + label,
    .participant-card-body .form-group:not(.full-width) input:not(:placeholder-shown) + label,
    .participant-card-body .form-group:not(.full-width) select:focus + label,
    .participant-card-body .form-group:not(.full-width) select:valid + label,
    .participant-card-body .form-group:not(.full-width) textarea:focus + label,
    .participant-card-body .form-group:not(.full-width) textarea:not(:placeholder-shown) + label {
        font-size: 10px !important;
    }
    
    /* Interessiert an - Vertikal gestackt */
    .participant-card-body .form-group.full-width {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .participant-card-body .form-group.full-width > label:first-child {
        font-size: 13px !important;
        font-weight: 600 !important;
        margin-bottom: 5px !important;
        position: static !important;
        transform: none !important;
    }
    
    /* Interessiert an - Checkboxen vertikal auf Mobile */
    .interest-checkbox-group-inline {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        flex-wrap: wrap !important;
    }
    
    .interest-checkbox-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 44px !important;
        padding: 10px !important;
        background: #f9f9f9 !important;
        border-radius: 6px !important;
        border: 1px solid #e0e0e0 !important;
        cursor: pointer !important;
        transition: background 0.2s ease !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        white-space: normal !important;
    }
    
    .interest-checkbox-item:active {
        background: #e0e0e0 !important;
    }
    
    .interest-checkbox-item input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        min-height: auto !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .interest-checkbox-item label {
        flex: 1 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Textarea - Größer für bessere Usability */
    .participant-card-body textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }
    
    /* Ticket auswählen Button - Volle Breite */
    .select-product-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
        margin: 0 !important;
    }
    
    .participant-card-footer {
        padding: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #add-myself-participant,
    #add-participant {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .product-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .product-modal-header {
        padding: 20px;
    }
    
    .product-modal-header h3 {
        font-size: 20px;
    }
    
    .product-modal-body {
        padding: 20px;
    }
    
    #product-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Sehr kleine Phones (≤480px) */
@media (max-width: 480px) {
    .confirmation-card-header h1 {
        font-size: 20px;
    }
    
    .event-title {
        font-size: 18px;
    }
    
    .participant-name {
        font-size: 16px;
    }
    
    .payment-total-amount {
        font-size: 24px;
    }
}

/* ============================================================================
   CUSTOM WEMOVE MODAL (ersetzt alert/confirm)
   ============================================================================ */

.wemove-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.wemove-modal {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wemove-modal-header {
    background: #f5f5f5;
    padding: 20px 25px;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 10px 10px 0 0;
}

.wemove-modal-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.wemove-modal-body {
    padding: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.wemove-modal-body strong {
    color: #000;
    font-weight: 600;
}

.wemove-modal-footer {
    padding: 20px 25px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.wemove-modal-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wemove-modal-btn-primary {
    background: #000;
    color: #fff;
}

.wemove-modal-btn-primary:hover {
    background: #e74540;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 69, 64, 0.3);
}

.wemove-modal-btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.wemove-modal-btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wemove-modal {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .wemove-modal-header h3 {
        font-size: 18px;
    }
    
    .wemove-modal-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .wemove-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .wemove-modal-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ============================================
   EVENT OVERVIEW - PUBLIC VIEW
   [event_overview] Shortcode
   ============================================ */

.event-overview {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* --- HERO --- */
.event-overview__hero {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color, #e74540);
}

/* Datum über dem Titel */
.event-overview__date-above {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
}

.event-overview__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 9vw, 52px) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Viewport-skalierte Überschriften innerhalb event-overview */
.event-overview h2 {
    font-size: clamp(16px, 5vw, 24px);
}

.event-overview h3 {
    font-size: clamp(14px, 4vw, 20px);
}

.event-overview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.event-overview__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color, #e74540);
    flex: 0 1 auto;
}

.event-overview__meta-item--wide {
    width: 100%;
}

.event-overview__meta-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.event-overview__meta-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    display: block;
}

.event-overview__meta-value {
    font-size: 12px;
    font-weight: 500;
    color: #222;
}

.event-overview__meta-value a {
    color: var(--primary-color, #e74540);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-overview__meta-value a:hover {
    color: #000;
    text-decoration: underline;
}

/* --- SECTION TITLES --- */
.event-overview__section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(20px, 6vw, 28px) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color, #e74540);
    display: inline-block;
}

/* --- BESCHREIBUNG --- */
.event-overview__description {
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-overview__description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.event-overview__description-text p {
    margin: 0 0 12px 0;
}

.event-overview__description-text p:last-child {
    margin-bottom: 0;
}

/* --- WORKSHOPS --- */
.event-overview__workshops {
    margin-bottom: 30px;
}

.event-overview__workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Workshop Card */
.workshop-overview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Workshop Gallery */
.workshop-overview-card__gallery {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.workshop-overview-card__gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.workshop-overview-card__gallery-img--active {
    opacity: 1;
}

.workshop-overview-card__gallery-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.workshop-overview-card__gallery-prev,
.workshop-overview-card__gallery-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    color: #000;
    line-height: 1;
}

.workshop-overview-card__gallery-prev:hover,
.workshop-overview-card__gallery-next:hover {
    background: #fff;
}

.workshop-overview-card__gallery-counter {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* Workshop Content */
.workshop-overview-card__content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.workshop-overview-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.workshop-overview-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.workshop-overview-card__meta-item {
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Workshop Trainers Container (Multi-Trainer) */
.workshop-overview-card__trainers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

/* Workshop Trainer */
.workshop-overview-card__trainer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 auto;
    min-width: 180px;
}

.workshop-overview-card__trainer:hover {
    background: #eef0f2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.workshop-overview-card__trainer-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color, #e74540);
}

.workshop-overview-card__trainer-info {
    display: flex;
    flex-direction: column;
}

.workshop-overview-card__trainer-name {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}

.workshop-overview-card__trainer-motto {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Workshop Description Collapsible */
.workshop-overview-card__description {
    margin-bottom: 12px;
}

.workshop-overview-card__description--collapsible {
    position: relative;
}

.workshop-overview-card__description--collapsible .workshop-overview-card__description-text {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.workshop-overview-card__description--collapsible.workshop-overview-card__description--expanded .workshop-overview-card__description-text {
    max-height: 2000px;
}

.workshop-overview-card__description--collapsible::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.workshop-overview-card__description--collapsible.workshop-overview-card__description--expanded::after {
    opacity: 0;
}

.workshop-overview-card__description-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    white-space: pre-line;
}

.workshop-overview-card__description-text p {
    margin: 0 0 12px 0;
}

.workshop-overview-card__description-text p:last-child {
    margin-bottom: 0;
}

.workshop-overview-card__description-text strong {
    color: #222;
}

.workshop-overview-card__description-toggle {
    background: none;
    border: none;
    color: var(--primary-color, #e74540);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.workshop-overview-card__description-toggle:hover {
    color: #000;
}

/* Workshop Website Link */
.workshop-overview-card__website {
    display: inline-block;
    color: var(--primary-color, #e74540);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.workshop-overview-card__website:hover {
    color: #000;
}

/* Workshop Card Teaser */
.workshop-overview-card__teaser {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px 0;
}

/* Workshop Card Actions (wie Kurse-Cards) */
.workshop-overview-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

.workshop-details-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-details-btn:hover {
    background: #f5f5f5;
}

.workshop-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-book-btn:hover {
    background: #222;
    color: #fff;
    text-decoration: none;
}

.workshop-book-btn .monkey-in-button {
    width: 24px;
    height: auto;
    filter: invert(1);
}

/* ========================================
   Workshop Details Popup (gleicher Stil wie Kurse-Popup)
   ======================================== */
.workshop-popup-overlay,
#workshop-details-popup {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 999999 !important;
    padding: 20px !important;
    overflow-y: auto !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.workshop-popup-overlay.open,
#workshop-details-popup.open {
    display: flex !important;
}

.workshop-popup-content {
    background: #fff !important;
    max-width: 800px !important;
    width: 100% !important;
    min-height: 200px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000000 !important;
}

.workshop-popup-close {
    position: sticky;
    top: 15px;
    align-self: flex-end;
    margin: 15px 15px 0 0;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.workshop-popup-close:hover {
    transform: rotate(90deg);
}

.workshop-popup-body {
    padding: 0;
}

/* Workshop Popup Image Header */
.ws-popup-image {
    position: relative;
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    margin-top: -55px;
}

.ws-popup-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.ws-popup-image .ws-popup-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ws-popup-title-only {
    padding: 0 30px;
    margin-top: -30px;
}

.ws-popup-title-only .ws-popup-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin: 0 0 10px 0;
}

/* Workshop Popup Content */
.ws-popup-content {
    padding: 24px 30px 30px;
}

/* Workshop Popup Meta Grid */
.ws-popup-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.ws-popup-meta-item {
    display: flex;
    gap: 10px;
    line-height: 1.5;
    font-size: 14px;
    color: #333;
}

.ws-popup-meta-item .meta-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.ws-popup-meta-item strong {
    display: block;
    margin-bottom: 2px;
    color: #000;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Workshop Popup Trainer */
.ws-popup-trainer-list {
    margin-top: 8px;
}

.ws-popup-trainer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ws-popup-trainer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.ws-popup-trainer-item .trainer-link {
    color: var(--primary-color, #e74540);
    font-weight: 600;
    text-decoration: none;
}

.ws-popup-trainer-item .trainer-link:hover {
    text-decoration: underline;
}

.ws-popup-trainer-motto {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Workshop Popup Beschreibung */
.ws-popup-description {
    margin-bottom: 24px;
}

.ws-popup-description h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    color: #000;
}

.ws-popup-description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.ws-popup-description-text p {
    margin: 0 0 12px 0;
}

.ws-popup-description-text p:last-child {
    margin-bottom: 0;
}

.ws-popup-description-text strong {
    color: #222;
}

/* Workshop Popup Gallery */
.ws-popup-gallery {
    margin-bottom: 24px;
}

.ws-popup-gallery h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    color: #000;
}

.ws-popup-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.ws-popup-gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ws-popup-gallery-img:hover {
    transform: scale(1.03);
}

/* Workshop Popup Website Link */
.ws-popup-website {
    margin-bottom: 20px;
}

.ws-popup-website-link {
    color: var(--primary-color, #e74540);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ws-popup-website-link:hover {
    color: #000;
    text-decoration: underline;
}

/* Workshop Popup Actions */
.ws-popup-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ws-popup-book-btn {
    max-width: 300px;
}

/* Mobile */
@media (max-width: 768px) {
    .workshop-popup-content {
        max-width: 100% !important;
        max-height: 100vh !important;
        height: 100vh !important;
        border-radius: 0 !important;
    }

    .workshop-popup-close {
        margin: 10px 10px 0 0;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .ws-popup-image {
        max-height: 250px;
    }

    .ws-popup-image img {
        height: 250px;
    }

    .ws-popup-image .ws-popup-title {
        font-size: 22px;
        padding: 40px 20px 15px;
    }

    .ws-popup-content {
        padding: 20px;
    }

    .ws-popup-meta {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .ws-popup-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ws-popup-book-btn {
        max-width: 100%;
    }
}

/* --- PRODUCTS / TICKETS --- */
.event-overview__products {
    margin-bottom: 30px;
}

.event-overview__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-overview-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.product-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-overview-card--early-bird {
    border-color: #ff9800;
}

/* Early Bird Badge */
.product-overview-card__badge {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 6px 14px;
    position: absolute;
    top: 14px;
    right: -51px;
    transform: rotate(45deg);
    width: 177px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.product-overview-card__badge span:first-child {
    font-size: 11px;
}

.product-overview-card__badge span:last-child {
    font-size: 9px;
    font-weight: 700;
}

.product-overview-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

/* Product Price */
.product-overview-card__price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-overview-card__price-regular {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    font-family: 'Oswald', sans-serif;
}

.product-overview-card__price-original {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.product-overview-card__price-early-bird {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    font-family: 'Oswald', sans-serif;
}

/* Product Features */
.product-overview-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.product-overview-card__feature {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-overview-card__feature:last-child {
    border-bottom: none;
}

/* Product Description */
.product-overview-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.product-overview-card__description p {
    margin: 0 0 8px 0;
}

/* Hero CTA (oben im Hero) */
.event-overview__hero-cta {
    display: block !important;
    text-align: center !important;
    margin-top: 20px !important;
    width: 100% !important;
    position: static !important;
    float: none !important;
    clear: both !important;
}

/* --- CTA --- */
.event-overview__cta {
    text-align: center;
    padding: 40px 0;
}

.event-overview__cta-button.wemove-form-button {
    display: inline-flex !important;
    padding: 12px 64px !important;
    font-size: 18px !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    float: none !important;
    width: auto !important;
    margin: 0 auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.event-overview__cta-button.wemove-form-button:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid black;
}

.event-overview__cta--past {
    padding: 30px 0;
}

.event-overview__cta-past-text {
    font-size: 16px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* --- ERROR STATE --- */
.event-overview--error {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* --- LIGHTBOX --- */
.event-overview-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.event-overview-lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.event-overview-lightbox__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.event-overview-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 10;
}

.event-overview-lightbox__close:hover {
    transform: scale(1.2);
}

.event-overview-lightbox__img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.event-overview-lightbox__nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.event-overview-lightbox__prev,
.event-overview-lightbox__next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.event-overview-lightbox__prev:hover,
.event-overview-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.event-overview-lightbox__counter {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .event-overview__hero {
        padding: 24px 20px;
    }

    .event-overview__meta {
        flex-direction: column;
    }

    .event-overview__description {
        padding: 20px;
    }

    .event-overview__workshops-grid {
        grid-template-columns: 1fr;
    }

    .event-overview__products-grid {
        grid-template-columns: 1fr;
    }

    .event-overview__cta-button.wemove-form-button {
        padding: 12px 40px;
        font-size: 16px;
    }

    .event-overview-lightbox__content {
        padding: 20px;
    }

    .event-overview-lightbox__img {
        max-width: 95%;
    }
}

@media (max-width: 480px) {

    .workshop-overview-card__gallery {
        height: 180px;
    }

    .product-overview-card__price-regular,
    .product-overview-card__price-early-bird {
        font-size: 26px;
    }

    .event-overview__cta-button.wemove-form-button {
        display: flex;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }
}

/* ============================================
   EVENT CARDS OVERVIEW - [event_overview_all]
   Alle Events als Karten-Übersicht
   ============================================ */

.event-cards-overview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    width: 90%;
}

.event-cards-overview--empty {
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

/* Event Card */
.event-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.event-card--past {
    opacity: 0.7;
}

.event-card--past:hover {
    opacity: 1;
}

/* Card Image */
.event-card__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card__image img {
    transform: scale(1.05);
}

.event-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.event-card__image-icon {
    font-size: 48px;
}

/* Card Badges */
.event-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.event-card__badge--early-bird {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
}

.event-card__badge--past {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

/* Card Body */
.event-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 24px 24px;
}

.event-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.event-card__meta-item {
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.event-card__teaser {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px 0;
    flex: 1;
}

/* Card Footer */
.event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 14px;
}

.event-card__workshops {
    font-size: 13px;
    color: #666;
}

.event-card__price {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #e74540);
}

/* Card CTA */
.event-card__cta {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.event-card:hover .event-card__cta {
    background: var(--primary-color, #e74540);
}

/* Responsive */
@media (max-width: 768px) {
    .event-cards-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .event-card__image {
        height: 160px;
    }

    .event-card__title {
        font-size: 18px;
    }

    .event-card__body {
        padding: 16px 18px 18px;
    }
}
