/* LIST */
.search-page .search-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

/* ITEM */
.search-page .search-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
  padding: 16px;
  cursor: pointer;
}

.search-page .search-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: #f9faf9;
}

/* IMAGE */
.search-page .search-thumb {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
}

.search-page .search-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.search-page .thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.search-page .thumb-placeholder img {
  width: 120px;
  opacity: 0.85;
}

/* CONTENT */
.search-page .search-content {
  flex: 1;
}

.search-page .search-content h3 {
  margin: 6px 0;
  font-size: 18px;
  font-weight: 600;
}

/* META */
.search-page .meta {
  font-size: 12px;
  color: #777;
}

/* EMPTY */
.search-page .empty-state {
  text-align: center;
  padding: 40px;
}

/* SMALL TEXT */
.search-page .small {
  font-size: 13px;
  color: #777;
  font-weight: 500;
  margin-top: 10px;
}

.search-page .badge {
  background: #e6f2ea;
  color: #2f5d3f;
  font-weight: 600;
}

.search-page .filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  margin-top: -30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.search-page .filter-bar input,
.search-page .filter-bar select {
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.search-page .filter-bar button {
  background: #3f5f3a;
  color: #fff;
  border: none;
  padding: 0 16px;
  height: 38px;
  border-radius: 8px;
}

.search-page .search-hero {
  padding: 120px 0 60px;
  background: linear-gradient(
      to bottom,
      rgba(20, 35, 25, 0.85),
      rgba(20, 35, 25, 0.6)
    ),
    url("/assets/images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.search-page .search-hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.search-page .search-hero p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.search-page .search-hero .search-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.search-page .search-hero .search-box input {
  flex: 1;
  padding: 12px;
  border: none;
}

.search-page .search-hero .search-box button {
  background: #3f5f3a;
  color: #fff;
  border: none;
  padding: 0 20px;
}
