    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
/* Pop-up Hintergrund */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

/* Pop-up Inhalt */
.popup-content {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

/* Schließen-Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      background: #ffffff;
      color: #000000;
      font-weight: 400;
    }
  
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    /* Divider zwischen Sections */
    .section-divider {
      border: none;
      height: 1px;
      background-color: #e5e5e5;
      margin: 2rem 0;
    }
  
    /* Header */
        header {
            background: #ffffff;
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e5e5;
        }

nav {
    display: flex;
    justify-content: space-between; /* Logo links, Icons rechts */
    align-items: center;
    width: 100%;
}


        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: #000;
        }


.nav-links {
    display: flex;
    gap: 4rem;
    position: relative;
    left: 14.5%;
    transform: translateX(-50%);
    list-style: none;
}



       .nav-links a {
            color: #666;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #000;
        }


  
    /* Header Icons (Login & Warenkorb) */
        .header-icons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
  .login-icon {
    width: 24px;
    height: 24px;
    fill: #000; /* Stelle sicher, dass es sichtbar ist */
}

        .login-btn {
            background: transparent;
            border: none;
            cursor: pointer;
        }
  
    .login-btn:hover {
      fill: #333;
    }
  
        .cart-btn {
            background: #000;
            color: #fff;
            padding: 0.75rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            position: relative;
            width: 48px;
            height: 48px;
        }
  
    .cart-btn:hover {
      background: #333;
    }
  
    .cart-icon {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }
  
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
}
  
    /* Hero Section */
    .hero {
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 0 4rem;
    }
  
    .hero-content {
      max-width: 600px;
    }
  
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #000;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
  
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      color: #666;
      font-weight: 400;
    }
  
    /* Featured Products */
    .featured {
      padding: 5rem 0;
      background: #fafafa;
    }
  
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 3rem;
      color: #000;
      letter-spacing: -0.02em;
    }
  
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
  
    .product-card {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: all 0.2s ease;
      border: 1px solid #e5e5e5;
      text-decoration: none; /* Entfernt die Unterstreichung */
      border: none; /* Entfernt den Rahmen */
    }
  
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      text-decoration: none; /* Entfernt die Unterstreichung */
      border: none; /* Entfernt den Rahmen */
    }
  
    .product-image {
      width: 100%;
      height: 200px;
      border-radius: 8px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 1rem;
      font-weight: 500;
    }
  
    .product-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #000;
    }
  
    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 1.5rem;
    }
  
    .product-btn {
      background: #000;
      color: #fff;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      width: 150px;
      font-size: 0.8rem;
      text-decoration: none; /* Entfernt die Unterstreichung */
    }
  
    .product-btn:hover {
      background: #333;
    }
  
    /* Brands */
    .brands {
      padding: 5rem 0;
      background: #fff;
    }
  
    .brands-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
    }
  
    .brand-section {
      text-align: center;
    }
  
    .brand-header {
      margin-bottom: 3rem;
    }
  
    .brand-header img {
      margin-bottom: 1rem;
    }
  
    .brand-header h3 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #000;
    }
  
    .brand-header p {
      color: #666;
      font-size: 1rem;
    }
  
    /* Grafikkarten in den Marken-Sektionen als 4 Spalten */
    .brand-products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }
  
    .brand-product {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: all 0.2s ease;
      border: 1px solid #e5e5e5;
      text-decoration: none;
      color: inherit;
      display: block;
    }
  
    .brand-product:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
  
    .brand-product-image {
      width: 100%;
      height: 200px;
      background: #f5f5f5;
      border-radius: 8px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 1rem;
      font-weight: 500;
    }
  
    .brand-product-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #000;
    }
  
    .brand-product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 1.5rem;
    }
  
    .brand-btn {
      background: #000;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 0.9rem;
    }
  
    .brand-btn:hover {
      background: #333;
    }
  
    /* Footer – überarbeitete Version */
    footer {
      background: linear-gradient(135deg, #1a1a1a, #000);
      color: #fff;
      padding: 4rem 0 2rem;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
      padding: 0 20px;
    }
    .footer-section {
      padding: 1rem;
    }
    .footer-section h3 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 2px solid #333;
      padding-bottom: 0.5rem;
    }
    .footer-section a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 0.75rem;
      transition: color 0.2s ease, padding-left 0.2s ease;
      font-size: 0.95rem;
    }
    .footer-section a:hover {
      color: #fff;
      padding-left: 5px;
    }
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9rem;
      padding: 0 20px;
    }
  
    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
  
      .hero h1 {
        font-size: 2.5rem;
      }
  
      .hero p {
        font-size: 1.1rem;
      }
  
      .section-title {
        font-size: 2rem;
      }
  
      .product-grid {
        grid-template-columns: 1fr;
      }
  
      /* Auf kleineren Geräten werden die Marken-Produkte in einer Spalte dargestellt */
      .brand-products {
        grid-template-columns: 1fr;
      }
    }