  body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
    }
    .navbar {
      display: flex;
      align-items: center;
      background-color: #111;
      padding: 0.6rem 1.2rem;
    }

    .navbar img {
      height: 40px;
    }

    .navbar nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }
	
    /* Košík v navbaru */
    .cart-link {
      position: relative;
      color: white;
      font-size: 1.4rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .cart-count {
      position: absolute;
      top: -6px;
      right: -10px;
      background: #e63946;
      color: white;
      font-size: 0.75rem;
      font-weight: bold;
      padding: 0 6px;
      border-radius: 12px;
      line-height: 1.2;
      user-select: none;
      min-width: 18px;
      text-align: center;
    }

    .navbar nav a:hover {
      color: #ccc;
    }
	
    /* Scroll Bar Pro Chrome */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #111;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #666;
      border-radius: 4px;
      border: 2px solid #111;
    }

    ::-webkit-scrollbar-thumb:hover {
      background-color: #888;
    }

    /* Scroll Bar Pro Firefox */
    * {
      scrollbar-width: thin;
      scrollbar-color: #666 #111;
    }