    
    .navbar {
      display: flex;
      width: 100%;
      align-items: center;
      gap: 5px;
      flex-wrap: wrap;
      justify-content: center;
      background-color:  rgba(0, 0, 0, 0.7);
      padding: 15px 24px;
      position: fixed;
      top: 0;
      z-index: 1001;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo img {
      height: 36px;
    }

    .search-box input {
      padding: 6px 10px;
      border-radius: 10px;
      border: none;
      font-size: 0.9rem;
      width: 400px;
    }

    .navbar-center {
      display: flex;
      gap: 20px;
    }

    .navbar-center a {
      color: #fff;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .navbar-center a:hover {
      background-color: #333;
    }

    .navbar-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cart-icon {
      color: #fff;
      font-size: 1.2rem;
    }


    .cart-wrapper {
      position: relative;
      display: inline-block;
    }

    .cart-count {
      position: absolute;
      top: -6px;
      right: -10px;
      background-color: #e63946;
      color: #fff;
      font-size: 0.7rem;
      padding: 2px 6px;
      border-radius: 12px;
      font-weight: bold;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    }


    .menu-toggle {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      display: none;
    }

    @media (max-width: 768px) {
      .search-box input {
        width: 100%;
        font: 0.7em sans-serif;
        padding: 5px 10px;
      }
      .navbar {
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 5px;
      }

      .navbar-center {
        display: none;
        flex-direction: column;
        padding-top: 10px;
      }

      .navbar-center.active {
        display: flex;
      }

      .menu-toggle {
        display: inline-block;
      }

      .logo img {
        height: 20px;

      }

      .navbar-left {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;

      }
      .navbar-right {
        float: right;
        margin-left: auto;
        justify-self: left;
      }
    }