/* Wrapper */
.made-search-wrap { width: 100%; position: relative; }

/* Bar */
.made-search-bar {
  display: flex;
  align-items: center; 
  gap: 12px; 
}
.made-search-icon {
  width: 20px; height: 20px; display: inline-block;
  border: 1px solid #000; border-radius: 50%;
  position: relative; margin-left: 4px;
}
.made-search-icon::after {
  content: ''; position: absolute; right: -7px; bottom: -3px;
  width: 12px; height: 1px; background: #000; transform: rotate(45deg);
}
.made-search-input { flex: 1; border: none; outline: none; font-size: 16px;}
input[type=text].made-search-input { border: none;}
.made-search-input::placeholder { color: #7f7f7f; }
.made-search-btn {
	position: relative;
	padding: 10px 30px;
    width: 14.5%;
    text-transform: uppercase;
    margin-left: auto;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(.215, .61, .355, 1);
}
.made-search-btn:after {
    content: "›";
    position: absolute;
    top: 48%;
    right: 5%;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    transform: translateY(-50%);
}
.made-search-btn:hover {
	padding: 10px 84px;
}

/* Dropdown */
.made-search-dropdown {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid #e5e5e5; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 8px; display: none; z-index: 50;
}
.made-search-dropdown.visible { display: block; }

.made-group-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: #666; margin: 8px 8px 6px;
}
.made-result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px; text-decoration: none; color: inherit;
}
.made-result-item:hover, .made-result-item.active {
  background: #f5f5f5;
}
.made-item-title { font-weight: 600; }
.made-item-type { font-size: 12px; color: #777; }
.made-result-empty { padding: 12px; color: #777; }