/*Пошук*/
.search-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#searchInput {
  width: 0;
  opacity: 0;
  transition: 0.3s ease;
  padding: 6px 12px;
  border: 1px solid #6ab04c;
  border-radius: 20px;
  position: absolute;
  right: 10px;
  top: 20px;
  transform: translateY(-50%);
  z-index: 10;
  background: #000;
}

.search-wrapper:hover #searchInput,
#searchInput:focus {
  width: 250px;
  opacity: 1;
}

.search-icon {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.search-results {
  position: absolute;
  top: 120%;
  right: 0;
  width: 300px;
  background: #000000;
  border: 1px solid #6ab04c;
  border-radius: 10px;
  display: none;
  z-index: 20;
  box-shadow: 0 4px 8px rgba(0,0,0,0.9);
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background: #f9f9f9;
}

.result-thumb {
  width: 50px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
}

.result-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 60px);
}

.result-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.result-title .result-year {
  color: #fbdb94;
  font-weight: normal;
}

.result-meta {
  font-size: 12px;
  color: #c9c9c9;
  margin-bottom: 2px;
}

.result-rating {
  font-size: 12px;
  color: #975555;
}

/* Мобільна адаптація */
@media (max-width: 300px) {
  .search-wrapper:hover #searchInput,
  #searchInput:focus {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }

  .search-results {
    width: 90%;
    left: 0;
    right: 0;
  }

  .result-title {
    font-size: 13px;
  }

  .result-meta, .result-rating {
    font-size: 11px;
  }

  .result-thumb {
    width: 40px;
    height: 60px;
  }
}
/*Пошук*/