        /* CSS von deiner Hauptseite */
        :root {
            --bg-primary: #0a0c10;
            --bg-secondary: #0e0e0e;
            --bg-card: #141414;
            --bg-card-hover: #1a1a1a;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --accent: #1e90ff;
            --accent-hover: #4da3ff;
            --accent-glow: rgba(30, 144, 255, 0.3);
            --border-color: #2a2a2a;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px rgba(30, 144, 255, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 20% 80%, var(--accent-glow) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, var(--accent-glow) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, var(--accent-glow) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, -20px) scale(1.1); }
            66% { transform: translate(20px, -10px) scale(0.9); }
        }

        /* Header mit erweiterter Navigation */
        header {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo-section {
            text-align: center;
            margin-bottom: 1rem;
        }

        .logo-section img {
            height: 60px;
            transition: var(--transition);
        }

        .logo-section img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px var(--accent-glow));
        }

        /* Hauptnavigation */
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1rem 0;
        }

        nav a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        nav a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--accent-glow);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        nav a:hover {
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        nav a:hover::before {
            width: 100%;
            height: 100%;
        }

        nav a.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        /* Account-Links */
        .account-links {
            position: absolute;
            top: 1rem;
            right: 2rem;
            display: flex;
            gap: 1rem;
        }

        .account-links a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .account-links a:hover {
            color: var(--accent);
            background: rgba(30, 144, 255, 0.1);
        }

        .account-links a i {
            margin-right: 0.5rem;
        }

        /* Container und Title */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .page-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .page-title p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Produktgruppen-Tabs */
        .group-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .group-tab {
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            color: var(--text-primary);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .group-tab:hover,
        .group-tab.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        .group-tab i {
            font-size: 1rem;
        }

        .group-count {
            display: inline-block;
            margin-left: 0.5rem;
            font-size: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.1rem 0.5rem;
            border-radius: 10px;
        }

        .group-tab.active .group-count {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
            border-color: var(--accent);
            background: var(--bg-card-hover);
        }

        .product-card:hover::before {
            transform: translateX(0);
        }

/* Bestehendes Style für .product-group-badge anpassen */
.product-group-badge {
    position: absolute;
    top: 10px; /* Direkt oben im Container */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.45);
    color: #ffffff;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.25);
    z-index: 5;
}

/* Optional: Badge Container vorbereiten, falls mehrere Elemente positioniert werden sollen */
.product-badge-container {
    position: relative;
    height: auto; /* dynamisch je nach Inhalt */
    padding-top: 28px; /* Platz für Badge oben */
    overflow: visible;
}



        .product-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
            display: block;
            text-align: center;
        }

        .product-card h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            text-align: center;
        }

        .product-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            text-align: center;
            min-height: 60px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }


		.product-features {
			list-style: none;
			padding: 0;
			margin: 0;
		  position: relative; /* für Tooltip-Ankerpunkt */
		  overflow: visible !important; /* Tooltip sichtbar lassen */
		  z-index: 1;
		}

		.product-features li {
			display: flex;
			align-items: flex-start;
			gap: 0.5em;
			margin-bottom: 6px;
			font-size: 0.95rem;
			line-height: 1.4;
			max-width: 400px; /* oder deine gewünschte Breite */
		}

		.product-features li i {
			color: #4b9eff; /* Deine Icon-Farbe */
			margin-top: 0.15em; /* Feinjustierung für vertikale Ausrichtung */
			flex-shrink: 0;
		}


.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(30, 144, 255, 0.15);
  color: #1e90ff;
  font-weight: 600;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}





.info-icon {
  cursor: help;
  font-size: 1em;
  margin-left: 6px;
  position: relative;
  display: inline-block;
}

.info-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 280px;
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  white-space: normal;
  font-size: 0.95em;
  z-index: 100;
  line-height: 1.4;
  text-align: left;
}

.info-icon:hover::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent rgba(30, 30, 30, 0.9) transparent;
}



.product-box {
  position: relative;
}

/* Das „ⓘ“-Icon */
.product-info-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1rem;
  background: #333;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease;
}

.product-info-icon:hover {
  background: #555;
}

/* Das schwebende Tooltip-Feld */
.product-info-tooltip {
  position: absolute;
  top: 42px;
  right: 12px;
  background-color: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
  width: 280px;
  max-width: 90vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  white-space: pre-line;
  z-index: 30;
}

/* Anzeige bei Hover */
.product-box:hover .product-info-tooltip {
  opacity: 1;
  pointer-events: auto;
}


/* Tooltip verbessern */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 6px;
    vertical-align: middle;
}

.tooltip-container .tooltip-content {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: left;
    padding: 12px 16px;
    border-radius: 12px;
    position: absolute;
    z-index: 10;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}







        .product-card:hover .product-features li {
            transform: translateX(5px);
        }

        .product-card:hover .product-features li i {
            transform: scale(1.2);
        }

        .product-price {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .price-period {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .order-button {
            display: block;
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }

        .order-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(30, 144, 255, 0.4);
        }

        /* Error & Empty States */
        .error-message {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            color: #ff6b6b;
            margin-bottom: 2rem;
        }

        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
        }

        .empty-state i {
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.5;
            margin-bottom: 1rem;
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
		
		/* Footer */
		footer {
		  background: var(--bg-secondary);
		  border-top: 1px solid var(--border-color);
		  padding: 3rem 2rem 2rem;
		  text-align: center;
		}

		.footer-content {
		  max-width: 1200px;
		  margin: 0 auto;
		}

		.footer-info {
		  margin-bottom: 2rem;
		  color: var(--text-secondary);
		}

		.footer-links {
		  display: flex;
		  justify-content: center;
		  flex-wrap: wrap;
		  gap: 2rem;
		  margin-top: 2rem;
		}

		.footer-links a {
		  color: var(--text-secondary);
		  text-decoration: none;
		  transition: var(--transition);
		  position: relative;
		}

		.footer-links a::after {
		  content: '';
		  position: absolute;
		  bottom: -5px;
		  left: 0;
		  width: 0;
		  height: 2px;
		  background: var(--accent);
		  transition: width 0.3s;
		}

		.footer-links a:hover {
		  color: var(--accent);
		}

		.footer-links a:hover::after {
		  width: 100%;
		}

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                padding: 1rem;
            }

            .account-links {
                position: static;
                margin-top: 1rem;
                justify-content: center;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(20, 20, 20, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1rem;
                border-bottom: 1px solid var(--border-color);
            }

            nav.active {
                display: flex;
            }

            nav a {
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }

            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 2rem;
                right: 1rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .page-title h1 {
                font-size: 2rem;
            }

            .group-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 0.5rem;
            }

            .group-tab {
                white-space: nowrap;
            }
        }

        /* Hidden */
        .hidden {
            display: none !important;
        }


.check-icon {
    color: #0099ff; /* Einheitliches Blau */
    margin-right: 8px;
    font-weight: bold;
}
.product-features {
    list-style: none;
    padding-left: 0;
    margin: 1em 0;
}
.product-features li {
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ccc;
}