 /* Wireframe SIMPLE - exatamente specs originais */
.product-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 24px;
  padding: 0 16px;
  margin: 0 auto 32px;
  max-width: 600px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.hamburger-menu {
  border: none;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  background: none;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.search-wrapper {
  position: relative;
  flex: 1;
}

.search-input {
  width: 100%;
  height: 36px;
  border: 1px solid black;
  border-radius: 999px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
  background: white;
  outline: none;
}

.search-magnifier, .search-filter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.search-magnifier {
  left: 12px;
}

.search-filter {
  right: 12px;
}

.search-filter:hover {
  color: black;
}
