/* ================================================
   Superevents - Hauptstylesheet
   Elegant Emerald & Champagne Theme
   ================================================ */

/* CSS Variables */
:root {
  --primary: #10b981;
  --secondary: #065f46;
  --accent: #C9A227;
  --accent-light: #E8D48A;
  --bg: #ffffff;
  --bg-cream: #FAF7F2;
  --card: #121821;
  --text: #064e3b;
  --muted: #6b7280;
  --ring: rgba(16,185,129,.35);
  --header-h: 100px;
}

/* Reset & Base */
* { box-sizing:border-box; margin:0; padding:0 }
body { font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif; color:var(--text); background:var(--bg) }

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Layout */
.container { width:min(1200px,92vw); margin:auto; }

/* ================================================
   Header - Elegant Emerald & Champagne
   FIXED beim Scrollen
   ================================================ */
header { position:fixed; top:0; left:0; right:0; z-index:100; background:#ffffff; padding:1rem 2rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; border-bottom:3px solid #C9A227; box-shadow:0 4px 16px rgba(6, 95, 70, 0.1) }
header > div { display:flex; align-items:center }
header nav { display:flex; align-items:center; gap:0 }
header nav a { margin-left:1.5rem; color:#065f46; text-decoration:none; font-weight:600; transition:all 0.3s ease; padding:0.5rem 1rem; border-radius:6px; position:relative }
header nav a::after { content:''; position:absolute; bottom:0; left:50%; width:0; height:2px; background:linear-gradient(90deg, #C9A227, #E8D48A); transition:all 0.3s ease; transform:translateX(-50%) }
header nav a:hover { color:#C9A227; transform:translateY(-2px) }
header nav a:hover::after { width:80% }
header nav a#warenkorb-indikator { position:relative; display:inline-flex; align-items:center; justify-content:center }
header nav a#warenkorb-indikator::after { content:attr(data-count); position:absolute; top:-6px; right:-6px; background:linear-gradient(135deg, #C9A227, #E8D48A); color:#065f46; font-size:0.7rem; font-weight:700; padding:0.25rem 0.4rem; border-radius:50%; min-width:20px; text-align:center; box-shadow:0 2px 8px rgba(201,162,39,0.4); width:auto; height:auto; left:auto; bottom:auto; transform:none }
header nav a#warenkorb-indikator:hover::after { width:auto }
#superevents_logo { height:70px; border-radius:12px }

/* ================================================
   Hero mit Hintergrund-Karussell
   ================================================ */
.hero { position:relative; min-height:70vh; display:flex; align-items:center; justify-content:flex-end; text-align:center; overflow:hidden; padding:140px 6vw 80px 0 }
.hero-bg { position:absolute; inset:0; overflow:hidden }
.hero-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(4,8,12,.55), rgba(4,8,12,.65) 35%, rgba(4,8,12,.78)) }
.slides { position:absolute; inset:0 }
.slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 900ms ease-in-out }
.slide.active { opacity:1 }
.hero-text { position:relative; z-index:2; color:#fff; }
.headline { font-size:clamp(2.4rem, 6.5vw, 4.5rem); line-height:1.05; font-weight:800; letter-spacing:-0.01em; }

@media (max-width:600px){ .hero{ min-height:56vh; padding:80px 0 56px 0 } }
@media (prefers-reduced-motion:reduce){ .slide{ transition:none } }

/* Hero foreground text + CTA */
.hero-text{width:min(840px,92vw);margin-inline:0;text-align:left;display:flex;flex-direction:column;align-items:flex-start;gap:16px;color:#fff}
.hero-text .sub{color:#E8D48A;margin-top:6px;max-width:60ch;line-height:1.55}
.hero-text .cta{display:inline-flex;align-items:center;gap:.6rem;padding:1rem 1.25rem;border-radius:14px;border:1px solid rgba(201,162,39,.35);background:linear-gradient(180deg,rgba(201,162,39,.25),rgba(201,162,39,.12));text-decoration:none;font-weight:800;color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}
.hero-text .cta:hover{transform:translateY(-1px)}
.hero-text .cta:focus-visible{outline:3px solid rgba(201,162,39,.5);outline-offset:2px}
.hero .container{position:relative;z-index:2}

/* ================================================
   Kategorie-Tab-Leiste
   Elegant Emerald & Champagne
   ================================================ */
.category-tabs{position:sticky; top:var(--header-h, 100px); z-index:70; background:linear-gradient(180deg, #FAF7F2 0%, #F5F0E6 100%); border-bottom:2px solid #C9A227; box-shadow:0 4px 20px rgba(201,162,39,0.15)}
.category-tabs .container{display:flex;gap:0;align-items:stretch;overflow:visible;padding:0;flex-wrap:nowrap;width:100%}
.category-tabs .tab-item{position:relative;flex:1 1 0;display:flex;align-items:stretch}
.category-tabs .tab-item + .tab-item{border-left:1px solid rgba(201,162,39,0.3)}
.category-tabs a{display:flex;justify-content:center;align-items:center;text-align:center;white-space:normal;line-height:1.2;padding:1rem 1rem;border:none;border-radius:0;text-decoration:none;color:#065f46;font-weight:600;background:transparent;min-width:0;flex:1 1 0;transition:all 0.3s ease;position:relative}
.category-tabs a::before{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg, #C9A227, #E8D48A);transform:scaleX(0);transition:transform 0.3s ease}
.category-tabs a:hover{background:rgba(201,162,39,0.12);color:#B8860B}
.category-tabs a:hover::before{transform:scaleX(1)}
.category-tabs a.active{background:linear-gradient(180deg, rgba(201,162,39,0.15) 0%, rgba(201,162,39,0.08) 100%);color:#065f46;font-weight:700}
.category-tabs a.active::before{transform:scaleX(1)}
.category-tabs a:focus-visible{outline:3px solid rgba(201,162,39,0.5);outline-offset:2px}

/* ================================================
   Dropdown unter Tab-Leiste
   ================================================ */
.category-dropdown{position:absolute; left:0; right:0; top:100%; z-index:80; background:linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%); border:1px solid rgba(201,162,39,0.25); border-top:none; box-shadow:0 20px 40px rgba(27,77,62,0.12); opacity:0; transform:translateY(8px); transition:opacity .28s ease, transform .28s ease; pointer-events:none; max-height:70vh; overflow:auto}
.category-dropdown.open{opacity:1; transform:translateY(0); pointer-events:auto}
.category-dropdown .container{padding:16px; width:100%; max-width:none; margin:0}
.menu-list{list-style:none;margin:0;padding:8px 0;display:block;text-align:left}
.menu-list a{display:flex;justify-content:flex-start;align-items:center;padding:12px 14px;text-decoration:none;color:#065f46;width:100%;text-align:left;transition:all 0.25s ease;border-radius:6px;margin:2px 0}
.menu-list li{margin:0}
.menu-list li + li{border-top:1px solid rgba(201,162,39,0.15)}
.menu-list a:hover{background:linear-gradient(90deg, rgba(201,162,39,0.18) 0%, rgba(240,215,140,0.12) 100%);color:#B8860B;padding-left:20px}
.menu-list a::before{content:'';display:inline-block;width:6px;height:6px;background:#C9A227;border-radius:50%;margin-right:10px;opacity:0;transition:opacity 0.25s ease}
.menu-list a:hover::before{opacity:1}
@media (max-width:640px){ .menu-grid{grid-template-columns:1fr} }

/* ================================================
   Info Sections - Mietinfos & Unsere Werte
   ================================================ */
.info-section {
  padding: 80px 0;
  scroll-margin-top: var(--header-h, 100px);
}
.info-section:nth-child(odd) {
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%);
}
.info-section:nth-child(even) {
  background: #FFFFFF;
}
.info-section .container {
  max-width: 900px;
}
.info-section h2 {
  color: #065f46;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.info-section h2 svg {
  color: #C9A227;
}
.info-section h2::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, transparent);
  margin-left: 1rem;
  border-radius: 2px;
}
.info-section h3 {
  color: #065f46;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-section h3:first-of-type {
  margin-top: 0;
}
.info-section h3::before {
  content: '';
  width: 4px;
  height: 1.2em;
  background: linear-gradient(180deg, #C9A227, #B8860B);
  border-radius: 2px;
}
.info-section p {
  color: #2c3e50;
  line-height: 1.75;
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.info-section li {
  padding: 0.7rem 0 0.7rem 1.75rem;
  position: relative;
  color: #2c3e50;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.info-section li:last-child {
  border-bottom: none;
}
.info-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A227;
  font-weight: 700;
}
.info-highlight {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.15), rgba(240, 215, 140, 0.08));
  border-left: 4px solid #C9A227;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}
.info-highlight p {
  margin: 0;
  font-weight: 500;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.info-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.12);
}
.info-card h4 {
  color: #065f46;
  font-size: 1.05rem;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-card h4 span {
  font-size: 1.3rem;
}
.info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a6c7d;
}
@media (max-width: 640px) {
  .info-section { padding: 50px 0; }
  .info-section h2 { font-size: 1.5rem; }
}

/* ================================================
   Timeline Stepper - Modern Design
   ================================================ */
.timeline {
  position: relative;
  padding: 0;
  margin: 2rem 0 0 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #C9A227 0%, #E8D48A 50%, #C9A227 100%);
  border-radius: 3px;
}
.timeline-step {
  position: relative;
  padding-left: 80px;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInStep 0.5s ease forwards;
}
.timeline-step:last-child {
  padding-bottom: 0;
}
.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }
.timeline-step:nth-child(6) { animation-delay: 0.6s; }
.timeline-step:nth-child(7) { animation-delay: 0.7s; }
@keyframes slideInStep {
  to { opacity: 1; transform: translateX(0); }
}
.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #065f46 0%, #2A6B55 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25), 0 0 0 4px #FAF7F2;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(6, 95, 70, 0.35), 0 0 0 4px #FAF7F2;
}
.timeline-marker svg {
  width: 26px;
  height: 26px;
  color: #E8D48A;
}
.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #C9A227;
  z-index: 1;
}
.timeline-content {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px rgba(6, 95, 70, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.timeline-step:hover .timeline-content {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(6, 95, 70, 0.1);
  border-color: rgba(201, 162, 39, 0.4);
}
.timeline-content h3 {
  color: #065f46;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.timeline-content h3::before {
  display: none;
}
.timeline-content p {
  color: #5a6c7d;
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}
.timeline-content .tip {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(240, 215, 140, 0.06));
  border-left: 3px solid #C9A227;
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #065f46;
}
.timeline-content ul {
  margin: 0.5rem 0 0 0;
  padding: 0;
  list-style: none;
}
.timeline-content li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: none;
  font-size: 0.95rem;
}
.timeline-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C9A227;
}
.timeline-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.timeline-intro p {
  font-size: 1.15rem;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
}
.timeline-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.05) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.timeline-cta p {
  font-size: 1.1rem;
  color: #065f46;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 640px) {
  .timeline::before { left: 20px; }
  .timeline-marker { width: 40px; height: 40px; }
  .timeline-marker svg { width: 20px; height: 20px; }
  .timeline-step { padding-left: 60px; }
  .timeline-content { padding: 1rem 1.25rem; }
}

/* ================================================
   Kontakt Section
   ================================================ */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%);
  scroll-margin-top: var(--header-h, 100px);
}

.contact-section h2 {
  color: #065f46;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-section h2 svg {
  color: #C9A227;
}

.contact-section h2::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, transparent);
  margin-left: 1rem;
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Kontaktformular */
.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(6, 95, 70, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-form-wrapper h3 {
  color: #065f46;
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
}

.contact-form-wrapper > p {
  color: #5a6c7d;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  color: #065f46;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(201, 162, 39, 0.25);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #065f46;
  transition: all 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #065f46;
  cursor: pointer;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: #5a6c7d;
  margin-bottom: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: #065f46;
  text-decoration: underline;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 95, 70, 0.35);
}

.contact-submit svg {
  transition: transform 0.3s ease;
}

.contact-submit:hover svg {
  transform: translateX(4px);
}

/* Kontaktinformationen */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card,
.contact-hours-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(6, 95, 70, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.contact-info-card h3,
.contact-hours-card h3 {
  color: #065f46;
  font-size: 1.25rem;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-hours-card h3 svg {
  color: #C9A227;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-item:first-of-type {
  padding-top: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: #065f46;
}

.contact-details strong {
  display: block;
  color: #065f46;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-details p {
  margin: 0;
  color: #2c3e50;
  line-height: 1.5;
}

.contact-details a {
  color: #065f46;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-details a:hover {
  color: #C9A227;
}

/* Öffnungszeiten */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  color: #2c3e50;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:first-child {
  font-weight: 500;
}

.hours-list li span:last-child {
  color: #065f46;
  font-weight: 600;
}

.hours-note {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(240, 215, 140, 0.06));
  border-left: 3px solid #C9A227;
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #065f46;
  margin: 0;
}

/* Responsive Kontakt */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-section h2 {
    font-size: 1.5rem;
  }
  
  .contact-form-wrapper,
  .contact-info-card,
  .contact-hours-card {
    padding: 1.5rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Form Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.contact-submit .spin {
  animation: spin 1s linear infinite;
}

/* ================================================
   Warenkorb Modal
   ================================================ */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--champagne-cream, #FAF7F2);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-modal-overlay.active .cart-modal {
  right: 0;
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--deep-emerald, #065f46) 0%, var(--emerald, #047857) 100%);
  color: white;
}

.cart-modal-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.cart-modal-header h3 svg {
  flex-shrink: 0;
}

.cart-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.cart-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #666;
  padding: 2rem;
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.cart-empty h4 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--deep-emerald, #065f46);
}

.cart-empty p {
  margin: 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-weight: 600;
  color: var(--deep-emerald, #065f46);
  margin-bottom: 0.25rem;
}

.cart-item-info {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.25rem;
}

.cart-item-quantity button {
  width: 28px;
  height: 28px;
  border: none;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald, #047857);
  transition: all 0.2s ease;
}

.cart-item-quantity button:hover {
  background: var(--emerald, #047857);
  color: white;
}

.cart-item-quantity span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 700;
  color: var(--champagne-gold, #C9A227);
  font-size: 1.1rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  color: #e53e3e;
}

.cart-modal-footer {
  padding: 1.5rem;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total span:first-child {
  font-weight: 500;
  color: #666;
}

#cart-total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-emerald, #065f46);
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.cart-btn-secondary {
  flex: 1;
  padding: 0.875rem 1rem;
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-btn-secondary:hover {
  background: #e5e5e5;
}

.cart-btn-primary {
  flex: 1;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--emerald, #047857) 0%, var(--bright-emerald, #10b981) 100%);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

/* Responsive für Warenkorb Modal */
@media (max-width: 480px) {
  .cart-modal {
    max-width: 100%;
  }
  
  .cart-item {
    padding: 0.75rem;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
  }
  
  .cart-actions {
    flex-direction: column;
  }
}

/* ================================================
   Floating WhatsApp Button
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #065f46;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #065f46;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* ================================================
   Moderner Footer - Elegant Emerald & Champagne
   ================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #065f46 100%);
  color: #ffffff;
  margin-top: 0;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-wave path {
  fill: #ffffff;
}

.footer-content {
  padding: 100px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-section h4 {
  color: #E8D48A;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, #E8D48A);
  border-radius: 2px;
}

.footer-logo img {
  height: 60px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  color: #E8D48A;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #C9A227;
  color: #065f46;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: #C9A227;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '→';
  color: #C9A227;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #E8D48A;
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
  color: #E8D48A !important;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-wave svg {
    height: 40px;
  }
  
  .footer-content {
    padding: 80px 0 30px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================================
   Legal Modals (Impressum, Datenschutz, AGB)
   ================================================ */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 95, 70, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal {
  background: #FAF7F2;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.legal-modal-overlay.active .legal-modal {
  transform: scale(1) translateY(0);
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: white;
}

.legal-modal-header h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.legal-modal-header h2 svg {
  flex-shrink: 0;
}

.legal-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.25s ease;
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.legal-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h3 {
  color: #065f46;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #C9A227;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: #047857;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: #065f46;
  text-decoration: underline;
}

.legal-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 1px solid #e0e0e0;
  border-left: 4px solid #C9A227;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 0.75rem;
}

.legal-card p {
  margin-bottom: 0.25rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

.legal-footer p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive für Legal Modals */
@media (max-width: 768px) {
  .legal-modal-overlay {
    padding: 1rem;
  }

  .legal-modal {
    max-height: 95vh;
    border-radius: 16px;
  }

  .legal-modal-header {
    padding: 1.25rem 1.5rem;
  }

  .legal-modal-header h2 {
    font-size: 1.25rem;
  }

  .legal-modal-body {
    padding: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.05rem;
  }
}

/* ================================================
   Mobile Navigation – Hamburger Menu
   ================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(201, 162, 39, 0.15);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #065f46;
  border-radius: 2px;
  position: absolute;
  left: 11px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay (shown behind mobile nav panel) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header.nav-open ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* ================================================
   Mobile Responsive – Header & Navigation
   ================================================ */
@media (max-width: 768px) {
  header {
    padding: 0.75rem 1.25rem;
  }

  #superevents_logo {
    height: 52px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 200;
    border-left: 3px solid #C9A227;
    overflow-y: auto;
  }

  header.nav-open nav {
    right: 0;
  }

  header nav a {
    margin-left: 0;
    width: 100%;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    font-size: 1rem;
  }

  header nav a:hover {
    transform: none;
  }

  header nav a::after {
    display: none;
  }

  /* Category Tabs – horizontal scroll on mobile */
  .category-tabs .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
  }

  .category-tabs .container::-webkit-scrollbar {
    display: none;
  }

  .category-tabs .tab-item {
    flex: 0 0 auto;
  }

  .category-tabs a {
    white-space: nowrap;
    padding: 0.875rem 0.75rem;
    font-size: 0.82rem;
  }

  /* Hero adjustments */
  .hero {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-text .sub {
    text-align: center;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.5rem 1rem;
  }

  #superevents_logo {
    height: 44px;
  }
}

