body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 10px 20px;
  position: relative;
}

/* Categories Section */
.search-categories {
  display: flex;
  align-items: center;
}

/* Categories Dropdown */
.search-categories button {
  background-color: #f7c02e;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.search-categories .dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #363636;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.search-categories .dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.search-categories .dropdown-content a:hover {
  background-color: #949090;
}

.search-categories:hover .dropdown-content {
  display: block;
}

/* Search Bar */
.search-bar {
  flex-grow: 1;
  /* Take up available space */
  display: flex;
  justify-content: center;
}

.search-bar input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 250px;
}

.search-bar button {
  background-color: #f0d908;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  margin-left: 5px;
}

.search-promotion {
  display: flex;
  justify-content: flex-end;
}

.search-promotion .promo-btn {
  background-color: #f7c02e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.search-promotion .promo-btn:hover {
  transform: scale(1.1);
}

.search-promotion .promo-btn .promo-text {
  font-weight: bold;
  font-size: 18px;
}

.search-promotion .promo-btn .promo-offer {
  font-size: 14px;
  color: rgb(238, 7, 7);
}