 /* Main Header */
    .ecomheader {
      background: linear-gradient(to right, #000, #444);
      color: white;
      display: flex;
      justify-content: center;
      padding: 10px 0;
    }

    .ecomheader nav {
      display: flex;
      gap: 30px;
    }

    .ecomheader a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .ecomheader a:hover {
      color: #ddd;
    }

    /* Sub-Menu (hidden by default) */
    .sub-menu {
      display: none;
      background-color: #2c2c2c;
      padding: 10px 0;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .sub-item {
      color: #ccc;
      text-align: center;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .sub-item:hover {
      color: white;
    }

    .sub-item i {
      display: block;
      font-size: 20px;
      margin-bottom: 5px;
    }

    /* Search Bar */
    .search-row {
      background-color: #1f1f1f;
      padding: 15px;
      display: flex;
      justify-content: center;
    }

     .search-box {
  width: 60%;
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  background-color: transparent; /* Make background transparent */
  border: 1px solid #ccc; /* Optional: adds border for visibility */
  backdrop-filter: blur(4px); /* Optional: glassy blur effect */
}

    .search-box input {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  background-color: transparent; /* Make input transparent */
  color: white; /* Set text color to contrast background */
}

    .search-box button {
  background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent black */
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

   .search-box button:hover {
  background-color: rgba(51, 51, 51, 0.8);
}


