  /* 🌈 Modern Premium Style – by ChatGPT */

  /* 🎨 Color Palette */
  :root {
    --primary-color: #ff0000; /* Trendy pink-red */
    --primary-dark: #ff0048;
    --accent-color: #ff0000;
    --text-dark: #1a1a1a;
    --text-muted: #777;
    --background: #ffffff;
    --transition: all 0.3s ease;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  /* 🌍 Global Layout */
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    margin: 0;
    padding-top: 75px;
    
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
  }

  /* 🔝 Banner */
  .top-banner {
    

    color: white;
    text-align: center;
    font-weight: 500;
    padding: 8px 0;
    letter-spacing: 0.5px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1050;
    box-shadow: var(--shadow-light);
  }

  /* 🧭 Layout */
  .main-content {
    margin-top: 90px;
    width: 90%;
    max-width: 1400px;
    padding: 20px;
  }


/* 🧱 Fix: Gleichbleibendes Layout, auch bei wenigen Produkten */
.page-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr)); /* immer 4 Spalten */
  gap: 25px;
  justify-items: center;
  align-items: start;
  min-height: 80vh; /* damit die Seite stabil bleibt */
}

/* 📱 Responsives Verhalten (Mobile-Ansicht bleibt dynamisch) */
@media (max-width: 1200px) {
  .page-container {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}

@media (max-width: 900px) {
  .page-container {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .page-container {
    grid-template-columns: 1fr;
  }
}



.main-content {
  min-height: 100vh; /* verhindert, dass alles zusammenschrumpft */
}


  .product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-hover);
  }

  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .product-card:hover img {
    transform: scale(1.07);
    filter: brightness(1.05);
  }

  .card-category {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  /* 🧩 Buttons */
  .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 14px;
    transition: var(--transition);
    border: none;
  }

  .btn-danger {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
  }

  .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 92, 141, 0.4);
  }

  .btn-light {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: 1px solid #ddd;
  }

  .btn-light:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
  }

  /* ⚡ Product Actions */
  .product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  /* 🔍 Search Bar */
  #search-bar {
    width: 60%;
    margin: 20px auto 40px auto;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 16px;
    transition: var(--transition);
  }

  #search-bar:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(255, 92, 141, 0.2);
    border-color: var(--primary-color);
  }

  /* 🦶 Footer */
  footer {
    text-align: center;
    background-color: #fff;
    color: #000;
    padding: 20px;
    font-size: 15px;
    border-top: 1px solid #eee;
    margin-top: 50px;
  }

  /* 🎧 Discord Button */
  .discord-link {
    display: inline-block;
    transition: var(--transition);
  }

  .discord-link:hover {
    transform: scale(1.07);
  }

  .discord-logo {
    width: 160px;
  }

  /* 📱 Responsive Design */
  @media (max-width: 768px) {
    #search-bar {
      width: 85%;
    }

    .product-card img {
      height: 180px;
    }

    .btn {
      font-size: 14px;
    }

    .product-actions {
      flex-direction: column;
    }
  }
  /* 🔥 Modern Overlay Buttons auf Produktbildern */
  /* 🏷️ Produkt-Titel Styling */

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .product-card:hover img {
    transform: scale(1.08);
  }


  
/* ✅ Hover-Vergrößerung für Bilder im Produktgrid */
.thumb img {
  transition: transform 0.4s ease, filter 0.3s ease;
}
/* === 💥 Garantierter Hover-Zoom-Fix === */

/* 1. Grundstruktur */

/* 2. Bildbereich – sorgt für Hover-Zoom */
.product-card img {
  width: 100%;
  height: 280px; /* Höhe leicht größer */
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
  pointer-events: auto;
  z-index: 1;
  position: relative;
}

/* 💫 Hier passiert der Hover */
.product-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}




.product-card .thumb img {
  transition: transform 0.3s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.05);
}
/* ---- Button styling tweaks ---- */
.product-actions .btn {
  padding: 10px 18px;             /* etwas größer */
  border-radius: 999px;           /* komplett rund */
  font-weight: 600;               /* kräftiger Text */
  font-size: 0.95rem;             /* leicht größerer Text */
  transition: all 0.2s ease-in-out;
}

.product-actions .btn-danger {
  background-color: var(--brand);
  border-color: var(--brand);
}

.product-actions .btn-danger:hover {
  background-color: var(--brand-2);
  border-color: var(--brand-2);
  transform: translateY(-2px);
}

.product-actions .btn-light {
  background-color: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
}

.product-actions .btn-light:hover {
  background-color: var(--brand);
  color: white;
  transform: translateY(-2px);
}
/* --- FIX: Price tag oben rechts im Bild korrekt positionieren --- */
.product-card {
  position: relative;
}

/* Bild füllt oberen Bereich */
.product-card .thumb {
  width: 100%;
  height: 230px; /* Höhe des oberen Bildbereichs */
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* kein eigener Radius mehr */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

/* Text- und Button-Bereich */
.product-card .card-body {
  flex: 1;
  padding: 14px 16px 18px;
}

/* Hover-Effekt */
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* 💰 Preis-Badge schöner + sichtbar über allem */
.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(180deg, #ff4d4d, #ff1f1f);
  color: white;
  padding: 6px 10px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 5;
  pointer-events: none;
}
.price-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
/* ✨ Header Layout Feinschliff */
.header-container {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto 30px auto;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  background: linear-gradient(180deg, #ff5a5a, #ffebf3);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.header-left h1 {
  font-weight: 700;
  font-size: 1.9rem;
  color: #222;
}

.header-left p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.search-box input {
  flex: 1;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
}

.search-box input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 92, 141, 0.2);
}

.search-box .btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 18px;
}
/* 🎨 Discord-Button Styling */
a.btn.btn-light.btn-sm.mt-2[href*="discord"] {
  background-color: #5865F2 !important; /* Discord Brand Color */
  color: white !important;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

a.btn.btn-light.btn-sm.mt-2[href*="discord"]:hover {
  background-color: #4752C4 !important; /* Slightly darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}
/* 🚀 FINAL FIX: Overlay Buttons bleiben nebeneinander */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: all 0.35s ease;
}

.product-card:hover .product-overlay {
  height: 80px;
  opacity: 1;
}

.product-overlay a {
  min-width: 130px;
  text-align: center;
  background-color: #ff4d6d;
  color: white;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.product-overlay a:hover {
  background-color: #ff1f4d;
  transform: translateY(-2px);
}
/* 💎 Bessere Tiefenwirkung für Produktkarten */
.product-card {
  background: #fff; /* klare, saubere Basis */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* sanfter, diffuser Schatten */
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 0, 0, 0.05); /* hauchdünner Akzent */
}

/* ✨ Hover-Effekt mit stärkerem Schatten und leichtem Glanz */
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25); /* rot-getönter Glow */
  background: linear-gradient(180deg, #fff, #fff5f7);
}

/* 💰 Preis-Tag soll sich klar abheben */
.price-tag {
  background: linear-gradient(135deg, #ff4d4d, #ff1f1f);
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* 🖼️ Bildrahmen sanft */
.product-card .thumb img {
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
body {
  background: linear-gradient(180deg, #fff0f3, #ffeef1, #ffffff);
}
/* 💎 FINAL FIX: Produktkarten mit klarer Tiefe und ohne störenden Rand */
.product-card {
  position: relative;
  background: #fff !important;
  border-radius: 18px !important;
  border: none !important; /* ❌ kein künstlicher Rand */
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.18) !important; /* kräftiger rot-getönter Schatten */
  transition: all 0.35s ease !important;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 22px 45px rgba(255, 0, 0, 0.3) !important;
  background: linear-gradient(180deg, #fff, #fff5f5) !important;
}

/* 🖼️ Bild etwas tiefer & weicher */
.product-card .thumb img {
  border-radius: 14px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.4s ease, filter 0.4s ease !important;
}

.product-card:hover .thumb img {
  transform: scale(1.07) !important;
  filter: brightness(1.08) !important;
}

/* 💰 Preis-Tag stärker hervorgehoben */
.price-tag {
  background: linear-gradient(135deg, #ff1f1f, #b30000) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 7px 12px !important;
  border-radius: 14px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.35) !important;
}
/* 🌟 Highlighted Header Section */



.header-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 0, 0, 0.25);
}

/* ✨ Optional: Glühender Rand-Effekt */
.header-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, #ff4d4d, #ff7a7a, #ffb3b3);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.25;
}

/* 🔍 Suchbox visuell betonen */
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 0 0 4px rgba(255, 50, 50, 0.15);
  transform: translateY(-2px);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  background: transparent;
}

/* 🔎 Suchbutton elegant hervorheben */
.search-box .btn {
  background: linear-gradient(135deg, #ff1f1f, #b30000);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.search-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* 💫 Leichte Trennung zum Produktbereich */
.main-content {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 0, 0, 0.08);
}
/* 🌟 Header – Clean Premium Look */
.header-container {
  position: relative;
  width: 95%;
  max-width: 1500px;
  margin: 0 auto 40px auto;
  padding: 45px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  background: linear-gradient(145deg, #fff, #fff5f5);
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* sanfter, cleaner Hover-Effekt */
.header-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(255, 0, 0, 0.25);
  background: linear-gradient(160deg, #fff, #fff0f0);
}

/* feiner Glow-Rand */
.header-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(255, 128, 128, 0.3), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.header-container:hover::before {
  opacity: 1;
}

/* Text Layer */
.header-left, .header-right {
  position: relative;
  z-index: 2;
}

/* Überschrift & Text */
.header-left h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.header-left p {
  color: #555;
  font-size: 1.05rem;
  margin-top: 10px;
}

/* Searchbox minimal cleaner */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 0 0 4px rgba(255, 50, 50, 0.15);
  transform: translateY(-2px);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

/* Button dezent rot */
.search-box .btn {
  background: linear-gradient(135deg, #ff1f1f, #b30000);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}

.search-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* Subtile Trennung danach */
.main-content {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 0, 0, 0.08);
}
/* 🧭 Filter Button Base Style */
.filter-btn {
  background: linear-gradient(145deg, #ffffff, #fff5f5);
  color: #b30000;
  font-weight: 600;
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 🔥 Hover Effekt */
.filter-btn:hover {
  background: linear-gradient(145deg, #ff1f1f, #b30000);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
  transform: translateY(-2px);
  border-color: transparent;
}

/* 🪄 Optional: Aktivzustand (wenn ausgewählt) */
.filter-btn.active {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.35);
  border: none;
}

/* 🧭 Container (wenn nebeneinander angezeigt) */
.filter-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* ✨ Optional: kleine Icons */
.filter-btn svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.filter-btn:hover svg {
  opacity: 1;
}
.fomo-text {
  font-weight: 700;
  color: #fff8f8;
  text-shadow: 0 0 4px rgba(255, 0, 0, 0.8);
  animation: shake 1.8s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-2px); }
  40%, 80% { transform: translateX(2px); }
}
.promo-bar {
  background: linear-gradient(90deg, #ff0000, #b30000);
  text-align: center;
  color: white;
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.promo-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation: glowText 2s ease-in-out infinite alternate;
}

#countdown {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: radial-gradient(circle at 50% 50%, #ff5555 0%, #ff0000 70%);
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
  animation: heartbeat 0.8s infinite alternate;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 8px white;
}

.promo-btn {
  background: linear-gradient(90deg, #ffcc00, #ffaa00);
  color: #000;
  padding: 10px 20px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.7);
  transition: 0.3s ease;
}

.promo-btn:hover {
  background: linear-gradient(90deg, #ffdd33, #ff9900);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 220, 0, 0.9);
}

@keyframes heartbeat {
  from {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
  }
  to {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 0, 0, 1);
  }
}

@keyframes glowText {
  from { text-shadow: 0 0 6px #fff, 0 0 12px #ff8080; }
  to   { text-shadow: 0 0 20px #fff, 0 0 40px #ff3333; }
}
.coupon-highlight {
  background: linear-gradient(90deg, #fff0f0, #fff8f8);
  border: 2px solid #ffd5d5;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.08);
}

.coupon-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}

.coupon-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #b30000;
}

.coupon-btn {
  background: linear-gradient(90deg, #ff3d3d, #ff7a3d);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .coupon-inner {
    flex-direction: column;
    text-align: center;
  }
}
.coupon-highlight {
  background: linear-gradient(90deg, #ff4d4d, #c21c1c);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(194, 28, 28, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.coupon-highlight .coupon-btn {
  background: white;
  color: #c21c1c;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coupon-highlight .coupon-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}
/* 🔥 Premium Bonus Banner */
.bonus-banner {
  background: linear-gradient(90deg, #ff0000, #ff6a00);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 60, 0, 0.4);
  margin: 40px auto 30px;
  max-width: 1200px;
  padding: 22px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: bannerPulse 4s ease-in-out infinite;
}

/* sanfter Glow */
@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 80, 0, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 100, 0, 0.8); }
}

.bonus-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bonus-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.bonus-text .smalltext {
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.95;
}

.bonus-btn {
  background: #fff;
  color: #d10000;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.4);
}

.bonus-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: #ffe5e5;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.6);
}

/* 🔹 Mobile */
@media (max-width: 768px) {
  .bonus-content {
    flex-direction: column;
    text-align: center;
  }

  .bonus-text {
    font-size: 1.2rem;
  }
}
.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background-color: var(--red);
  color: #fff;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.top-banner #countdown {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.top-banner a.btn {
  background: #fff;
  color: var(--red);
  border: none;
  transition: 0.2s;
}

.top-banner a.btn:hover {
  background: #f8d7da;
}
@media (max-width: 600px) {
  .top-banner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
/* ✅ Mobile Optimierungen */
@media (max-width: 768px) {
  /* 🔝 Promo Bar */
  .promo-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 10px;
  }

  .promo-bar .promo-inner {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .promo-bar #countdown {
    font-size: 1.1rem;
    font-weight: 700;
  }

  .promo-bar a.promo-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  /* 🧱 Header Container */
  .header-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }

  .header-left,
  .header-right {
    text-align: center;
    min-width: unset;
    width: 100%;
  }

  .header-right .btn {
    width: 100%;
    max-width: 280px;
  }

  /* 🔎 Suchleiste */
  .search-box {
    flex-direction: row;
    width: 100%;
  }

  /* 💰 Bonus-Banner */
  .bonus-banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px 14px;
  }

  .bonus-banner .bonus-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  /* 🛒 Produktgitter Abstand */
  #product-grid {
    margin-top: 10px;
  }

  /* 🔠 Schrift leicht anpassen */
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}
.kako-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.kako-footer .footer-links {
  font-size: 0.9rem;
}
.kako-footer .footer-links a {
  color: #000;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
}
.kako-footer .footer-links a:hover {
  color: #e60023;
}

.footer-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.footer-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-box h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.email-link {
  color: #e60023;
  font-weight: 500;
  text-decoration: none;
}
.email-link:hover {
  text-decoration: underline;
}
