/* Pozycjonowanie „prawy górny róg” – użyj w Elementorze, albo usuń jeśli sam ustawiasz */
.icvc-search--topright {
  margin-left: auto;
  max-width: 360px;
}

/* Wrapper */
.icvc-search {
  position: relative;
  width: 100%;
}

/* Input */
.icvc-search__input {
  width: 100%;
  height: 42px;
  padding: 8px 14px;
  border: 1px solid #d7e3dc;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.icvc-search__input:focus {
  border-color: #9bd0b6;
  box-shadow: 0 0 0 4px rgba(155,208,182,.15);
}

/* Dropdown */
.icvc-search__dropdown {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #e5efe9;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  z-index: 9999;
  max-height: 380px;
  overflow: auto;
}

/* Lista wyników */
.icvc-search__list {
  list-style: none;
  margin: 6px 0;
  padding: 0;
}
.icvc-search__item {
  padding: 10px 14px;
  cursor: pointer;
  display: grid;
  gap: 4px;
  border-bottom: 1px dashed #eef4f1;
}
.icvc-search__item:last-child { border-bottom: none; }

.icvc-search__title {
  font-weight: 600;
  color: #174a3a;
  font-size: 15px;
  line-height: 1.2;
}
.icvc-search__meta {
  font-size: 12px;
  color: #5a7a6e;
}
.icvc-search__excerpt {
  font-size: 13px;
  color: #38423f;
}

/* Hover/active */
.icvc-search__item:hover,
.icvc-search__item[aria-selected="true"] {
  background: #f4fbf7;
}

/* „Pokaż wszystkie” */
.icvc-search__more {
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
  color: #2a5f4c;
  cursor: pointer;
}
.icvc-search__empty {
  padding: 12px 14px;
  font-size: 13px;
  color: #6b7c76;
}
