        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: #ffffff;        /* weisser hintergrund */
            color: #1e1e2f;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- NAVBAR (blur, transparent) --- */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.3);    /* transparenter weiss */
            backdrop-filter: blur(14px) saturate(180%);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            border-bottom: 1px solid rgba(255,255,255,0.5);
            padding: 0.9rem 2rem;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo h2 {
            font-weight: 600;
            font-size: 1.7rem;
            background: linear-gradient(135deg, #2a2a3a, #3f3f5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            font-size: 0.9rem;
            background: none;
            -webkit-text-fill-color: #6b6b8b;
            display: block;
            line-height: 1.2;
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            font-weight: 500;
            color: #2d2d3a;
        }
        .nav-links a {
            text-decoration: none;
            color: #1f1f2e;
            font-size: 1rem;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #0066cc;
        }

        /* --- SUCHLEISTE + FILTER (unter navbar) --- */
        .search-section {
            max-width: 1300px;
            margin: 2rem auto 0.5rem auto;
            padding: 0 2rem;
            width: 100%;
        }

        .search-panel {
            background: #ffffff;
            border-radius: 48px;
            padding: 0.4rem 0.4rem 0.4rem 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03), 0 0 0 1px rgba(0,0,0,0.02);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.75);
        }

        .search-panel i {
            color: #8e8ea8;
            font-size: 1.1rem;
        }

        .search-input-wrapper {
            flex: 4 1 240px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.6);
            border-radius: 40px;
            padding: 0 0.7rem;
        }
        .search-input-wrapper input {
            width: 100%;
            border: none;
            background: transparent;
            padding: 0.85rem 0.5rem;
            font-size: 1rem;
            outline: none;
        }

        .filter-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            background: rgba(240,240,250,0.5);
            border-radius: 40px;
            padding: 0.3rem 1rem;
        }

        .filter-item {
            display: flex;
            align-items: center;
            gap: 6px;
            background: white;
            padding: 0.4rem 1rem 0.4rem 0.9rem;
            border-radius: 32px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            font-size: 0.9rem;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .filter-item i {
            color: #3a6ea5;
        }
        .filter-item select {
            border: none;
            background: transparent;
            font-weight: 500;
            outline: none;
            cursor: pointer;
            color: #1a1a2a;
            padding-right: 4px;
        }

        .filter-button {
            background: #2d2d44;
            border: none;
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }
        .filter-button:hover {
            background: #1f1f32;
        }

        /* --- PRODUKTBOXEN (peptide raster) --- */
        .product-grid {
            max-width: 1400px;
            margin: 2.5rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem 1.5rem;
            flex: 1;
        }

        .product-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 1.4rem 1.2rem 1.5rem 1.2rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.02), 0 0 0 1px rgba(0,0,0,0.02);
            transition: 0.2s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0fa;
            backdrop-filter: blur(4px);
            background: rgba(255, 255, 255, 0.95);
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 40px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,40,100,0.1);
        }

        /* bild gross */
        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: #f8f9ff;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 3.5rem;
            color: #2e405b;
            border: 1px solid #f0f0f5;
            object-fit: cover;
            font-weight: 300;
        }

        .product-image img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 18px;
        }

        .product-category {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            color: #63638c;
            margin-bottom: 0.25rem;
        }

        .product-title {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 0.4rem;
            color: #151522;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .trust-badge {
            background: #f4f4fa;
            border-radius: 50px;
            padding: 0.2rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1f4f7a;
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
        }

        .price-ship-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin: 0.8rem 0 0.5rem 0;
            flex-wrap: wrap;
            gap: 6px;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b1a30;
            letter-spacing: -0.5px;
        }
        .price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #5e5e7a;
        }

        .shipping-info {
            background: #f0f3fc;
            border-radius: 30px;
            padding: 0.35rem 1rem;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #1a334f;
        }
        .shipping-info i {
            color: #4e6b8f;
        }

        .vendor-rank {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.5rem;
            border-top: 1px dashed #e1e1f0;
            padding-top: 0.8rem;
            font-size: 0.9rem;
        }

        .vendor {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .vendor i {
            color: #2f4858;
            width: 20px;
        }

        .trustscore {
            background: #eaeef5;
            border-radius: 30px;
            padding: 0.25rem 1rem;
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .trustscore i {
            color: #f5b342;
        }

        /* --- FOOTER --- */
        .footer {
            background: #fbfcff;
            border-top: 1px solid #edf0f8;
            padding: 3rem 2rem 2rem;
            margin-top: 3rem;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.7);
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            color: #2e2e45;
        }

        .footer-links {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            text-decoration: none;
            color: #34344e;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #0066cc;
        }
        .footer-copy {
            font-size: 0.9rem;
            color: #6b6b92;
        }

        /* hilfsmittel */
        .badge {
            background: #e7ecf5;
            border-radius: 50px;
            padding: 0.2rem 0.8rem;
        }
        hr {
            border: 0.5px solid #f0f2fa;
            margin: 0.8rem 0;
        }
        i {
            color: #6f6f9a;
        }