/* ===== MODERNE MOBILE DESIGN OPTIMIERUNGEN ===== */

/* ===== FULLSCREEN SEARCH STYLES ===== */

/* Search Icon Button in Navigation */
.search-icon-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-icon-btn {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  width: 600px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--lumiere-black);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 15px;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive for search bar */
@media (max-width: 768px) {
  .search-icon-btn {
    width: 180px;
    font-size: 14px;
    padding: 0 10px;
    gap: 8px;
  }
}

/* Fullscreen Search Overlay */
.fullscreen-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1a1a1a;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.fullscreen-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fullscreen-search-container {
  max-width: 100%;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Lumière Category Tabs in Search - Exact Copy from Main Page */
.lumiere-category-tabs {
  display: flex;
  gap: 12px;
  margin: 20px 0 40px 0;
  padding: 0 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.lumiere-category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lumiere-category-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transform: translateY(-1px);
}

.lumiere-category-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lumiere-category-tab.active:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.lumiere-category-tab i {
  font-size: 16px;
  opacity: 0.9;
}

.lumiere-category-tab.active i {
  opacity: 1;
}

.lumiere-category-tab span {
  font-weight: 500;
}

/* Search Category Groups */
.search-category-group {
  margin-bottom: 40px;
}

.search-category-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-category-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .search-category-products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .search-category-title {
    font-size: 18px;
  }
}

/* Search Header */
.fullscreen-search-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  padding-top: 20px;
}

.close-search-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Search Input */
.fullscreen-search-input-container {
  margin-bottom: 40px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-icon {
  position: absolute;
  left: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  z-index: 1;
}

.fullscreen-search-input {
  width: 100%;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  padding: 0 20px 0 60px;
  outline: none;
  transition: all 0.2s ease;
}

.fullscreen-search-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.fullscreen-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Search Section Titles */
.search-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
}

/* Search Categories */
.search-categories {
  margin-bottom: 40px;
}

.search-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.search-category-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.search-category-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.search-category-item i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  min-width: 20px;
}

.search-category-item span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Popular Search Tags */
.popular-searches {
  margin-bottom: 40px;
}

.popular-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.popular-search-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

.popular-search-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* All Products in Search */
.search-all-products {
  margin-top: 40px;
  margin-bottom: 40px;
}

.search-all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .search-all-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .search-all-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1201px) {
  .search-all-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Custom scrollbar for products grid */
.search-all-products-grid::-webkit-scrollbar {
  width: 6px;
}

.search-all-products-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.search-all-products-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.search-all-products-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.search-product-card {
  background: #c9a876;
  border: none;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  height: fit-content;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.search-product-image {
  width: 100%;
  height: 160px;
  background: #f0f0f0;
  margin-bottom: 0;
  object-fit: cover;
  display: block;
}

.search-product-info {
  padding: 12px;
  background: #c9a876;
}

.search-product-title {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.search-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.search-product-buttons {
  display: flex;
  gap: 8px;
}

.search-product-btn {
  flex: 1;
  padding: 8px;
  border: 1px solid #8b7355;
  background: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.search-product-btn:hover {
  background: #f8f8f8;
  border-color: #6b5d47;
}

.search-product-btn i {
  font-size: 14px;
}

/* Override Lumière cards in search to match black design */
.search-all-products .lumiere-product-card {
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #3a3a3a;
}

.search-all-products .lumiere-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border-color: #4a4a4a;
}

.search-all-products .lumiere-image-container {
  position: relative;
  background: #1a1a1a;
}

.search-all-products .lumiere-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #1a1a1a;
}

.search-all-products .lumiere-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.search-all-products .lumiere-wishlist-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.search-all-products .lumiere-card-content {
  background: #2a2a2a;
  padding: 12px;
}

.search-all-products .lumiere-product-title {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-all-products .lumiere-price {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.search-all-products .lumiere-add-to-cart-btn {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #4a4a4a;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-all-products .lumiere-add-to-cart-btn:hover {
  background: #333333;
  border-color: #5a5a5a;
}

/* Search Results */
.search-results {
  margin-bottom: 40px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.search-result-item {
  background: var(--lumiere-white);
  border: 1px solid var(--lumiere-gray-200);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-result-item:hover {
  border-color: var(--lumiere-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lumiere-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.search-result-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--lumiere-black);
}

.search-result-category {
  font-size: 12px;
  color: var(--lumiere-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* No Results Styling */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.no-results h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.no-results p {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .fullscreen-search-container {
    padding: 15px;
  }
  
  .fullscreen-search-header {
    margin-bottom: 30px;
  }
  
  .search-category-grid {
    grid-template-columns: 1fr;
  }
  
  .search-category-item {
    padding: 15px;
  }
  
  .fullscreen-search-input {
    height: 50px;
    font-size: 16px;
  }
  
  .search-section-title {
    font-size: 18px;
  }
}

/* Performance Optimizations */
.lazy-load {
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}

.lazy-loaded {
  opacity: 1;
}

.lazy-error {
  opacity: 0.3;
  background-color: #f5f5f5;
}

/* Wishlist Button States - moved to main section */

/* Globale Regeln gegen horizontales Scrollen */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Verhindere horizontales Scrollen nur auf mobilen Geräten */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* Lumière Design Exact Color Palette */
:root {
  /* Exact Lumière colors */
  --lumiere-black: #000000;
  --lumiere-white: #ffffff;
  --lumiere-gray-50: #fafafa;
  --lumiere-gray-100: #f5f5f5;
  --lumiere-gray-200: #eeeeee;
  --lumiere-gray-300: #e0e0e0;
  --lumiere-gray-400: #bdbdbd;
  --lumiere-gray-500: #9e9e9e;
  --lumiere-gray-600: #757575;
  --lumiere-gray-700: #616161;
  --lumiere-gray-800: #424242;
  --lumiere-gray-900: #212121;
  
  /* Primary colors */
  --primary-color: var(--lumiere-black);
  --secondary-color: var(--lumiere-gray-100);
  --accent-color: var(--lumiere-black);
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  
  /* Backgrounds */
  --body-bg: var(--lumiere-white);
  --card-bg: var(--lumiere-white);
  --section-bg: var(--lumiere-gray-50);
  --border-color: var(--lumiere-gray-200);
  
  /* Typography */
  --text-primary: var(--lumiere-black);
  --text-secondary: var(--lumiere-gray-600);
  --text-muted: var(--lumiere-gray-500);
  --text-light: var(--lumiere-white);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Border radius */
  --radius-sm: 2px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  
  /* Orange support colors (keeping existing functionality) */
  --orange-primary: #ff8c00;
  --orange-gradient: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
  --orange-light: #ffa726;
  --orange-dark: #e65100;

  /* Lumière feature colors */
  --lumiere-accent: var(--lumiere-gray-800);
  --lumiere-accent-light: var(--lumiere-gray-600);
  --lumiere-feature-bg: var(--lumiere-gray-900);
  --lumiere-feature-gradient: linear-gradient(135deg, var(--lumiere-gray-900) 0%, var(--lumiere-gray-800) 100%);
}

/* Lumière Design Exact Base Styles */
body {
  background: var(--body-bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lumière Adapted Top Banner */
.lumiere-top-banner {
  background: linear-gradient(135deg, var(--lumiere-black) 0%, var(--lumiere-gray-800) 100%);
  border-radius: var(--radius-xl);
  margin: 20px auto;
  position: relative;
  overflow: visible;
  max-width: 1000px;
  width: 95%;
}

.lumiere-hero-main {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--lumiere-white);
  position: relative;
  gap: 12px;
}

.lumiere-badge-circle {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--lumiere-white);
  color: var(--lumiere-black);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.lumiere-hero-text {
  flex: 1;
}

.lumiere-hero-text h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--lumiere-white);
}

.lumiere-hero-text p {
  font-size: 0.85rem;
  opacity: 0.9;
  color: var(--lumiere-white);
  margin: 0;
}

.lumiere-hero-products {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lumiere-hero-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Lumière Feature Banners Row */
.lumiere-feature-row {
  margin: 30px 0;
}

.lumiere-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.lumiere-feature-item {
  background: var(--lumiere-feature-gradient);
  color: var(--lumiere-white);
  padding: 25px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.lumiere-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.lumiere-feature-num {
  background: rgba(255, 255, 255, 0.2);
  color: var(--lumiere-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.lumiere-feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--lumiere-white);
}

.lumiere-feature-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  color: var(--lumiere-white);
}

/* Lumière Category Navigation */
.lumiere-category-nav {
  background: var(--lumiere-gray-50);
  padding: 20px 0;
  margin: 30px 0;
  border-radius: var(--radius-xl);
}

.lumiere-category-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Category Signature Colors */
:root {
  --category-alle: #667eea;
  --category-alle-light: rgba(102, 126, 234, 0.15);
  --category-technik: #4facfe;
  --category-technik-light: rgba(79, 172, 254, 0.15);
  --category-technik-bg: #e8fff4;
  --category-technik-bg-dark: #d0f5e8;
  --category-beleuchtung: #ffd700;
  --category-beleuchtung-light: rgba(255, 215, 0, 0.15);
  --category-beleuchtung-bg: #fffaeb;
  --category-beleuchtung-bg-dark: #fff3d1;
  --category-koerperpflege: #ff6b9d;
  --category-koerperpflege-light: rgba(255, 107, 157, 0.15);
  --category-koerperpflege-bg: #fff0f5;
  --category-koerperpflege-bg-dark: #ffe0eb;
  --category-haushalt: #43e97b;
  --category-haushalt-light: rgba(67, 233, 123, 0.15);
  --category-haushalt-bg: #ffe8f5;
  --category-haushalt-bg-dark: #ffd6eb;
}

.lumiere-category-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--lumiere-white);
  color: var(--lumiere-gray-700);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Base hover effect */
.lumiere-category-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Category-specific hover effects */
.lumiere-category-tab[data-category="alle"]:hover {
  background: var(--category-alle-light);
  color: var(--category-alle);
  border-color: var(--category-alle);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}

.lumiere-category-tab[data-category="Technik/Gadgets"]:hover {
  background: var(--category-technik-light);
  color: var(--category-technik);
  border-color: var(--category-technik);
  box-shadow: 0 4px 20px rgba(79, 172, 254, 0.25);
}

.lumiere-category-tab[data-category="Beleuchtung"]:hover {
  background: var(--category-beleuchtung-light);
  color: #b8860b; /* Darker gold for better readability */
  border-color: var(--category-beleuchtung);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}

.lumiere-category-tab[data-category="Körperpflege/Wellness"]:hover {
  background: var(--category-koerperpflege-light);
  color: var(--category-koerperpflege);
  border-color: var(--category-koerperpflege);
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.25);
}

.lumiere-category-tab[data-category="Haushalt und Küche"]:hover {
  background: var(--category-haushalt-light);
  color: var(--category-haushalt);
  border-color: var(--category-haushalt);
  box-shadow: 0 4px 20px rgba(67, 233, 123, 0.25);
}

/* Active/Selected state with stronger signature colors */
.lumiere-category-tab.active {
  color: var(--lumiere-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.lumiere-category-tab[data-category="alle"].active {
  background: linear-gradient(135deg, var(--category-alle), #5a67d8);
  border-color: var(--category-alle);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.lumiere-category-tab[data-category="Technik/Gadgets"].active {
  background: linear-gradient(135deg, var(--category-technik), #3182ce);
  border-color: var(--category-technik);
  box-shadow: 0 6px 25px rgba(79, 172, 254, 0.4);
}

.lumiere-category-tab[data-category="Beleuchtung"].active {
  background: linear-gradient(135deg, var(--category-beleuchtung), #ecc94b);
  border-color: var(--category-beleuchtung);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.lumiere-category-tab[data-category="Körperpflege/Wellness"].active {
  background: linear-gradient(135deg, var(--category-koerperpflege), #ed64a6);
  border-color: var(--category-koerperpflege);
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.lumiere-category-tab[data-category="Haushalt und Küche"].active {
  background: linear-gradient(135deg, var(--category-haushalt), #38a169);
  border-color: var(--category-haushalt);
  box-shadow: 0 6px 25px rgba(67, 233, 123, 0.4);
}

.lumiere-category-tab i {
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Icon glow effect on hover and active */
.lumiere-category-tab:hover i,
.lumiere-category-tab.active i {
  filter: drop-shadow(0 0 4px currentColor);
}

/* Hover effects for active categories - better readability */
.lumiere-category-tab.active:hover {
  transform: translateY(-2px) !important;
  opacity: 0.9;
}

.lumiere-category-tab[data-category="alle"].active:hover {
  background: linear-gradient(135deg, #5a67d8, var(--category-alle)) !important;
  color: var(--lumiere-white) !important;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5) !important;
}

.lumiere-category-tab[data-category="Technik/Gadgets"].active:hover {
  background: linear-gradient(135deg, #3182ce, var(--category-technik)) !important;
  color: var(--lumiere-white) !important;
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.5) !important;
}

.lumiere-category-tab[data-category="Beleuchtung"].active:hover {
  background: linear-gradient(135deg, #b8860b, var(--category-beleuchtung)) !important;
  color: var(--lumiere-white) !important;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5) !important;
}

.lumiere-category-tab[data-category="Körperpflege/Wellness"].active:hover {
  background: linear-gradient(135deg, #ed64a6, var(--category-koerperpflege)) !important;
  color: var(--lumiere-white) !important;
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5) !important;
}

.lumiere-category-tab[data-category="Haushalt und Küche"].active:hover {
  background: linear-gradient(135deg, #38a169, var(--category-haushalt)) !important;
  color: var(--lumiere-white) !important;
  box-shadow: 0 8px 30px rgba(67, 233, 123, 0.5) !important;
}

/* Responsive Design for Lumière Adapted Elements */
@media (max-width: 768px) {
  .lumiere-hero-main {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }
  
  .lumiere-badge-circle {
    position: static;
    margin-bottom: 15px;
  }
  
  .lumiere-hero-text h2 {
    font-size: 1.8rem;
  }
  
  .lumiere-hero-text p {
    font-size: 1rem;
  }
  
  .lumiere-hero-products {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .lumiere-feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lumiere-feature-item {
    padding: 20px 15px;
  }
  
  .lumiere-category-tabs {
    gap: 8px;
    padding: 0 10px;
  }
  
  .lumiere-category-tab {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .lumiere-category-tab span {
    display: none;
  }
  
  .lumiere-category-tab i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .lumiere-hero-main {
    padding: 20px 15px;
  }
  
  .lumiere-hero-text h2 {
    font-size: 1.5rem;
  }
  
  .lumiere-hero-img {
    width: 60px;
    height: 60px;
  }
  
  .lumiere-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .lumiere-category-nav {
    margin: 20px 0;
    padding: 15px 0;
  }
}

/* Responsive Design for Simplified Navigation */
@media (max-width: 768px) {
  .nav-content-simple {
    flex-direction: row;
    gap: 10px;
  }
  
  .search-bar-center {
    display: none !important;
  }
  
  .nav-actions-simple {
    order: 3;
    gap: 10px;
  }
  
  .nav-logo-simple {
    order: 1;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .simple-nav {
    padding: 10px 0;
  }
  
  .nav-content-simple {
    gap: 8px;
  }
  
  .nav-logo-simple a {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
  
  .nav-tagline {
    display: none;
  }
  
  .search-bar-center {
    display: none !important;
  }
  
  .cart-link {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .cart-link span:not(.cart-counter) {
    display: none;
  }
}

/* Simplified Navigation Bar (matching image) */
.simple-nav {
  background: var(--lumiere-white);
  border-bottom: 1px solid var(--lumiere-gray-200);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-content-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px;
}

/* Light transparency for mobile navigation */
@media (max-width: 768px) {
  .simple-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 10px 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }
  
  .simple-nav.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Add padding to body to compensate for fixed nav */
  body {
    padding-top: 60px !important;
  }
}

/* Desktop keeps normal navigation */
@media (min-width: 769px) {
  .simple-nav {
    position: static;
  }
  
  body {
    padding-top: 0;
  }
}

.nav-logo-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.nav-logo-simple a {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #000;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 0;
  margin-top: -10px;
}

.nav-tagline {
  font-size: 11px;
  color: var(--lumiere-gray-600);
  font-weight: 400;
  line-height: 1;
}

.search-bar-center {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

.search-input-group {
  display: flex;
  border: 1px solid var(--lumiere-gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--lumiere-white);
}

.search-field {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.search-field::placeholder {
  color: var(--lumiere-gray-500);
}

.search-button {
  background: var(--lumiere-black);
  color: var(--lumiere-white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.search-button:hover {
  background: var(--lumiere-gray-800);
}

.nav-actions-simple {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-simple {
  display: flex;
  align-items: center;
  color: var(--lumiere-gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
}

.nav-icon-simple:hover {
  color: var(--lumiere-black);
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.nav-icon-simple i {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Special hover effect for wishlist icon in header */
a#wishlistButton.nav-icon-simple:hover {
  background-color: rgba(231, 76, 60, 0.15) !important;
  transform: translateY(-2px) scale(1.05) !important;
  color: #dc2626 !important;
}

a#wishlistButton.nav-icon-simple:hover i.bi-heart {
  color: #dc2626 !important;
  font-weight: 900 !important;
  transform: scale(1.15) !important;
  animation: heartPulse 0.6s ease-in-out !important;
  text-shadow: 0 0 8px rgba(220, 38, 38, 0.5) !important;
}

#wishlistButton:active {
  transform: translateY(0) scale(1.02);
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.2); }
}

.cart-link {
  background: var(--lumiere-black);
  color: var(--lumiere-white) !important;
  padding: 8px 15px;
  border-radius: var(--radius);
  gap: 8px;
  font-weight: 500;
  position: relative;
}

.cart-link:hover {
  background: var(--lumiere-gray-800);
  color: var(--lumiere-white) !important;
}

.cart-counter {
  background: var(--lumiere-white);
  color: var(--lumiere-black);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}

/* Lumière Design Announcement Bar */
.announcement-bar {
  background: var(--lumiere-black);
  color: var(--lumiere-white);
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.announcement-slider {
  display: flex;
  animation: scroll 30s linear infinite;
}

.announcement-item {
  padding: 0 40px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Lumière Navigation */
.lumiere-nav {
  background: var(--body-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-logo a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn, .nav-icon {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.search-btn:hover, .nav-icon:hover {
  background: var(--section-bg);
}

.cart-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--lumiere-black);
  color: var(--lumiere-white);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  white-space: nowrap;
}

.nav-icons {
  display: flex;
  gap: 8px;
}

.cart-icon {
  position: relative;
}

/* Hide old mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-content {
  background: var(--body-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
}

.search-input {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 16px;
  outline: none;
}

.search-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Abstand zwischen Suchfeld und Lupen-Button */
.search-form .input-group {
  gap: 8px;
}

.search-form .input-group .form-control {
  margin-right: 0;
}

.search-form .input-group .btn {
  margin-left: 0;
}

/* Lumière Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.category-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.category-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-label {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
}

/* Product Grid - Lumière Style */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
    padding: 0;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 24px;
    }
}

/* Legacy product card styles for compatibility */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

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

/* Lumière Product Card Styles - Exact Match */
.lumiere-product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lumiere-product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* All product cards are white - no category-specific backgrounds */
.lumiere-product-card[data-category="Technik/Gadgets"],
.lumiere-product-card[data-category="Beleuchtung"],
.lumiere-product-card[data-category="Körperpflege/Wellness"],
.lumiere-product-card[data-category="Haushalt und Küche"] {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Simple hover effects - white background like in the image */
.lumiere-product-card[data-category="Technik/Gadgets"]:hover,
.lumiere-product-card[data-category="Beleuchtung"]:hover,
.lumiere-product-card[data-category="Körperpflege/Wellness"]:hover,
.lumiere-product-card[data-category="Haushalt und Küche"]:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    background: #ffffff;
}

/* All product titles are black like in the image */

/* Category-specific add-to-cart buttons - MATCHING CATEGORY BACKGROUNDS */
.lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, var(--category-technik-bg), var(--category-technik-bg-dark));
    color: #0a7ea4;
    border: 1px solid #b8f0e0;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2);
}

.lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, var(--category-beleuchtung-bg), var(--category-beleuchtung-bg-dark));
    color: #8b6914;
    border: 1px solid #ffe4a1;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.lumiere-product-card[data-category="Körperpflege/Wellness"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, var(--category-koerperpflege-bg), var(--category-koerperpflege-bg-dark));
    color: #c41e5a;
    border: 1px solid #ffb8d4;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

.lumiere-product-card[data-category="Haushalt und Küche"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, var(--category-haushalt-bg), var(--category-haushalt-bg-dark));
    color: #b8006b;
    border: 1px solid #ffb8e1;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

/* Hover-Effekte für kategorie-spezifische Buttons - DARKER BACKGROUNDS */
.lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--category-technik-bg-dark), #b8e8d8);
    color: #086a8a;
    border-color: #8edcc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--category-beleuchtung-bg-dark), #ffe8b8);
    color: #6b5010;
    border-color: #ffd480;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.lumiere-product-card[data-category="Körperpflege/Wellness"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--category-koerperpflege-bg-dark), #ffcce0);
    color: #a01848;
    border-color: #ff9cc0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.lumiere-product-card[data-category="Haushalt und Küche"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--category-haushalt-bg-dark), #ffbdd8);
    color: #900055;
    border-color: #ff9ccd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.lumiere-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #ffffff;
    flex-shrink: 0;
}

.lumiere-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.lumiere-product-card:hover .lumiere-product-image {
    transform: scale(1.02);
}

.lumiere-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lumiere-wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lumiere-wishlist-btn.active {
    background: #e74c3c !important;
    color: white !important;
    border-color: #e74c3c !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.lumiere-wishlist-btn.active:hover {
    background: #c0392b !important;
    border-color: #c0392b !important;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(192, 57, 43, 0.4);
}

.lumiere-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lumiere-product-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #333333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 36px;
}

.lumiere-price-section {
    margin: 8px 0;
}

.lumiere-price {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Default button style for "Alle" category */
.lumiere-add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
    color: #4a5fc8;
    border: 1px solid #c8d4ff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e0e8ff, #d0dcff);
    color: #3a4fb8;
    border-color: #a8b8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.lumiere-add-to-cart-btn:disabled {
    background: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* Navigation Arrows - Enhanced contrast for pastel backgrounds */
.scroll-arrow {
    position: absolute;
    bottom: 5px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.scroll-arrow:hover {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transform: scale(1.1);
}

.scroll-arrow:hover i {
    color: #ffffff;
}

.scroll-arrow-left {
    right: 60px;
}

.scroll-arrow-right {
    right: 10px;
}

.scroll-arrow i {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
}

/* Scroll Controls - verstecken da wir scroll-arrow verwenden */
.scroll-controls {
    display: none;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.01em;
}

/* Horizontal Scroll Grid - Original Style */
.product-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.product-scroll-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 20px 60px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.product-scroll-grid:active {
    cursor: grabbing;
}

.product-scroll-grid.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

/* Hide scrollbar completely */
.product-scroll-grid::-webkit-scrollbar {
    display: none;
}

/* Legacy styles for backward compatibility */
.product-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.product-card:hover .product-image {
  transform: scale(1.05);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.wishlist-btn:hover {
  background: white;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: #ff4757;
  color: white;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.price-section {
  margin-bottom: 16px;
}

.price-section .h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.old-price {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Add to Cart Button - Lumière Style */
.product-card .btn.add-to-cart {
  background: var(--lumiere-black);
  color: var(--lumiere-white);
  border: none;
  border-radius: 0;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .btn.add-to-cart:hover {
  background: var(--lumiere-gray-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* Responsive Anpassungen für Produktkarten */
@media (max-width: 576px) {
  .product-card .card-body {
    padding: 16px;
  }

  .product-card .btn.add-to-cart {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .product-card .card-title {
    font-size: 1rem;
  }

  .product-image-container {
    height: 180px;
  }
}

/* Animationen für Produktkarten */
.product-card {
  animation: fadeIn 0.5s ease-out;
}

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

/* Hero Section - Lumière Style */
.hero-section {
    background: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-heading {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.section-subheading {
    font-size: 18px;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section-heading {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .section-subheading {
        font-size: 16px;
    }
}

/* Categories Section - Lumière Style */
.categories-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.category-grid-lumiere {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    padding: 16px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}

@media (max-width: 768px) {
    .category-grid-lumiere {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .category-grid-lumiere {
        grid-template-columns: 1fr;
    }
}

/* Trust Indicators Section */
.trust-section {
  background-color: var(--lumiere-gray-50);
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.trust-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Products Section - Lumière Style */
.products-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.product-category-section {
    margin-bottom: 0;
    padding: 60px 0;
    position: relative;
}

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

/* Hintergrundfarben für die verschiedenen Kategorien */
.product-category-section {
    width: 100%;
}

/* Bestseller - Hellblau/Lavendel */
.category-bestseller {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0e8ff 100%);
}

/* Technik/Gadgets - Hellgrün/Mint */
.category-technik {
    background: linear-gradient(135deg, #e8fff4 0%, #f0fffa 100%);
}

/* Beleuchtung - Hellgelb/Pfirsich */
.category-beleuchtung {
    background: linear-gradient(135deg, #fff9e8 0%, #ffefe8 100%);
}

/* Haushalt und Küche - Hellrosa/Pink */
.category-haushalt {
    background: linear-gradient(135deg, #ffe8f5 0%, #ffeef8 100%);
}

/* Körperpflege/Wellness - Hellviolett/Lila */
.category-wellness {
    background: linear-gradient(135deg, #f5e8ff 0%, #f8eeff 100%);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.01em;
}

.category-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Horizontal Scroll Grid - Lumière Style (Bestseller Slider) */
.product-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.product-scroll-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 20px 60px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.product-scroll-grid:active {
    cursor: grabbing;
}

.product-scroll-grid.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}

/* Hide scrollbar completely */
.product-scroll-grid::-webkit-scrollbar {
    display: none;
}

/* Navigation Arrows styles are defined above - removed duplicate */

/* Custom visual scrollbar - FIXED VERSION */
.product-scroll-container {
    --scroll-percentage: 0;
    --scroll-position: 0px;
}

/* Remove this broken rule */

.product-scroll-container::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 110px;
    height: 10px;
    background: #c5c5c5;
    border-radius: 5px;
    border: 1px solid #a0a0a0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.product-scroll-container::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 20px;
    width: 100px;
    height: 10px;
    background: linear-gradient(135deg, #333333, #000000);
    border-radius: 5px;
    z-index: 1;
    transform: translateX(var(--scroll-position, 0px));
    transition: transform 0.1s ease-out;
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    border: 1px solid #000000;
}

.product-scroll-container:hover::before {
    height: 12px;
    bottom: 11px;
    background: linear-gradient(135deg, #555555, #222222);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}

/* New custom scrollbar system - created dynamically by JavaScript */
/* Styles are applied inline by JavaScript - no CSS rules needed */

.product-scroll-grid .lumiere-product-card {
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.product-scroll-grid .lumiere-product-card:hover {
    transform: translateY(-2px);
}

/* Bestseller grid uses same white design as other categories */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"],
#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"],
#bestsellerGrid .lumiere-product-card[data-category="Körperpflege/Wellness"],
#bestsellerGrid .lumiere-product-card[data-category="Haushalt und Küche"] {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

/* All titles in bestseller grid are black like other categories */

/* Category-specific buttons in bestseller grid - PASTEL FARBEN JE KATEGORIE */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 2px 8px rgba(22, 101, 52, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #92400e !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Körperpflege/Wellness"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #6b21a8 !important;
    border: 1px solid #c4b5fd !important;
    box-shadow: 0 2px 8px rgba(107, 33, 168, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und Küche"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

/* Hover-Effekte für Bestseller-Buttons - PASTEL FARBEN */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #bbf7d0, #86efac) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fde68a, #fbbf24) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Körperpflege/Wellness"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und Küche"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* Remove fade effects to match Lumière design */

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0 60px;
    }
    
    .category-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .category-subtitle {
        font-size: 14px;
    }
    
    .product-scroll-container {
        margin: 0;
        padding: 0;
    }
    
    .product-scroll-grid {
        padding: 0 16px 40px 16px;
        gap: 16px;
    }
    
    .product-scroll-grid .lumiere-product-card {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .scroll-arrow {
        width: 36px;
        height: 36px;
        bottom: 3px;
        border-width: 2px;
    }
    
    .scroll-arrow i {
        font-size: 16px;
        font-weight: bold;
    }
    
    .scroll-arrow-left {
        right: 55px;
    }
    
    .scroll-arrow-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .product-scroll-grid .lumiere-product-card {
        flex: 0 0 200px;
        width: 200px;
    }
    
    .product-scroll-grid {
        gap: 12px;
    }
}

.products-section .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .products-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-section .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Lumière Footer */
.lumiere-footer {
  background-color: var(--lumiere-black);
  color: var(--lumiere-white);
  padding: 60px 0 40px 0;
  margin-top: 80px;
}

.lumiere-footer h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--lumiere-white);
  margin-bottom: 20px;
}

.lumiere-footer p {
  font-size: 14px;
  color: var(--lumiere-white);
  line-height: 1.6;
}

.lumiere-footer a {
  color: var(--lumiere-gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.lumiere-footer a:hover {
  color: var(--lumiere-white);
}

/* Footer Copyright Text - Override Bootstrap text-muted */
.lumiere-footer .text-muted {
  color: var(--lumiere-white) !important;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--lumiere-gray-800);
  border-radius: 50%;
  margin-right: 12px;
  transition: background-color 0.2s;
}

.social-icons a:hover {
  background: var(--lumiere-gray-700);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--lumiere-black);
  color: var(--lumiere-white);
}

.btn-primary:hover {
  background: var(--lumiere-gray-800);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--section-bg);
}

/* Replacing old cart animations with colorful rainbow animations from product 4-12 */
/* ===== CART & WISHLIST BUTTON ANIMATIONS ===== */

/* Replacing complex rainbow animations with simple animations from product 4 */
/* ===== CART & WISHLIST BUTTON ANIMATIONS ===== */

/* Simple success animation like product 4 */
@keyframes success-animation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Simple cart icon pulse like product 4 */
@keyframes cart-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Simple cart bounce like product 4 */
@keyframes cart-rainbow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Simple heart pulse like product 4 */
@keyframes heart-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Animation classes */
.success-animation {
  animation: success-animation 1s ease-in-out;
}

.cart-icon-pulse {
  animation: cart-icon-pulse 1.2s ease-in-out;
}

.cart-rainbow-bounce {
  animation: cart-rainbow-bounce 1s ease-in-out;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification-slide-in {
  animation: slideInRight 0.5s ease-out;
}

.notification-slide-out {
  animation: slideOutRight 0.5s ease-out;
}

/* Enhanced notification animation */
/*@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification-slide-in {
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-slide-out {
  animation: slideOutRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Floating success indicator for cart */
@keyframes floatUpCart {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -60px) scale(1.5) rotate(15deg);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -90px) scale(1.2) rotate(-5deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -130px) scale(0.8) rotate(0deg);
  }
}

/* Floating success indicator for wishlist */
@keyframes floatUpWishlist {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -80px) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -120px) scale(1);
  }
}

.floating-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--success-color);
  pointer-events: none;
  z-index: 9999;
}

.floating-success.cart {
  animation: floatUpCart 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  color: var(--success-color);
  font-weight: bold;
}

.floating-success.wishlist {
  animation: floatUpWishlist 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  color: var(--danger-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px 0;
  }
  
  .section-heading {
    font-size: 24px;
    margin: 40px 0 24px 0;
  }
  
  .nav-content {
    padding: 12px 16px;
  }
  
  .nav-logo a {
    font-size: 20px;
  }
}

/* Herz-Symbol in der Navigation rot einfärben */
#wishlistButton {
  color: var(--danger-color) !important;
}

#wishlistButton:hover {
  background: rgba(255, 107, 107, 0.1) !important;
}

#wishlistButton i {
  color: var(--danger-color) !important;
}

/* Cart Dropdown Styling */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 400px;
  background: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.cart-dropdown.show {
  display: block;
}

.cart-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown-body {
  max-height: 400px;
  overflow-y: auto;
}

.cart-dropdown-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
}

#cartCounter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.3s ease;
  z-index: 1001;
}

/* Mobile Anpassungen für Warenkorb-Counter */
@media (max-width: 768px) {
  #cartCounter {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  #cartCounter {
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }
}

@media (max-width: 414px) {
  #cartCounter {
    top: -2px;
    right: -2px;
    width: 15px;
    height: 15px;
    font-size: 0.6rem;
  }
}

/* Moderne Warenkorb-Dropdown */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0; /* Korrekte Positionierung am rechten Rand */
  width: 380px;
  max-width: 90vw;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* Sicherstellen dass Cart Dropdown ganz rechts am Bildschirmrand ist */
@media (min-width: 769px) {
  .cart-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important; /* Unter dem Warenkorb-Symbol */
    right: 0 !important; /* Ganz rechts am Bildschirmrand */
    left: auto !important;
    transform-origin: top right !important;
    z-index: 2000 !important;
    margin-right: -20px !important; /* Erweitert das Dropdown weiter nach rechts */
  }
}
.cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Warenkorb-Dropdown Animationen entfernt */

/* Cart Item Animations entfernt */
.cart-item {
  /* Keine Animationen */
}

.cart-item:hover {
  background: rgba(var(--primary-rgb), 0.02);
}

/* cartItemFadeIn Animation entfernt */

/* Enhanced quantity button animations entfernt */
.quantity-btn {
  position: relative;
  overflow: hidden;
}

.quantity-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quantity-btn:active {
  /* Animation entfernt */
}

.quantity-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.quantity-btn:hover::before {
  width: 400px;
  max-height: 600px;
}

.cart-dropdown-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  min-height: 60px;
}

.cart-dropdown-header h6 {
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
  visibility: hidden;
}

.cart-dropdown .btn-close {
  background: #dc3545;
  border: 2px solid #dc3545;
  font-size: 1.4rem;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-family: inherit;
  font-weight: bold;
  opacity: 1;
  visibility: visible;
  /* Entferne absolute Positionierung für Desktop */
}

.cart-dropdown .btn-close:hover {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.cart-dropdown .btn-close:active {
  opacity: 0.8;
}

.cart-dropdown-body {
  max-height: 60vh; /* 60% der Bildschirmhöhe - mehr Platz für Footer */
  overflow-y: auto;
  padding: 0;
  flex: 1; /* Nimmt verfügbaren Platz ein */
}

.cart-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease;
}

.cart-item:hover {
  background: var(--light-bg);
}

.cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-small);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: row;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.8rem;
}

.quantity-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.quantity-display {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 16px;
  text-align: center;
  margin: 0 2px;
  font-size: 0.9rem;
}

.remove-item {
  color: var(--danger-color);
  background: none;
  border: none;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.remove-item:hover {
  background: var(--danger-color);
  color: white;
}

.cart-dropdown-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--light-bg);
  flex-shrink: 0; /* Footer soll nicht schrumpfen */
  min-height: 140px !important; /* Mindesthöhe für Footer */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0 !important; /* Footer soll nicht schrumpfen */
}

.cart-dropdown-footer .btn {
  width: 100% !important;
  margin-bottom: 8px !important;
  border-radius: var(--border-radius-small) !important;
  font-weight: 600 !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
  height: auto !important;
  min-height: 44px !important;
  text-align: center !important;
}

/* Spezielle Regeln für Desktop/PC */
@media (min-width: 769px) {
  .cart-dropdown {
    max-height: 700px !important; /* Mehr Höhe für Desktop */
    min-height: 400px !important;
  }
  
  .cart-dropdown-body {
    max-height: 450px !important; /* Mehr Platz für Inhalt */
  }
  
  .cart-dropdown-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 9999 !important;
    background: white !important;
    border-top: 1px solid #ddd !important;
    padding: 20px !important;
    min-height: 140px !important; /* Garantierte Mindesthöhe für Footer */
  }
  
  .cart-dropdown-footer .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    margin-bottom: 8px !important;
    position: relative !important;
    z-index: 9999 !important;
    text-align: center !important;
  }
  
  .cart-dropdown-footer .btn-primary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .cart-dropdown-footer .btn-outline-secondary {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.cart-dropdown-footer .btn-primary {
  background: #007bff !important;
  border: none !important;
  color: white !important;
  width: 100% !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: center !important;
}

/* Schöne Hover-Effekte für Buttons */
.cart-dropdown-footer .checkout-btn:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
  color: white !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-align: center !important;
}

.cart-dropdown-footer .clear-cart-btn {
  border: 2px solid #dc3545 !important;
  color: #dc3545 !important;
  background: white !important;
  width: 100% !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  text-align: center !important;
}

.cart-dropdown-footer .clear-cart-btn:hover {
  background: #dc3545 !important;
  color: white !important;
  border-color: #dc3545 !important;
  transform: translateY(-2px) !important;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Müll-Button spezifische Styles */
#clearCart {
  border: 2px solid #dc3545 !important;
  color: #dc3545 !important;
  background: white !important;
  font-weight: 600 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 44px !important;
  line-height: 40px !important;
  text-align: center !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  justify-content: center !important;
  gap: 8px !important;
}

#clearCart:hover {
  background: #dc3545 !important;
  color: white !important;
  border-color: #dc3545 !important;
  transform: scale(1.02) !important;
}

#clearCart i {
  font-size: 1.2rem !important;
}

/* Moderne Filter-Dropdowns */
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 25px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.form-select:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 20px rgba(102, 126, 234, 0.2);
  outline: none;
  background: var(--card-bg);
  transform: translateY(-1px);
}

.form-select option {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  color: var(--text-primary);
  padding: 18px 28px 18px 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  margin: 4px 8px;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.form-select option::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-select option[value="Alle Kategorien"]::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
  content: '📋';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-select option[value="Technik/Gadgets"]::before {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  content: '⚡';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-select option[value="Fitness"]::before {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  content: '💪';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-select option[value="Mode"]::before {
  background: linear-gradient(135deg, #fa709a, #fee140);
  content: '👕';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-select option[value="Haushalt"]::before {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  content: '🏠';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-select option:hover,
.form-select option:focus,
.form-select option:checked,
.form-select option[selected] {
  background: var(--primary_gradient);
  color: white;
  font-weight: 700;
  transform: translateX(12px) scale(1.03);
  box-shadow: 
    0 12px 32px rgba(102, 126, 234, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  border-left: 5px solid rgba(255, 255, 255, 0.8);
}

.form-select option:hover::before,
.form-select option:focus::before,
.form-select option:checked::before,
.form-select option[selected]::before {
  transform: translateY(-50%) scale(1.2) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.form-select option:first-child {
  border-radius: 20px 20px 15px 15px;
  margin-top: 8px;
}

.form-select option:last-child {
  border-radius: 15px 15px 20px 20px;
  margin-bottom: 8px;
}

/* Custom Category Dropdown */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-selected {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 3px solid transparent;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(102, 126, 234, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.custom-dropdown-selected:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.custom-dropdown.open .custom-dropdown-selected {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 20px rgba(102, 126, 234, 0.2);
  transform: translateY(-1px);
}

.category-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.category-text {
  flex: 1;
  font-weight: 600;
}

.dropdown-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 12px;
  color: var(--text-secondary);
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.custom-dropdown.open .custom-dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  margin: 6px 12px;
  position: relative;
  overflow: hidden;
}

.custom-option:hover {
  background: var(--primary_gradient);
  color: white;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  border-radius: 18px;
}

.custom-option:first-child {
  margin-top: 12px;
}

.custom-option:last-child {
  margin-bottom: 12px;
}

/* Category-specific icon backgrounds */
.custom-option[data-value="Alle Kategorien"] .category-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.custom-option[data-value="Technik/Gadgets"] .category-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.custom-option[data-value="Fitness"] .category-icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.custom-option[data-value="Mode"] .category-icon {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.custom-option[data-value="Haushalt"] .category-icon {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
}

/* Price Sort specific icon backgrounds */
.custom-option[data-value="Aufsteigend"] .category-icon {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.custom-option[data-value="Absteigend"] .category-icon {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.custom-option:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
footer {
  background: var(--lumiere-gray-900);
  color: var(--lumiere-white);
  padding: 60px 0 20px;
  margin-top: 80px;
}

footer h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

footer a {
  color: var(--lumiere-gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--lumiere-white);
}

/* Hide old styles */
.custom-dropdown,
.form-select {
  display: none;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 24px; }
.mt-5 { margin-top: 40px; }
.py-4 { padding: 24px 0; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-4 { gap: 24px; }
.row { display: flex; flex-wrap: wrap; margin: -12px; }
.col-md-3 { flex: 0 0 25%; padding: 12px; }
.g-4 > * { margin: 12px; }

@media (max-width: 768px) {
  .col-md-3 { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .col-md-3 { flex: 0 0 100%; }
}

footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
}

footer a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 16px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Moderne Scroll-to-Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
  opacity: 0;
  z-index: 9998;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

#scrollToTopBtn i {
  font-size: 1.5rem;
}

/* Ultra-Moderne Hilfe-Button - Premium Design - FORCE RIGHT POSITION */
div#hilfeButton,
#hilfeButton {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  left: unset !important;
  top: unset !important;
  width: 68px !important;
  height: 68px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
  border: none !important;
  border-radius: 24px !important;
  color: white !important;
  font-size: 1.8rem !important;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4), 0 4px 16px rgba(118, 75, 162, 0.3), inset 0 1px 0
    rgba(255, 255, 255, 0.2) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  animation: helpButtonFloat 4s ease-in-out infinite, helpButtonGlow 3s ease-in-out infinite alternate, helpButtonRotate
    8s linear infinite !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  overflow: hidden !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#hilfeButton:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #f093fb 100%) !important;
  transform: scale(1.2) rotate(10deg) translateY(-8px) !important;
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.6), 0 8px 24px rgba(118, 75, 162, 0.4), 0 0 0 8px
    rgba(102, 126, 234, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
  animation: helpButtonMegaBounce 0.8s ease-in-out, helpButtonSparkle 1s ease-in-out !important;
  border-radius: 28px !important;
}

#hilfeButton:active {
  transform: scale(1.05) rotate(5deg) translateY(-4px) !important;
  transition: all 0.15s ease !important;
}

/* Glassmorphism Effect für Button */
#hilfeButton::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%) !important;
  border-radius: inherit !important;
  pointer-events: none !important;
}

/* Animated Icon Container */
#hilfeButton::after {
  content: "?" !important;
  position: absolute !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  animation: iconBounce 2s ease-in-out infinite !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Ultra-Moderne Hilfe-Button Animationen */
@keyframes helpButtonFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes helpButtonGlow {
  0% {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4), 0 4px 16px rgba(118, 75, 162, 0.3), inset 0 1px 0
      rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.6), 0 6px 24px rgba(118, 75, 162, 0.5), 0 0 0 12px
      rgba(102, 126, 234, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }
}

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

@keyframes helpButtonMegaBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: scale(1.2) rotate(10deg) translateY(-8px);
  }
  40% {
    transform: scale(1.3) rotate(15deg) translateY(-16px);
  }
  60% {
    transform: scale(1.25) rotate(12deg) translateY(-12px);
  }
}

@keyframes helpButtonSparkle {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.3) saturate(1.5) hue-rotate(15deg);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
  }
  50% {
    transform: scale(1.2) rotate(0deg);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

/* Mobile-Hilfe-Button Anpassungen */
@media (max-width: 768px) {
  #hilfeButton {
    bottom: 30px !important;
    right: 20px !important;
    left: unset !important;
    top: unset !important;
    width: 64px !important;
    height: 64px !important;
    font-size: 1.6rem !important;
    border-radius: 22px !important;
    box-shadow: 0 6px 28px rgba(102, 126, 234, 0.5), 0 3px 14px rgba(118, 75, 162, 0.4), inset 0 1px 0
      rgba(255, 255, 255, 0.2) !important;
    z-index: 9999 !important;
    transform: none !important;
    animation: helpButtonFloat 4s ease-in-out infinite, helpButtonGlow 3s ease-in-out infinite alternate !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }
  
  /* Nach oben Button für Mobile weiter runter */
  #scrollToTopBtn {
    bottom: 30px !important;
  }

  #hilfeButton:hover {
    transform: scale(1.15) rotate(8deg) translateY(-6px) !important;
    animation: helpButtonMegaBounce 0.8s ease-in-out !important;
    border-radius: 26px !important;
  }

  #hilfeButton::after {
    font-size: 1.8rem !important;
  }

  /* MOBILE FORCE POSITIONING */
  [id="hilfeButton"] {
    position: fixed !important;
    bottom: 30px !important;
    right: 20px !important;
    left: unset !important;
    top: unset !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }
}

/* Ultra-Moderne Hilfe-Panel */
.hilfe-panel {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0.8);
  left: auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
    radial-gradient(circle at top right, rgba(102, 126, 234, 0.1), transparent 50%),
    radial-gradient(circle at bottom left, rgba(118, 75, 162, 0.1), transparent 50%);
  border-radius: 28px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    0 12px 32px rgba(102, 126, 234, 0.2),
    0 6px 16px rgba(118, 75, 162, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  z-index: 2147483647;
  max-width: 95vw;
  width: 440px;
  max-height: 85vh;
  height: auto;
  min-height: 500px;
  max-height: 650px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  overscroll-behavior: contain;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.hilfe-themen-modern .hilfe-thema-btn:nth-child(n + 6) {
  display: none;
}

@media (max-width: 768px) {
  .hilfe-panel,
  .hilfe-panel.offen,
  div.hilfe-panel,
  div.hilfe-panel.offen,
  [id="hilfePanel"],
  [id="hilfePanel"].offen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
    border: none !important;
    position: fixed !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%),
      radial-gradient(circle at top center, rgba(102, 126, 234, 0.08), transparent 60%),
      radial-gradient(circle at bottom center, rgba(118, 75, 162, 0.08), transparent 60%);
    animation: slideUpPanelMega 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    padding-top: calc(constant(safe-area-inset-top) + 12px);
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
    padding-bottom: calc(constant(safe-area-inset-bottom) + 12px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .hilfe-panel-header {
    padding-top: calc(28px + constant(safe-area-inset-top));
    padding-top: calc(28px + env(safe-area-inset-top, 0px));
  }

  .hilfe-themen-modern {
    max-height: calc(100vh - 180px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 20px;
    overflow-y: auto;
  }

  /* Ensure chatbot interface is also fullscreen on mobile */
  .chatbot-interface {
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
    max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
  }

  .chatbot-messages {
    max-height: calc(100vh - 200px - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
    overflow-y: auto;
  }

  @keyframes slideUpPanelMega {
    0% {
      transform: translateY(100%) scale(0.9);
      opacity: 0;
      filter: blur(8px);
    }
    30% {
      transform: translateY(50%) scale(0.95);
      opacity: 0.5;
      filter: blur(4px);
    }
    70% {
      transform: translateY(10%) scale(1.02);
      opacity: 0.9;
      filter: blur(1px);
    }
    100% {
      transform: translateY(0) scale(1);
      opacity: 1;
      filter: blur(0px);
    }
  }

  .hilfe-panel.offen {
    animation: slideUpPanelMega 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .hilfe-panel-header {
    border-radius: 0;
    padding: 28px 24px;
    padding-top: calc(28px + constant(safe-area-inset-top));
    padding-top: calc(28px + env(safe-area-inset-top, 0px));
    font-size: 1.4rem;
  }
}

.chatbot-interface {
  border-radius: 0;
}

.chatbot-header {
  border-radius: 0;
  padding: calc(16px + constant(safe-area-inset-top)) 20px 16px 20px;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 20px 16px 20px;
}

.message-text {
  padding: 14px 18px;
  font-size: 14px;
}

.bot-avatar {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.quick-topic-btn {
  padding: 10px 16px;
  font-size: 13px;
}

.feedback-buttons {
  padding: 16px 20px;
  gap: 12px;
}

.feedback-btn {
  padding: 12px 16px;
  font-size: 14px;
}

.hilfe-panel.offen,
div.hilfe-panel.offen {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  animation: helpPanelMegaSlideIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  visibility: visible !important;
}

/* Verhindere Body-Scroll wenn Panel offen ist */
body:has(.hilfe-panel.offen) {
  overflow: hidden;
  height: 100vh;
}

/* Fallback für Browser ohne :has() Support */
.help-panel-open {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Mobile-specific body scroll prevention */
@media (max-width: 768px) {
  body:has(.hilfe-panel.offen),
  body.help-panel-open {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
  }
}

/* FORCE CORRECT POSITIONING - OVERRIDE ALL OTHER STYLES */
[id="hilfeButton"] {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  left: unset !important;
  top: unset !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
}

/* FORCE PANEL VISIBILITY */
[id="hilfePanel"].offen {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  z-index: 2147483647 !important;
}

/* Additional force rule for panel visibility */
div#hilfePanel.offen,
#hilfePanel.offen {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  z-index: 2147483647 !important;
  position: fixed !important;
  top: 50% !important;
  right: 20px !important;
}

/* Light Black Border Effect */
.hilfe-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 29px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* Ultra-Moderne Hilfe-Panel Animationen */
@keyframes helpPanelMegaSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.7) translateX(80px) rotateY(15deg);
    filter: blur(10px);
  }
  30% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.9) translateX(20px) rotateY(5deg);
    filter: blur(3px);
  }
  70% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.05) translateX(-10px) rotateY(-2deg);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) translateX(0) rotateY(0deg);
    filter: blur(0px);
  }
}

@keyframes borderGlow {
  0% {
    opacity: 0.6;
    filter: brightness(1) saturate(1);
  }
  100% {
    opacity: 1;
    filter: brightness(1.3) saturate(1.5);
  }
}

.hilfe-panel.closing {
  animation: helpPanelSlideOut 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes helpPanelSlideOut {
  0% {
    opacity: 1;
    transform: translateY(-50%) scale(1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(0.8) translateX(50px);
  }
}

/* Mobile closing animation */
@media (max-width: 768px) {
  .hilfe-panel.closing {
    animation: slideDownPanel 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
  }

  @keyframes slideDownPanel {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(100%);
      opacity: 0;
    }
  }
}

/* Ultra-Moderne Header für Hauptseite */
.hilfe-panel-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 50%);
  color: white;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 20px rgba(102, 126, 234, 0.3);
}

#hilfePanelClose {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10002;
}

#hilfePanelClose:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#hilfePanelClose:active {
  transform: none;
  transition: all 0.1s ease;
}

/* Header Glow Effect */
.hilfe-panel-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: headerShimmer 3s ease-in-out infinite;
}

@keyframes headerShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.hilfe-themen-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  overflow-y: auto;
  max-height: 450px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(circle at center top, rgba(102, 126, 234, 0.03), transparent 70%);
  position: relative;
}

/* Scrollbar Styling für moderne Optik */
.hilfe-themen-modern::-webkit-scrollbar {
  width: 6px;
}

.hilfe-themen-modern::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
}

.hilfe-themen-modern::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hilfe-themen-modern::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2, #f093fb);
}

/* Staggered Animation für Hilfe-Themen-Buttons */
.hilfe-panel.offen .hilfe-thema-btn {
  animation: staggerFadeInUp 0.3s ease-out both;
}

.hilfe-panel.offen .hilfe-thema-btn:nth-child(1) {
  animation-delay: 0.05s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(2) {
  animation-delay: 0.1s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(3) {
  animation-delay: 0.15s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(4) {
  animation-delay: 0.2s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(5) {
  animation-delay: 0.25s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(6) {
  animation-delay: 0.3s;
}
.hilfe-panel.offen .hilfe-thema-btn:nth-child(7) {
  animation-delay: 0.35s;
}

@keyframes staggerFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hilfe-thema-btn {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
    radial-gradient(circle at top left, rgba(102, 126, 234, 0.05), transparent 60%);
  border: 2px solid rgba(102, 126, 234, 0.1);
  border-radius: 18px;
  padding: 20px 26px;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  font-size: 15.5px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(102, 126, 234, 0.1), inset 0 1px 0
    rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hilfe-thema-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px) scale(1.05) rotateX(5deg);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4), 0 8px 20px rgba(118, 75, 162, 0.3), 0 4px 10px
    rgba(240, 147, 251, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hilfe-thema-btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.hilfe-thema-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(102, 126, 234, 0.2),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.hilfe-thema-btn:hover::before {
  left: 100%;
  animation: buttonShimmer 0.8s ease-in-out;
}

@keyframes buttonShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.hilfe-thema-btn::after {
  content: "";
  display: none;
}

.hilfe-thema-btn:hover::after {
  display: none;
}

@keyframes sparkleRotate {
  0%,
  100% {
    transform: translateX(0) scale(1.2) rotate(0deg);
  }
  25% {
    transform: translateX(2px) scale(1.3) rotate(90deg);
  }
  50% {
    transform: translateX(0) scale(1.2) rotate(180deg);
  }
  75% {
    transform: translateX(-2px) scale(1.3) rotate(270deg);
  }
}

/* Mobile-Hilfe-Themen Anpassungen */
@media (max-width: 768px) {
  .hilfe-themen-modern {
    padding: 16px;
    max-height: calc(100vh - 100px);
  }

  .hilfe-thema-btn {
    padding: 14px 16px;
    font-size: 13px;
  }

  .hilfe-thema-btn:hover {
    transform: translateY(-2px) scale(1.01);
  }

  .feedback-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .feedback-btn:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

/* Animationen */
@keyframes badgePop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

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

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

/* GITHUB PAGES MOBILE FIX - HÖCHSTE PRIORITÄT */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100% !important;
    max-width: 100vw !important;
    width: 100vw !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* MOBILE PRODUKTBILDER UND LAYOUT FIXES */
  .product-card img,
  .product-image,
  .hero-image img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .category-grid-lumiere {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Verhindere horizontales Scrollen auf wichtigen Elementen */
  .container,
  .container-fluid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .navbar {
    padding: 8px 0;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .search-form .form-control {
    font-size: 16px; /* Verhindert Zoom auf iOS */
    padding: 10px 16px;
  }

  .category-grid .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .category-grid .col,
  .category-grid .col-md-3 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }

  .product-card {
    margin-bottom: 16px;
  }

  .product-image-container {
    height: 180px;
  }

  .product-card .card-body {
    padding: 16px;
  }

  .product-card .card-title {
    font-size: 1rem;
  }

  .product-card .h4 {
    font-size: 1.2rem;
  }

  /* Touch-optimierte Hinzufügen-Buttons für Mobile */
  .product-card .btn.add-to-cart {
    padding: 6px 8px;
    font-size: 0.7rem;
    min-height: 32px;
    min-width: 70px;
  }

  .product-card .btn.add-to-cart i {
    font-size: 1.4rem;
  }

  .product-card .btn.add-to-cart .btn-text {
    display: inline !important;
    font-size: 0.65rem !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 600px) {
  /* Mobile-spezifische Anpassungen ohne aggressive Overflow-Regeln */

  .category-grid .row {
    margin-left: -4px;
    margin-right: -4px;
  }

  .category-grid .col,
  .category-grid .col-md-3 {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 12px;
  }

  #productGrid.row {
    margin-left: -4px;
    margin-right: -4px;
  }

  #productGrid .col,
  #productGrid .col-md-3,
  #productGrid .col-lg-4 {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 12px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-icon-link {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .nav-icons {
    gap: 8px;
  }

  .category-label {
    font-size: 1rem;
    padding: 16px 12px 12px;
  }

  .form-select {
    font-size: 16px;
    padding: 10px 12px;
  }

  .search-form .form-control {
    font-size: 16px;
    padding: 10px 12px;
  }

  /* Kleinere Touch-optimierte Hinzufügen-Buttons für kleine Mobile */
  .product-card .btn.add-to-cart {
    padding: 5px 6px;
    font-size: 0.65rem;
    min-height: 28px;
    min-width: 60px;
  }

  .product-card .btn.add-to-cart i {
    font-size: 1.3rem;
  }

  .product-card .btn.add-to-cart .btn-text {
    display: inline !important;
    font-size: 0.6rem !important;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .my-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .mt-5 {
    margin-top: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }

  .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 414px) {
  /* Mobile-spezifische Anpassungen ohne aggressive Overflow-Regeln */

  .category-grid .col,
  .category-grid .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 8px;
  }

  #productGrid .col,
  #productGrid .col-md-3,
  #productGrid .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 8px;
  }

  .product-card {
    margin-bottom: 8px;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card .card-body {
    padding: 12px;
  }

  .product-card .card-title {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .product-card .card-text {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .product-card .h4 {
    font-size: 1.1rem;
  }

  .product-card .small {
    font-size: 0.75rem;
  }

  .product-image-container {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }

  .product-image-container img.card-img-top {
    border-radius: 12px 12px 0 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .ratio.ratio-4x3.product-image-container {
    --bs-aspect-ratio: 75%;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .nav-icon-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .nav-icons {
    gap: 6px;
  }

  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .category-label {
    font-size: 0.9rem;
    padding: 12px 8px 8px;
  }

  .form-select {
    font-size: 16px;
    padding: 8px 10px;
  }

  .search-form .form-control {
    font-size: 16px;
    padding: 8px 10px;
  }

  /* Kleine Touch-optimierte Hinzufügen-Buttons für sehr kleine Mobile */
  .product-card .btn.add-to-cart {
    padding: 4px 5px;
    font-size: 0.6rem;
    min-height: 24px;
    min-width: 50px;
  }

  .product-card .btn.add-to-cart i {
    font-size: 1.2rem;
  }

  .product-card .btn.add-to-cart .btn-text {
    display: inline !important;
    font-size: 0.55rem !important;
  }

  .my-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mt-5 {
    margin-top: 1rem !important;
  }

  .mb-4 {
    margin-bottom: 0.75rem !important;
  }

  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 375px) {
  /* Mobile-spezifische Anpassungen ohne aggressive Overflow-Regeln */

  .category-grid .col,
  .category-grid .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 6px;
  }

  #productGrid .col,
  #productGrid .col-md-3,
  #productGrid .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 6px;
  }

  .product-image-container {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .product-image-container img.card-img-top {
    border-radius: 10px 10px 0 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: 120px;
    max-height: 120px;
  }

  .ratio.ratio-4x3.product-image-container {
    --bs-aspect-ratio: 70%;
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-icon-link {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .nav-icons {
    gap: 4px;
  }

  .container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .category-label {
    font-size: 0.85rem;
    padding: 10px 6px 6px;
  }

  .form-select {
    font-size: 16px;
    padding: 6px 8px;
  }

  .search-form .form-control {
    font-size: 16px;
    padding: 6px 8px;
  }

  /* Minimale Touch-optimierte Hinzufügen-Buttons für sehr kleine Mobile */
  .product-card .btn.add-to-cart {
    padding: 3px 4px;
    font-size: 0.55rem;
    min-height: 20px;
    min-width: 40px;
  }

  .product-card .btn.add-to-cart i {
    font-size: 1.1rem;
  }

  .product-card .btn.add-to-cart .btn-text {
    display: inline !important;
    font-size: 0.5rem !important;
  }

  .my-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .mt-5 {
    margin-top: 0.75rem !important;
  }

  .mb-4 {
    margin-bottom: 0.5rem !important;
  }

  .py-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

/* MOBILE NAVIGATION LAYOUT FIX - KOMPAKT */
@media (max-width: 768px) {
  .simple-nav {
    padding: 10px 0 !important;
    min-height: auto !important;
  }

  .nav-content-simple {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 0 12px !important;
  }

  /* Logo kompakt links */
  .nav-logo-simple {
    order: 1 !important;
    flex: 0 0 auto !important;
    text-align: left !important;
  }

  .nav-logo-simple a {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
  }
  
  .nav-tagline {
    display: none !important;
  }

  /* Suche in der Mitte */
  .search-bar-center {
    order: 2 !important;
    flex: 1 !important;
    max-width: none !important;
    margin: 0 8px !important;
    display: none !important; /* Verstecke Suchleiste, nur Icon zeigen */
  }
  
  .search-icon-center {
    order: 2 !important;
    flex: 0 0 auto !important;
    position: static !important;
  }
  
  .search-icon-center button {
    padding: 6px 8px !important;
    font-size: 16px !important;
    background: transparent !important;
    border: none !important;
    color: #333 !important;
  }

  /* Icons größer rechts */
  .nav-actions-simple {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    position: static !important;
  }
  
  .nav-actions-simple .btn,
  .nav-actions-simple button,
  .nav-actions-simple a {
    padding: 10px 12px !important;
    font-size: 20px !important;
    min-width: auto !important;
  }
  
  .nav-actions-simple .btn span:not(.cart-counter):not(.bi),
  .nav-actions-simple button span:not(.cart-counter):not(.bi),
  .nav-actions-simple a span:not(.cart-counter):not(.bi) {
    display: none !important;
  }
  
  /* Cart Counter sichtbar halten */
  .cart-counter {
    display: flex !important;
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #e91e63 !important;
    color: white !important;
    font-size: 10px !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
  }
  
  /* Gutscheine Button kompakt */
  .gutschein-link {
    padding: 6px 8px !important;
    font-size: 16px !important;
  }
  
  .gutschein-link i {
    font-size: 16px !important;
  }

  .simple-nav .container {
    position: relative !important;
    min-height: auto !important;
    padding: 0 !important;
  }
  
  /* Body Padding reduzieren */
  body {
    padding-top: 60px !important;
  }
}

/* Extra kleine Geräte */
@media (max-width: 480px) {
  .simple-nav {
    padding: 8px 0 !important;
  }
  
  .nav-content-simple {
    padding: 0 10px !important;
    gap: 8px !important;
  }
  
  .nav-logo-simple a {
    font-size: 1.3rem !important;
  }
  
  .search-icon-center button {
    padding: 5px 7px !important;
    font-size: 15px !important;
  }
  
  .nav-actions-simple {
    gap: 8px !important;
  }
  
  .nav-actions-simple .btn,
  .nav-actions-simple button,
  .nav-actions-simple a {
    padding: 9px 11px !important;
    font-size: 19px !important;
  }
  
  body {
    padding-top: 55px !important;
  }
}

/* FULLSCREEN WARENKORB-DROPDOWN FÜR MOBILE */
@media (max-width: 768px) {
  .cart-dropdown {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    border: none !important;
    z-index: 2147483647 !important;
    transform: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cart-dropdown-body {
    overflow: hidden;
    padding-top: 0 !important;
  }

  /* Verstecke Scroll-to-Top Button und Support Button wenn Warenkorb offen ist */
  .cart-dropdown.show ~ #scrollToTopBtn,
  .cart-dropdown.show + #scrollToTopBtn,
  .cart-dropdown.show ~ * #scrollToTopBtn,
  #scrollToTopBtn[style*="display: none"],
  /* Direkte Selektoren für bessere Kompatibilität */
    .cart-dropdown.show
    ~ *
    #scrollToTopBtn,
  /* Zusätzliche Selektoren für mobile */
    body:has(.cart-dropdown.show)
        /* FORCE HILFE-BUTTON KLICKBARKEIT - ÜBERSCHREIBT ALLE ANDEREN REGELN */
        #hilfeButton,
        div#hilfeButton,
        body #hilfeButton,
        body.cart-open #hilfeButton,
        .cart-dropdown.show ~ #hilfeButton,
        .cart-dropdown.show + #hilfeButton {
          display: flex !important;
          visibility: visible !important;
          opacity: 1 !important;
          position: fixed !important;
          bottom: 30px !important;
          right: 30px !important;
          z-index: 2147483647 !important;
          pointer-events: auto !important;
          cursor: pointer !important;
          transform: none !important;
          left: auto !important;
          top: auto !important;
        }

        /* Mobile Hilfe-Panel */
        @media (max-width: 768px) {
          .hilfe-panel.offen,
          div.hilfe-panel.offen,
          #hilfePanel.offen {
            width: 100vw !important;
            height: 100vh !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            transform: none !important;
            border-radius: 0 !important;
            overflow-y: auto !important;
          }
        }

  /* Zusätzliche mobile-spezifische Regeln für Scroll-to-Top Button */
  @media (max-width: 768px) {
    .cart-dropdown.show ~ #scrollToTopBtn,
    .cart-dropdown.show + #scrollToTopBtn,
    .cart-dropdown.show ~ * #scrollToTopBtn,
    body:has(.cart-dropdown.show) #scrollToTopBtn,
    /* Fallback für ältere Browser */
      .cart-open
      #scrollToTopBtn {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      z-index: -1 !important;
      pointer-events: none !important;
      position: absolute !important;
      left: -9999px !important;
      top: -9999px !important;
      transform: translateX(-9999px) !important;
    }
  }

  .cart-dropdown-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary_gradient);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1;
    margin-top: 0;
  }

  .cart-dropdown-header h6 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .cart-dropdown .btn-close {
    background: #dc3545 !important;
    border: 2px solid #dc3545 !important;
    color: white !important;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cart-dropdown-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: none;
  }

  .cart-item {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .cart-item-name {
    font-size: 1rem;
  }

  .cart-item-price {
    font-size: 1rem;
  }

  .cart-dropdown-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--light-bg);
    position: sticky;
    bottom: 0;
  }

  .cart-dropdown-footer .btn {
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Größere Touch-Buttons im Mobile-Warenkorb */
  .cart-item .quantity-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .cart-item .remove-item {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  /* MOBILE FOOTER OPTIMIERUNGEN */
  footer {
    padding: 32px 0 20px !important;
    margin-top: 40px !important;
  }

  footer .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  footer .row {
    text-align: center;
    justify-content: center;
  }

  footer .col-md-4,
  footer .col-md-2 {
    margin-bottom: 24px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  footer ul {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  footer ul li {
    list-style: none;
    margin: 0;
  }

  footer .social-icons {
    justify-content: center;
    margin-top: 16px;
    gap: 16px;
  }

  footer .social-icons a {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  footer .social-icons a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
  }

  /* Footer Copyright zentriert */
  footer .text-center {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* PRODUKTBILDER POSITION FIX FÜR MOBILE */
  .product-card .product-image-container,
  .product-card .ratio {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  .product-card .product-image-container img,
  .product-card .ratio img,
  .product-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
  }

  /* Spezifische Fixes für Suchergebnisse - KLEINERE BILDER FÜR MOBILE */
  .search-results .product-card .product-image-container,
  .search-results .product-card .ratio,
  #fullscreenSearchOverlay .product-card .product-image-container,
  #fullscreenSearchOverlay .product-card .ratio {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  /* Auch normale Produktkarten kleiner machen */
  .product-card .product-image-container,
  .product-card .ratio {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }

  .search-results .product-card .product-image-container img,
  .search-results .product-card .ratio img,
  .search-results .product-card .card-img-top,
  #fullscreenSearchOverlay .product-card .product-image-container img,
  #fullscreenSearchOverlay .product-card .ratio img,
  #fullscreenSearchOverlay .product-card .card-img-top {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px 12px 0 0 !important;
  }

  /* Vollscreen-Suche spezifische Fixes - NUR MOBILE */
  #fullscreenSearchOverlay .product-card {
    border-radius: 12px;
    overflow: visible !important;
    min-height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #fullscreenSearchOverlay .product-card .card-body {
    padding: 12px !important;
    min-height: 120px !important;
  }

  #fullscreenSearchOverlay .product-grid .col {
    margin-bottom: 20px;
  }

  /* KRITISCHER FIX: Spezielle Fixes für abgeschnittene Bilder in der Suche */
  #fullscreenSearchOverlay .product-card .product-image-container,
  #fullscreenSearchOverlay .product-card .ratio,
  #fullscreenSearchOverlay .ratio.ratio-4x3,
  .fullscreen-search-overlay .product-card .product-image-container,
  .fullscreen-search-overlay .product-card .ratio {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    position: relative !important;
    overflow: visible !important;
    border-radius: 12px 12px 0 0 !important;
  }

  #fullscreenSearchOverlay .product-card img,
  #fullscreenSearchOverlay .product-card .card-img-top,
  #fullscreenSearchOverlay .ratio img,
  .fullscreen-search-overlay .product-card img,
  .fullscreen-search-overlay .product-card .card-img-top {
    position: absolute !important;
    top: -20px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% + 40px) !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 12px 12px 0 0 !important;
    z-index: 1 !important;
    transform: translateY(0) !important;
  }

  /* Zusätzlicher Fix für alle Suchcontainer */
  [id*="search"] .product-card .product-image-container,
  [class*="search"] .product-card .product-image-container {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
  }

  [id*="search"] .product-card img,
  [class*="search"] .product-card img {
    position: absolute !important;
    top: -20px !important;
    left: 0 !important;
    object-fit: cover !important;
    object-position: top center !important;
    height: calc(100% + 40px) !important;
    width: 100% !important;
    transform: translateY(0) !important;
  }

  /* SPEZIFISCHER FIX FÜR SEARCH-ALL-PRODUCTS-GRID */
  .search-all-products-grid .lumiere-product-card .product-image-container,
  .search-all-products-grid .lumiere-product-card .ratio,
  .search-all-products-grid .product-card .product-image-container,
  .search-all-products-grid .product-card .ratio {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    overflow: visible !important;
  }

  .search-all-products-grid .lumiere-product-card img,
  .search-all-products-grid .lumiere-product-card .card-img-top,
  .search-all-products-grid .product-card img,
  .search-all-products-grid .product-card .card-img-top {
    position: absolute !important;
    top: -25px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% + 50px) !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 12px 12px 0 0 !important;
    z-index: 1 !important;
  }
}

/* Noch größere Mengen- und Entfernen-Buttons im Produktbereich (Startseite) */
.product-card .quantity-btn,
.product-card .remove-item {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  font-size: 2rem !important;
  border-radius: 50% !important;
  margin: 0 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-card .remove-item {
  color: #ff4d4f !important;
  background: #fff !important;
  border: 2px solid #ffb3b3 !important;
  font-size: 2.2rem !important;
  margin-left: 0.7rem !important;
  transition: background 0.2s, color 0.2s;
}
.product-card .remove-item:hover {
  background: #ffb3b3 !important;
  color: #fff !important;
}

/* Extra große + und - Buttons im Produktbereich (Startseite) */
.product-card .quantity-btn {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
  font-size: 2.5rem !important;
  border-radius: 50% !important;
  margin: 0 0.7rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Noch größere + und - Buttons im Produktbereich (Startseite) */
.product-card .quantity-btn {
  width: 90px !important;
  height: 90px !important;
  min-width: 90px !important;
  min-height: 90px !important;
  font-size: 3.2rem !important;
  border-radius: 50% !important;
  margin: 0 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Große, touchfreundliche Hinzufügen-Buttons im Produktbereich - nur für Desktop */
@media (min-width: 769px) {
  .product-card .add-to-cart {
    min-height: 60px !important;
    min-width: 160px !important;
    font-size: 1.35rem !important;
    padding: 1rem 2.2rem !important;
    border-radius: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.7rem !important;
    box-shadow: 0 4px 18px rgba(102, 126, 234, 0.13);
    transition: box-shadow 0.2s, background 0.2s;
  }
}
@media (min-width: 769px) {
  .product-card .add-to-cart i {
    font-size: 2rem !important;
    margin-right: 0.5rem !important;
  }
  .product-card .add-to-cart:hover {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  }
}

/* Hinzufügen-Button bei Produkten - nur für Desktop */
@media (min-width: 769px) {
  button.add-to-cart,
  .product-card button.add-to-cart {
    padding: 0.5rem 1.2rem !important;
    font-size: 1rem !important;
    min-height: 36px !important;
    border-radius: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.13);
    transition: box-shadow 0.2s, background 0.2s;
  }

  button.add-to-cart i,
  .product-card button.add-to-cart i {
    font-size: 1.2rem !important;
    margin-right: 0.3rem !important;
  }
}

/* ===== ENDE DER MODERNEN MOBILE DESIGN OPTIMIERUNGEN ===== */

#cartDropdown .quantity-btn,
#cartDropdown .remove-item,
.cart-item .quantity-btn,
.cart-item .remove-item {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  font-size: 1.1rem !important;
  border-radius: 50% !important;
  margin: 0 0.3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
#cartDropdown .remove-item,
.cart-item .remove-item {
  color: #ff4d4f !important;
  background: #fff !important;
  border: 2px solid #ffb3b3 !important;
  font-size: 1.1rem !important;
  margin-left: 0.5rem !important;
  transition: background 0.2s, color 0.2s;
}
#cartDropdown .remove-item:hover,
.cart-item .remove-item:hover {
  background: #ffb3b3 !important;
  color: #fff !important;
}

.cart-item .quantity-btn,
.cart-item .remove-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  font-size: 1.1rem !important;
  border-radius: 50% !important;
  margin: 0 0.3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.cart-item .remove-btn {
  color: #ff4d4f !important;
  background: #fff !important;
  border: 2px solid #ffb3b3 !important;
  font-size: 1.1rem !important;
  margin-left: 0.5rem !important;
  transition: background 0.2s, color 0.2s;
}
.cart-item .remove-btn:hover {
  background: #ffb3b3 !important;
  color: #fff !important;
}

/* Schnellbestellung Styling */
.card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.card .form-label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.card .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: var(--card-bg);
}

.card .btn-primary.btn-lg {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  background: var(--primary_gradient);
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.card .btn-primary.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.card .btn-primary.btn-lg i {
  font-size: 1.3rem;
}

.card .btn-outline-secondary {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card .btn-outline-secondary:hover {
  background: var(--light-bg);
  border-color: var(--text-secondary);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .card .card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .card .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .card .btn-primary.btn-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .card .btn-outline-secondary {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Chatbot Interface Styles */
.chatbot-interface {
  display: none;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  overflow: hidden;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  overscroll-behavior: contain;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  background: var(--primary_gradient);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header .bi-arrow-left {
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.chatbot-header .bi-arrow-left:hover {
  transform: translateX(-2px);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  /* Verhindere Scroll-Propagation */
  overscroll-behavior: contain;
}

.chatbot-message {
  display: flex;
  margin-bottom: 16px;
}

.chatbot-message.user-message {
  justify-content: flex-end;
}

.chatbot-message.bot-message {
  justify-content: flex-start;
}

.message-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 80%;
}

.user-message .message-content {
  flex-direction: row-reverse;
}

.message-text {
  background: var(--light-bg);
  padding: 16px 20px;
  border-radius: var(--border-radius);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: var(--shadow-light);
}

.user-message .message-text {
  background: var(--primary_gradient);
  color: white;
}

/* Orange Hintergrund für Benutzer-Nachrichten */
.user-message .message-text.orange-support {
  background: var(--orange-gradient) !important;
  color: white !important;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary_gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.quick-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-topic-btn {
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  padding: 12px 18px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
}

.quick-topic-btn:hover {
  background: var(--primary_gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Feedback Buttons */
.feedback-buttons {
  display: none;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--card-bg);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.feedback-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--card-bg);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.feedback-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feedback-btn:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.feedback-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.feedback-btn:hover::before {
  width: 300px;
  height: 300px;
}

.helpful-btn {
  border-color: var(--success-color);
  color: var(--success-color);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.helpful-btn:hover {
  background: var(--success-gradient) !important;
  color: white !important;
  border-color: var(--success-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(16, 185, 129, 0.4) !important;
  animation: successPulse 0.6s ease-in-out;
}

.helpful-btn:hover *,
.helpful-btn:hover span,
.helpful-btn:hover i,
.helpful-btn:hover .bi,
.helpful-btn:hover::before,
.helpful-btn:hover::after {
  color: white !important;
  fill: white !important;
}

/* Force text color for all possible elements */
.helpful-btn:hover {
  background: var(--success-gradient) !important;
  color: white !important;
  border-color: var(--success-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(16, 185, 129, 0.4) !important;
  animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
  0%,
  100% {
    transform: translateY(-3px) scale(1.02);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.not-helpful-btn {
  border-color: var(--danger-color);
  color: var(--danger-color);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
}

.not-helpful-btn:hover {
  background: var(--danger-gradient) !important;
  color: white !important;
  border-color: var(--danger-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(239, 68, 68, 0.4) !important;
  animation: errorShake 0.6s ease-in-out;
}

.not-helpful-btn:hover *,
.not-helpful-btn:hover span,
.not-helpful-btn:hover i,
.not-helpful-btn:hover .bi,
.not-helpful-btn:hover::before,
.not-helpful-btn:hover::after {
  color: white !important;
  fill: white !important;
}

/* ULTIMATE FORCE - Text muss weiß sein beim Hover */
.feedback-btn.not-helpful-btn:hover,
.not-helpful-btn:hover,
button.not-helpful-btn:hover {
  background: var(--danger-gradient) !important;
  color: white !important;
  border-color: var(--danger-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(239, 68, 68, 0.4) !important;
  animation: errorShake 0.6s ease-in-out;
}

.feedback-btn.helpful-btn:hover,
.helpful-btn:hover,
button.helpful-btn:hover {
  background: var(--success-gradient) !important;
  color: white !important;
  border-color: var(--success-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(16, 185, 129, 0.4) !important;
  animation: successPulse 0.6s ease-in-out;
}

@keyframes errorShake {
  0%,
  100% {
    transform: translateY(-3px) scale(1.02) translateX(0);
  }
  25% {
    transform: translateY(-3px) scale(1.02) translateX(-2px);
  }
  75% {
    transform: translateY(-3px) scale(1.02) translateX(2px);
  }
}

/* Additional Info Message */
.additional-info .message-text:not(.orange-support) {
  background: var(--warning-color);
  color: var(--text-primary);
  border: none;
  box-shadow: var(--shadow-medium);
}

.additional-info .bot-avatar:not(.orange-support) {
  background: var(--warning-color);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

/* Feedback Message */
.feedback-message .message-text:not(.orange-support) {
  background: var(--accent-color);
  color: white;
  border: none;
  box-shadow: var(--shadow-medium);
}

.feedback-message .bot-avatar:not(.orange-support) {
  background: var(--accent-color);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Orange Support-Optionen Styles */
.hilfe-panel-header.orange-support {
  background: var(--orange-gradient) !important;
}

.chatbot-header.orange-support {
  background: var(--orange-gradient) !important;
}

.message-text.orange-support {
  background: var(--orange-gradient) !important;
  color: white !important;
}

.bot-avatar.orange-support {
  background: var(--orange-gradient) !important;
}

.quick-topic-btn.orange-support:hover {
  background: var(--orange-gradient) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Orange Hintergrund für Hilfe-Themen-Buttons */
.hilfe-thema-btn.orange-support {
  background: var(--orange-gradient) !important;
  color: white !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-medium) !important;
}

.hilfe-thema-btn.orange-support:hover {
  background: var(--orange-gradient) !important;
  color: white !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-medium) !important;
}

/* FEEDBACK-BUTTONS IM ORANGE SUPPORT MODUS - SICHTBAR MACHEN */
.feedback-buttons {
  display: none;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--card-bg);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

/* Orange Support Mode - Feedback Buttons bleiben normal */
.orange-support .feedback-buttons,
.chatbot-interface .feedback-buttons {
  display: flex !important;
  background: var(--card-bg) !important;
}

.orange-support .feedback-btn,
.chatbot-interface .feedback-btn {
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--border-color) !important;
}

.orange-support .helpful-btn,
.chatbot-interface .helpful-btn {
  border-color: var(--success-color) !important;
  color: var(--success-color) !important;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02)) !important;
}

.orange-support .not-helpful-btn,
.chatbot-interface .not-helpful-btn {
  border-color: var(--danger-color) !important;
  color: var(--danger-color) !important;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02)) !important;
}

/* Hover-Effekte bleiben gleich auch im Orange Mode */
.orange-support .helpful-btn:hover,
.chatbot-interface .helpful-btn:hover {
  background: var(--success-gradient) !important;
  color: white !important;
  border-color: var(--success-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

.orange-support .not-helpful-btn:hover,
.chatbot-interface .not-helpful-btn:hover {
  background: var(--danger-gradient) !important;
  color: white !important;
  border-color: var(--danger-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}

/* Text-Sichtbarkeit auch im Orange Mode */
.orange-support .helpful-btn:hover *,
.orange-support .helpful-btn:hover span,
.orange-support .helpful-btn:hover i,
.chatbot-interface .helpful-btn:hover *,
.chatbot-interface .helpful-btn:hover span,
.chatbot-interface .helpful-btn:hover i {
  color: white !important;
  fill: white !important;
}

.orange-support .not-helpful-btn:hover *,
.orange-support .not-helpful-btn:hover span,
.orange-support .not-helpful-btn:hover i,
.chatbot-interface .not-helpful-btn:hover *,
.chatbot-interface .not-helpful-btn:hover span,
.chatbot-interface .not-helpful-btn:hover i {
  color: white !important;
  fill: white !important;
}

/* Mobile Anpassungen für Chatbot */
@media (max-width: 768px) {
  .chatbot-messages {
    max-height: calc(100vh - 180px);
    padding: 16px;
  }

  .message-content {
    max-width: 90%;
  }

  .quick-topics {
    flex-direction: column;
  }

  .quick-topic-btn {
    width: 100%;
    text-align: center;
  }

  .feedback-buttons {
    padding: 12px 16px;
    flex-direction: column;
  }

  .feedback-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* Animationen für Chatbot */
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-message {
  animation: messageSlideIn 0.3s ease;
}

/* Scrollbar für Chatbot */
.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ===== ENHANCED CART DROPDOWN RECOMMENDATIONS ===== */

/* Container für Empfehlungen im Warenkorb-Dropdown */
.cart-recommendations {
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(255, 255, 255, 0.95));
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.cart-recommendations h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.cart-recommendations .bi-lightbulb {
  color: #ffc107;
  font-size: 1.1rem;
  animation: lightbulbPulse 2s ease-in-out infinite;
}

@keyframes lightbulbPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

/* Empfohlene Produkte Grid */
.recommendations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

/* Einzelne Empfehlungskarte */
.recommendation-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-light);
}

.recommendation-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), var(--card-bg));
}

.recommendation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s ease;
}

.recommendation-card:hover::before {
  left: 100%;
}

/* Produktbild in Empfehlung */
.recommendation-image {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-small);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.recommendation-card:hover .recommendation-image {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* Produktdetails in Empfehlung */
.recommendation-details {
  flex: 1;
  min-width: 0;
}

.recommendation-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recommendation-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hinzufügen-Button für Empfehlungen */
.recommendation-add-btn {
  width: 32px;
  height: 32px;
  background: #1a1a1a;
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  opacity: 1;
  visibility: visible;
}

.recommendation-add-btn:hover {
  background: #333;
}

.recommendation-add-btn:active {
  transform: scale(0.98);
  background: #000;
}


/* Scrollbar für Empfehlungen */
.recommendations-grid::-webkit-scrollbar {
  width: 4px;
}

.recommendations-grid::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 2px;
}

.recommendations-grid::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.recommendations-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  opacity: 0.8;
}

/* Mobile Anpassungen für Empfehlungen */
@media (max-width: 768px) {
  .cart-recommendations {
    padding: 16px;
  }

  .recommendation-card {
    padding: 10px;
    gap: 10px;
  }

  .recommendation-image {
    width: 45px;
    height: 45px;
  }

  .recommendation-name {
    font-size: 0.85rem;
  }

  .recommendation-price {
    font-size: 0.85rem;
  }

  .recommendation-add-btn {
    width: 28px;
    height: 28px;
  }

  .recommendations-grid {
    max-height: 240px;
  }
}

/* Animation für neue Empfehlungen entfernt */
.recommendation-card {
  /* Keine Animation */
}

/* recommendationSlideIn Animation entfernt */

/* Staggered Animation entfernt */

/* Leerer Warenkorb Empfehlungen - spezielles Layout */
.empty-cart .cart-recommendations {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.empty-cart .recommendations-grid {
  max-height: 320px;
}

/* Erfolgreiche Hinzufügung Animation entfernt */
.recommendation-card.added {
  /* Keine Animation */
}

/* addedPulse Animation entfernt */

/* Verbesserte Hover-Effekte für Touch-Geräte */
@media (hover: none) and (pointer: coarse) {
  .recommendation-card:hover {
    transform: none;
    box-shadow: var(--shadow-light);
  }

  .recommendation-add-btn:hover {
    background: #1a1a1a;
  }
}

/* ===== ENDE ENHANCED CART DROPDOWN RECOMMENDATIONS =====*/

/* ULTIMATE FEEDBACK BUTTON FIX - JAVASCRIPT INJECTION */
/* Füge diesen CSS-Block am Ende hinzu, um JavaScript zu injizieren */
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* CSS-basierte Lösung für Feedback-Buttons */
.feedback-buttons .helpful-btn,
.feedback-buttons .not-helpful-btn {
  background: var(--card-bg) !important;
  border: 2px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  padding: 14px 20px !important;
  border-radius: var(--border-radius) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.feedback-buttons .helpful-btn {
  border-color: var(--success-color) !important;
  color: var(--success-color) !important;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02)) !important;
}

.feedback-buttons .helpful-btn i {
  color: var(--success-color) !important;
}

.feedback-buttons .not-helpful-btn {
  border-color: var(--danger-color) !important;
  color: var(--danger-color) !important;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02)) !important;
}

.feedback-buttons .not-helpful-btn i {
  color: var(--danger-color) !important;
}
/* Hover-Effekte mit maximaler Spezifität */
.feedback-buttons .helpful-btn:hover,
.feedback-buttons .helpful-btn:hover *,
.feedback-buttons .helpful-btn:hover i {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white !important;
  border-color: #10b981 !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

/* ULTIMATE FORCE für grünen Button - GRÜNER HINTERGRUND */
button.helpful-btn:hover,
.helpful-btn:hover,
#feedbackButtons .helpful-btn:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white !important;
  border: 2px solid #10b981 !important;
}

button.helpful-btn:hover *,
.helpful-btn:hover *,
#feedbackButtons .helpful-btn:hover *,
button.helpful-btn:hover i,
.helpful-btn:hover i,
#feedbackButtons .helpful-btn:hover i {
  color: white !important;
  background: transparent !important;
}

.feedback-buttons .not-helpful-btn:hover,
.feedback-buttons .not-helpful-btn:hover *,
.feedback-buttons .not-helpful-btn:hover i {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white !important;
  border-color: #ef4444 !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-medium), 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}

/* ULTIMATE FORCE für roten Button */
button.not-helpful-btn:hover,
.not-helpful-btn:hover,
#feedbackButtons .not-helpful-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white !important;
  border: 2px solid #ef4444 !important;
}

button.not-helpful-btn:hover *,
.not-helpful-btn:hover *,
#feedbackButtons .not-helpful-btn:hover *,
button.not-helpful-btn:hover i,
.not-helpful-btn:hover i,
#feedbackButtons .not-helpful-btn:hover i {
  color: white !important;
  background: transparent !important;
}

/* ===== NACH OBEN BUTTON & HILFE BUTTON STYLES ===== */

/* Nach oben Button */
#scrollToTopBtn {
  position: fixed !important;
  bottom: 100px !important;
  left: 30px !important;
  z-index: 9998 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18) !important;
  font-size: 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  cursor: pointer !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea) !important;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3) !important;
}

/* Hilfe-Button */
#hilfeButton {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 68px !important;
  height: 68px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
  border: none !important;
  border-radius: 24px !important;
  color: white !important;
  font-size: 1.8rem !important;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4), 0 4px 16px rgba(118, 75, 162, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#hilfeButton::after {
  content: "?" !important;
  position: absolute !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

#hilfeButton:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #f093fb 100%) !important;
  transform: scale(1.1) translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5), 0 6px 20px rgba(118, 75, 162, 0.4) !important;
  border-radius: 28px !important;
}

/* Hilfe-Panel */
.hilfe-panel {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0.8);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 0 12px 32px rgba(102, 126, 234, 0.2);
  z-index: 2147483647;
  max-width: 95vw;
  width: 440px;
  max-height: 85vh;
  min-height: 500px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hilfe-panel.offen {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
  visibility: visible !important;
}

.hilfe-panel-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 28px 28px 0 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#hilfePanelClose {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

#hilfePanelClose:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: none;
}

.hilfe-themen-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  overflow-y: auto;
  max-height: 450px;
  flex: 1;
}

.hilfe-thema-btn {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 2px solid rgba(102, 126, 234, 0.1);
  border-radius: 18px;
  padding: 20px 26px;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  font-size: 15.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hilfe-thema-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Live-Chat Button Styling */
.live-chat-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite;
}

.live-chat-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5) !important;
}

.live-chat-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Live-Chat Interface */
.live-chat-interface {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.live-chat-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.live-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.live-chat-title i {
  font-size: 24px;
}

.live-chat-title span:first-of-type {
  font-weight: 600;
  font-size: 16px;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: auto;
}

.online-status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.live-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
}

.live-chat-message {
  display: flex;
  gap: 8px;
  max-width: 80%;
  animation: messageSlideIn 0.3s ease-out;
}

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

.live-chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.live-chat-message.agent {
  align-self: flex-start;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar.user {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.message-avatar.agent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  word-wrap: break-word;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-bubble.user {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-bottom-right-radius: 4px;
}

.message-bubble.agent {
  background: #f1f5f9;
  color: #1e293b;
  border-bottom-left-radius: 4px;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 4px;
}

.live-chat-input-container {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.live-chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.live-chat-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.live-chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.live-chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.live-chat-send-btn:active {
  transform: scale(0.95);
}

.live-chat-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: #f8fafc;
  font-size: 12px;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

.live-chat-info i {
  color: #10b981;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-radius: 18px;
  width: fit-content;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #94a3b8;
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  #scrollToTopBtn {
    bottom: 30px !important;
    left: 20px !important;
    width: 52px !important;
    height: 52px !important;
  }

  #hilfeButton {
    bottom: 30px !important;
    right: 20px !important;
    width: 64px !important;
    height: 64px !important;
  }

  .hilfe-panel {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .hilfe-panel-header {
    border-radius: 0;
    padding: 28px 24px;
  }

  .hilfe-themen-modern {
    padding: 20px;
    max-height: calc(100vh - 120px);
  }
}

/* Chatbot Interface Styles */
.chatbot-interface {
  display: none;
  flex-direction: column;
  height: 100%;
}

.chatbot-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 400px;
}

.chatbot-message {
  margin-bottom: 16px;
}

.message-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.message-text {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.4;
}

.user-message .message-content {
  flex-direction: row-reverse;
}

.user-message .message-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.quick-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-topic-btn {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-topic-btn:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.feedback-buttons {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e9ecef;
}

.feedback-btn {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.feedback-btn:hover {
  background: #f8f9fa;
  border-color: #667eea;
}

/* Desktop-only Elemente (verstecke auf Mobile) */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* ===== INTEGRIERTE CUSTOM STYLES ===== */

/* Larger text for "Über uns" section in footer */
.lumiere-footer h5 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
}

.lumiere-footer p {
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.lumiere-footer a {
    font-size: 16px !important;
    line-height: 2 !important;
}

.lumiere-footer .text-muted {
    font-size: 15px !important;
}

/* Keep footer black - don't inherit category colors */
.lumiere-footer {
    background-color: var(--lumiere-black) !important;
    color: var(--lumiere-white) !important;
    margin-top: 0 !important;
}

/* Extend category background to where footer starts */
.product-category-section:last-of-type {
    padding-bottom: 80px !important;
    margin-bottom: 0 !important;
}

/* Category sections with proper backgrounds */
.category-technik {
    background: linear-gradient(135deg, #e8fff4 0%, #f0fffa 100%) !important;
}

.category-beleuchtung {
    background: linear-gradient(135deg, #fffaeb 0%, #fffdf5 100%) !important;
}

.category-koerperpflege {
    background: linear-gradient(135deg, #fff0f5 0%, #fff8fa 100%) !important;
}

.category-haushalt {
    background: linear-gradient(135deg, #ffe8f5 0%, #ffeef8 100%) !important

/* ===== BESTSELLER BUTTONS - PASTEL COLORS OVERRIDE ===== */

/* KATEGORIE-TABS - PASTEL FARBEN - KORRIGIERTE ACTIVE STATES */
.lumiere-category-tab:first-child.active,
.lumiere-category-tab[data-category="alle"].active {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
}

/* Technik/Gadgets - GRÜN wenn aktiv */
.lumiere-category-tab[data-category="Technik/Gadgets"].active {
    background: linear-gradient(135deg, #43e97b, #38a169) !important;
    color: #ffffff !important;
    border: 1px solid #43e97b !important;
    box-shadow: 0 6px 25px rgba(67, 233, 123, 0.4) !important;
}

.lumiere-category-tab[data-category="Beleuchtung"].active {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
}

/* K�rperpflege/Wellness - LILA wenn aktiv */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active {
    background: linear-gradient(135deg, #9333ea, #7c3aed) !important;
    color: #ffffff !important;
    border: 1px solid #9333ea !important;
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.4) !important;
}

/* Haushalt und K�che - ROSA wenn aktiv */
.lumiere-category-tab[data-category="Haushalt und K�che"].active {
    background: linear-gradient(135deg, #ec4899, #db2777) !important;
    color: #ffffff !important;
    border: 1px solid #ec4899 !important;
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4) !important;
}

/* KATEGORIE-TABS HOVER EFFECTS - PASTEL */
.lumiere-category-tab:first-child:hover,
.lumiere-category-tab[data-category="alle"]:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    color: #6b2c91 !important;
    transform: translateY(-2px);
}

.lumiere-category-tab[data-category="Technik/Gadgets"]:hover {
    background: rgba(67, 233, 123, 0.15) !important;
    color: #43e97b !important;
    border-color: #43e97b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(67, 233, 123, 0.25) !important;
}

.lumiere-category-tab[data-category="Beleuchtung"]:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    color: #ffd700 !important;
    transform: translateY(-2px);
}

.lumiere-category-tab[data-category="K�rperpflege/Wellness"]:hover {
    background: rgba(147, 51, 234, 0.15) !important;
    color: #9333ea !important;
    border-color: #9333ea !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.25) !important;
}

.lumiere-category-tab[data-category="Haushalt und K�che"]:hover {
    background: rgba(236, 72, 153, 0.15) !important;
    color: #ec4899 !important;
    border-color: #ec4899 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.25) !important;
}

/* ACTIVE HOVER STATES */
.lumiere-category-tab[data-category="Technik/Gadgets"].active:hover {
    background: linear-gradient(135deg, #38a169, #43e97b) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(67, 233, 123, 0.5) !important;
}

.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5) !important;
}

.lumiere-category-tab[data-category="Haushalt und K�che"].active:hover {
    background: linear-gradient(135deg, #db2777, #ec4899) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5) !important;
}

/* Category-specific buttons in bestseller grid - PASTEL COLORS */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 2px 8px rgba(22, 101, 52, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="K�rperpflege/Wellness"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #6b21a8 !important;
    border: 1px solid #c4b5fd !important;
    box-shadow: 0 2px 8px rgba(107, 33, 168, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

/* Hover-Effekte f�r Bestseller-Buttons - PASTEL COLORS */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #bbf7d0, #86efac) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="K�rperpflege/Wellness"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* Fallback f�r alle Bestseller Buttons falls keine spezifische Kategorie */
#bestsellerGrid .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* ===== HAUSHALT KATEGORIE SEKTION BUTTONS - ROSA STATT GR�N ===== */

/* Haushalt Kategorie Sektion - Rosa Hintergrund */
section[data-category="Haushalt und K�che"],
.product-category-section:has(#haushaltGrid) {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%) !important;
}

/* Haushalt Warenkorb Buttons - ROSA */
section[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn,
#haushaltGrid .lumiere-add-to-cart-btn,
.lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

section[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn:hover,
#haushaltGrid .lumiere-add-to-cart-btn:hover,
.lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* CSS Variablen �berschreiben */
:root {
  /* Technik wird GR�N */
  --category-technik: #43e97b !important;
  --category-technik-light: rgba(67, 233, 123, 0.15) !important;
  
  /* K�rperpflege wird LILA */
  --category-koerperpflege: #9333ea !important;
  --category-koerperpflege-light: rgba(147, 51, 234, 0.15) !important;
  
  /* Haushalt wird ROSA (weg vom Gr�n) */
  --category-haushalt: #ec4899 !important;
  --category-haushalt-light: rgba(236, 72, 153, 0.15) !important;
}

/* ===== KATEGORIE BUTTONS - PASTELL FARBEN WENN AUSGEW�HLT ===== */

/* Alle Kategorien - PASTELL LILA wenn aktiv */
.lumiere-category-tab:first-child.active,
.lumiere-category-tab[data-category="alle"].active {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 6px 25px rgba(107, 44, 145, 0.3) !important;
}

/* Technik/Gadgets - PASTELL GR�N wenn aktiv */
.lumiere-category-tab[data-category="Technik/Gadgets"].active {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 6px 25px rgba(22, 101, 52, 0.3) !important;
}

/* Beleuchtung - PASTELL GELB wenn aktiv */
.lumiere-category-tab[data-category="Beleuchtung"].active {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 6px 25px rgba(146, 64, 14, 0.3) !important;
}

/* K�rperpflege/Wellness - PASTELL LILA/ROSA wenn aktiv */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #6b21a8 !important;
    border: 1px solid #c4b5fd !important;
    box-shadow: 0 6px 25px rgba(107, 33, 168, 0.3) !important;
}

/* Haushalt und K�che - PASTELL ROSA wenn aktiv */
.lumiere-category-tab[data-category="Haushalt und K�che"].active {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 6px 25px rgba(190, 24, 93, 0.3) !important;
}

/* ===== BESTSELLER BUTTONS - ALLE KONSISTENT MACHEN ===== */

/* Standard Fallback f�r alle Bestseller Buttons */
#bestsellerGrid .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* Spezifische �berschreibungen nach Kategorie */
#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category="Elektronik"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 2px 8px rgba(22, 101, 52, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Technik/Gadgets"] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category="Elektronik"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #bbf7d0, #86efac) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Beleuchtung"] .lumiere-add-to-cart-btn:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="K�rperpflege/Wellness"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #6b21a8 !important;
    border: 1px solid #c4b5fd !important;
    box-shadow: 0 2px 8px rgba(107, 33, 168, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="K�rperpflege/Wellness"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* Zus�tzliche Selektoren f�r alle m�glichen Varianten */
#bestsellerGrid .lumiere-product-card:not([data-category]) .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category=""] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category="undefined"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card:not([data-category]) .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category=""] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category="undefined"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* Sehr spezifische �berschreibung f�r hartn�ckige Buttons */
#bestsellerGrid .lumiere-add-to-cart-btn[style] {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

/* ===== BESTSELLER BUTTONS - ULTIMATIVE �BERSCHREIBUNG ===== */

/* Alle Bestseller Buttons - St�rkste Regel mit h�chster Spezifit�t */
#bestsellerGrid .lumiere-product-card .lumiere-add-to-cart-btn,
#bestsellerGrid .product-card .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-add-to-cart-btn,
.bestseller-section .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .product-card .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-add-to-cart-btn:hover,
.bestseller-section .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    color: #6b2c91 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* �berschreibt alle inline Styles und andere Regeln */
#bestsellerGrid .lumiere-add-to-cart-btn[style*="background"],
#bestsellerGrid .lumiere-add-to-cart-btn[style*="color"] {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
}

/* Spezielle Regel f�r die ersten beiden Buttons */
#bestsellerGrid .lumiere-product-card:nth-child(1) .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card:nth-child(2) .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card:nth-child(1) .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card:nth-child(2) .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    color: #6b2c91 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* Reset aller m�glichen Kategorie-spezifischen Styles f�r Bestseller */
#bestsellerGrid .lumiere-product-card[data-category] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    color: #6b2c91 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* ===== BESTSELLER BUTTONS - KATEGORIE-SPEZIFISCHE FARBEN KORRIGIERT ===== */

/* Entferne die ultimative �berschreibung und mache kategorie-spezifisch */

/* Standard Fallback f�r Buttons ohne spezifische Kategorie */
#bestsellerGrid .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 2px 8px rgba(107, 44, 145, 0.2) !important;
}

#bestsellerGrid .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d9c2ff, #c9a8ff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3) !important;
}

/* Technik/Gadgets und Elektronik - GR�N */
#bestsellerGrid .lumiere-product-card[data-category*="Technik"] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category*="Gadgets"] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category*="Elektronik"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 2px 8px rgba(22, 101, 52, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category*="Technik"] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category*="Gadgets"] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category*="Elektronik"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #bbf7d0, #86efac) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3) !important;
}

/* Beleuchtung - GELB */
#bestsellerGrid .lumiere-product-card[data-category*="Beleuchtung"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 2px 8px rgba(146, 64, 14, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category*="Beleuchtung"] .lumiere-add-to-cart-btn:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3) !important;
}

/* K�rperpflege/Wellness - LILA/ROSA */
#bestsellerGrid .lumiere-product-card[data-category*="K�rperpflege"] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category*="Wellness"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #6b21a8 !important;
    border: 1px solid #c4b5fd !important;
    box-shadow: 0 2px 8px rgba(107, 33, 168, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category*="K�rperpflege"] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category*="Wellness"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3) !important;
}

/* Haushalt und K�che - ROSA */
#bestsellerGrid .lumiere-product-card[data-category*="Haushalt"] .lumiere-add-to-cart-btn,
#bestsellerGrid .lumiere-product-card[data-category*="K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

#bestsellerGrid .lumiere-product-card[data-category*="Haushalt"] .lumiere-add-to-cart-btn:hover,
#bestsellerGrid .lumiere-product-card[data-category*="K�che"] .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* Spezielle Fixes f�r die ersten beiden Produkte falls sie falsche Kategorien haben */
#bestsellerGrid .lumiere-product-card:nth-child(1)[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
}

#bestsellerGrid .lumiere-product-card:nth-child(2)[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
}

/* ===== HAUSHALT KATEGORIE SEKTION - ROSA BUTTONS FIX ===== */

/* Haushalt Sektion - Alle Buttons ROSA mit h�chster Priorit�t */
#haushaltGrid .lumiere-add-to-cart-btn,
#haushaltGrid .lumiere-product-card .lumiere-add-to-cart-btn,
.product-category-section:has(#haushaltGrid) .lumiere-add-to-cart-btn,
section[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn,
.haushalt-section .lumiere-add-to-cart-btn {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 2px 8px rgba(190, 24, 93, 0.2) !important;
}

#haushaltGrid .lumiere-add-to-cart-btn:hover,
#haushaltGrid .lumiere-product-card .lumiere-add-to-cart-btn:hover,
.product-category-section:has(#haushaltGrid) .lumiere-add-to-cart-btn:hover,
section[data-category="Haushalt und K�che"] .lumiere-add-to-cart-btn:hover,
.haushalt-section .lumiere-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    color: #be185d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3) !important;
}

/* �berschreibe alle anderen Farben in der Haushalt Sektion */
#haushaltGrid [class*="add-to-cart"] {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
}

/* ===== �BER UNS SEKTION - HINTERGRUND UND TEXT FIXES ===== */

/* Entferne wei�en Raum vor �ber uns */
.about-section,
#about,
section:has(.about-content) {
    margin-top: 0 !important;
    padding-top: 60px !important;
    background: #1a1a1a !important;
}

/* Vorherige Sektion soll direkt anschlie�en */
.product-category-section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 80px !important;
}

/* �ber uns Text gr��er und volle Breite nutzen */
.about-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 5% !important;
}

.about-content h2,
.about-section h2 {
    font-size: 3rem !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

.about-content p,
.about-section p {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
}

.about-content .features,
.about-section .features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
    width: 100% !important;
}

.about-content .feature-item,
.about-section .feature-item {
    font-size: 1.2rem !important;
    padding: 20px !important;
}

/* Footer Bereich auch anpassen */
.footer-section {
    margin-top: 0 !important;
    padding-top: 60px !important;
}

/* �bergangsbereich zwischen letzter Kategorie und �ber uns */
section[data-category="Haushalt und K�che"]::after,
#haushaltGrid::after,
.product-category-section:last-of-type::after {
    content: "" !important;
    display: block !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== KATEGORIE BUTTONS - FINALE KORREKTUR ===== */

/* Haushalt und K�che - ROSA wenn aktiv (NICHT GR�N!) */
.lumiere-category-tab[data-category="Haushalt und K�che"].active {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 6px 25px rgba(190, 24, 93, 0.3) !important;
}

/* Haushalt und K�che - ROSA Hover (NICHT LILA-GR�N!) */
.lumiere-category-tab[data-category="Haushalt und K�che"]:hover:not(.active) {
    background: rgba(236, 72, 153, 0.15) !important;
    color: #ec4899 !important;
    border-color: #ec4899 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.25) !important;
}

/* Haushalt und K�che - Active Hover */
.lumiere-category-tab[data-category="Haushalt und K�che"].active:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    color: #be185d !important;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4) !important;
}

/* K�rperpflege/Wellness - MEHR LILA wenn aktiv */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe) !important;
    color: #7c3aed !important;
    border: 1px solid #a78bfa !important;
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.3) !important;
}

/* K�rperpflege/Wellness - Lila Hover */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"]:hover:not(.active) {
    background: rgba(147, 51, 234, 0.15) !important;
    color: #9333ea !important;
    border-color: #9333ea !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.25) !important;
}

/* K�rperpflege/Wellness - Active Hover */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active:hover {
    background: linear-gradient(135deg, #d8b4fe, #c084fc) !important;
    color: #7c3aed !important;
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4) !important;
}

/* Technik/Gadgets bleibt GR�N - zur Sicherheit nochmal definieren */
.lumiere-category-tab[data-category="Technik/Gadgets"].active {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
    color: #166534 !important;
    border: 1px solid #86efac !important;
    box-shadow: 0 6px 25px rgba(22, 101, 52, 0.3) !important;
}

/* Beleuchtung bleibt GELB - zur Sicherheit nochmal definieren */
.lumiere-category-tab[data-category="Beleuchtung"].active {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    color: #ffd700 !important;
    border: 1px solid #fbbf24 !important;
    box-shadow: 0 6px 25px rgba(146, 64, 14, 0.3) !important;
}

/* Alle Kategorien bleibt LILA - zur Sicherheit nochmal definieren */
.lumiere-category-tab:first-child.active,
.lumiere-category-tab[data-category="alle"].active {
    background: linear-gradient(135deg, #e8d5ff, #d9c2ff) !important;
    color: #6b2c91 !important;
    border: 1px solid #c9a8ff !important;
    box-shadow: 0 6px 25px rgba(107, 44, 145, 0.3) !important;
}

/* ===== KATEGORIE BUTTONS - FARBEN KORRIGIERT ===== */

/* Haushalt und K�che - ROSA wenn aktiv (nicht gr�n!) */
.lumiere-category-tab[data-category="Haushalt und K�che"].active {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    box-shadow: 0 6px 25px rgba(190, 24, 93, 0.4) !important;
}

/* Haushalt und K�che - ROSA hover */
.lumiere-category-tab[data-category="Haushalt und K�che"]:hover {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4) !important;
    color: #be185d !important;
    border: 1px solid #f9a8d4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(190, 24, 93, 0.3) !important;
}

/* Haushalt und K�che - ROSA active hover */
.lumiere-category-tab[data-category="Haushalt und K�che"].active:hover {
    background: linear-gradient(135deg, #fbcfe8, #ec4899) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(190, 24, 93, 0.5) !important;
}

/* K�rperpflege/Wellness - MEHR LILA wenn aktiv */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active {
    background: linear-gradient(135deg, #a855f7, #9333ea) !important;
    color: #ffffff !important;
    border: 1px solid #a855f7 !important;
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5) !important;
}

/* K�rperpflege/Wellness - LILA hover (nicht aktiv) */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"]:hover:not(.active) {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff) !important;
    color: #a855f7 !important;
    border: 1px solid #c4b5fd !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3) !important;
}

/* K�rperpflege/Wellness - DUNKEL LILA active hover */
.lumiere-category-tab[data-category="K�rperpflege/Wellness"].active:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.6) !important;
}

/* �berschreibe alle anderen Regeln f�r diese Buttons */
.lumiere-category-tab[data-category*="Haushalt"] {
    --category-color: #ec4899 !important;
    --category-light: rgba(236, 72, 153, 0.15) !important;
}

.lumiere-category-tab[data-category*="K�rperpflege"] {
    --category-color: #a855f7 !important;
    --category-light: rgba(168, 85, 247, 0.15) !important;
}

/* Zus�tzliche Sicherheit - �berschreibe gr�ne Farben */
.lumiere-category-tab[data-category="Haushalt und K�che"]:not(.active) {
    background: rgba(236, 72, 153, 0.1) !important;
    color: #ec4899 !important;
    border: 1px solid rgba(236, 72, 153, 0.3) !important;
}

.lumiere-category-tab[data-category="K�rperpflege/Wellness"]:not(.active) {
    background: rgba(168, 85, 247, 0.1) !important;
    color: #a855f7 !important;
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
}

/* Fix für Warenkorb Löschen Button Zentrierung */
.cart-dropdown-footer .clear-cart-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.cart-dropdown-footer .clear-cart-btn i {
    margin-right: 6px !important;
}

/* Fix für Warenkorb Löschen Button Zentrierung - Höhere Spezifität */
#cartDropdown .cart-dropdown-footer .clear-cart-btn,
.cart-dropdown .cart-dropdown-footer .clear-cart-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
    line-height: 1 !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

#cartDropdown .cart-dropdown-footer .clear-cart-btn i,
.cart-dropdown .cart-dropdown-footer .clear-cart-btn i {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Fix für konsistente Button-Höhe und Text-Zentrierung */
.cart-dropdown-footer button.clear-cart-btn {
    min-height: 48px !important;
    box-sizing: border-box !important;
}

/* Sicherstellen, dass der Text vertikal zentriert bleibt */
.cart-dropdown-footer .clear-cart-btn {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

/* Fix für den Container um die Buttons */
.cart-dropdown-footer > div.d-grid {
    min-height: auto !important;
    grid-template-rows: 48px 48px !important;
}


/* ===== GITHUB PAGES MOBILE FIXES - FINAL VERSION ===== */
@media (max-width: 768px) {
  /* FORCE MOBILE LAYOUT FIXES */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .category-grid-lumiere {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .product-card img,
  .product-image,
  .hero-image img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  
  /* ENSURE NO HORIZONTAL OVERFLOW */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  .container, .container-fluid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* ===== MOBILE SLIDER ANTI-ZITTER FIX - DIREKT IN STYLES.CSS ===== */

/* Kritische Mobile Fixes - Zittern stoppen */
@media (max-width: 768px) {
    /* Hardware-Beschleunigung für Container */
    .product-scroll-container {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        -webkit-perspective: 1000px !important;
        perspective: 1000px !important;
        will-change: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Hardware-Beschleunigung für Grid */
    .product-scroll-grid {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: auto !important;
        will-change: scroll-position !important;
        /* Alle Animationen deaktivieren */
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    /* Alle Hover-Effekte auf Mobile komplett deaktivieren */
    .product-scroll-grid .lumiere-product-card:hover {
        transform: none !important;
        -webkit-transform: none !important;
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        box-shadow: none !important;
    }
    
    /* Scrollbar-Fixes für Mobile - VERBESSERT */
    .product-scroll-container .custom-scrollbar-track {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        /* Sichtbarer auf Mobile */
        height: 8px !important;
        background: #b0b0b0 !important;
        border: 1px solid #999999 !important;
        bottom: 8px !important;
    }
    
    .product-scroll-container .custom-scrollbar-thumb {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        animation: none !important;
        transition: transform 0.1s ease !important;
        -webkit-transition: -webkit-transform 0.1s ease !important;
        /* Sichtbarer auf Mobile */
        height: 8px !important;
        background: linear-gradient(135deg, #333333, #000000) !important;
        border: 1px solid #000000 !important;
        bottom: 8px !important;
        min-width: 40px !important;
        border-radius: 4px !important;
    }
    
    .product-scroll-container .custom-scrollbar-thumb:active {
        transform: none !important;
        -webkit-transform: none !important;
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        background: linear-gradient(135deg, #555555, #222222) !important;
    }
    
    /* Alle Produktkarten-Animationen deaktivieren */
    .lumiere-product-card,
    .lumiere-product-card *,
    .product-scroll-grid *,
    .product-scroll-container * {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        -webkit-animation: none !important;
    }
    
    /* Scroll-Arrows auch ohne Animationen */
    .scroll-arrow {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    .scroll-arrow:hover {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Kategorie-Tabs ohne Animationen */
    .lumiere-category-tab {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    .lumiere-category-tab:hover {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Buttons ohne Animationen */
    .lumiere-add-to-cart-btn,
    .lumiere-wishlist-btn {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    .lumiere-add-to-cart-btn:hover,
    .lumiere-wishlist-btn:hover {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
}

/* Zusätzliche Fixes für sehr kleine Bildschirme */
@media (max-width: 480px) {
    /* Noch aggressivere Anti-Zitter-Maßnahmen */
    .product-scroll-container,
    .product-scroll-grid {
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
}

/* Touch-spezifische Optimierungen */
@media (hover: none) and (pointer: coarse) {
    /* Für Touch-Geräte alle Hover-Effekte komplett entfernen */
    .product-scroll-grid .lumiere-product-card:hover,
    .scroll-arrow:hover,
    .lumiere-category-tab:hover,
    .lumiere-add-to-cart-btn:hover,
    .lumiere-wishlist-btn:hover {
        animation: none !important;
        transition: none !important;
        -webkit-transition: none !important;
        transform: none !important;
        -webkit-transform: none !important;
        box-shadow: none !important;
    }
    
    /* Mobile Scrollbar noch sichtbarer machen */
    .product-scroll-container .custom-scrollbar-track {
        height: 10px !important;
        background: #999999 !important;
        bottom: 6px !important;
    }
    
    .product-scroll-container .custom-scrollbar-thumb {
        height: 10px !important;
        background: #000000 !important;
        bottom: 6px !important;
        min-width: 50px !important;
    }
}
