/* 搜索页：关键词标题 + 相关说明 + 商品网格 */
.h5-page-search {
  background: transparent;
  min-height: 100vh;
}

.h5-search-main {
  max-width: 1108px;
  margin: 0 auto;
  padding: 20px 12px 88px;
  position: relative;
  z-index: 1;
}

/* 主体毛玻璃容器 */
.h5-search-main {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.h5-search-keyword {
  margin: 8px 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #0f1111;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .h5-search-keyword {
    font-size: 26px;
  }
}

.h5-search-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #909399;
  text-align: left;
}

.h5-search-sub .kw {
  color: var(--color-primary);
  font-weight: 500;
}

/* 每行固定 4 个商品 */
.h5-search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 8px;
}

@media (min-width: 768px) {
  .h5-search-grid {
    gap: 20px 16px;
  }
}

@media (max-width: 480px) {
  .h5-search-card-body {
    padding: 8px 4px 10px;
  }

  .h5-search-card-title {
    font-size: 11px;
    min-height: auto;
    -webkit-line-clamp: 3;
  }

  .h5-search-card-price {
    font-size: 13px;
  }

  .h5-search-card-price .sym {
    font-size: 11px;
  }
}

.h5-search-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s, transform 0.2s;
}

.h5-search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.h5-search-card:hover {
  box-shadow: 0 4px 16px rgba(21, 40, 68, 0.08);
}

a.h5-search-card-img {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.h5-search-card-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fc;
}

.h5-search-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.h5-search-card-body {
  padding: 10px 6px 12px;
  text-align: left;
}

.h5-search-card-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 400;
  color: #0f1111;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.h5-search-card-price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f1111;
}

.h5-search-card-price .sym {
  font-size: 13px;
  font-weight: 600;
  margin-right: 2px;
}

/* 顶栏：用户轮廓图标（与登录按钮二选一） */
.h5-header-user {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

.h5-header-user:hover {
  color: var(--color-primary);
}
