.vs {
  background: var(--vierlot-bg, #F5F2ED);
  padding: 60px 0 80px;
}

.vs__container {
  padding-left: 20px;
  padding-right: 20px;
}

.vs__form {
  margin: 0 auto 36px;
  max-width: 640px;
}

.vs__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #333333;
  background: transparent;
}

.vs__field-icon {
  color: #333333;
  flex-shrink: 0;
}

.vs__input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #333333;
  min-height: 24px;
}

.vs__input::placeholder {
  color: var(--vierlot-text-muted, #999999);
}

.vs__meta {
  font-size: 13px;
  color: var(--vierlot-text-light, #666666);
  margin-bottom: 28px;
}

.vs__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}

.vs__item {
  list-style: none;
}

.vs__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vs__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ECE7DE;
  overflow: hidden;
  margin-bottom: 14px;
}

.vs__img,
.vs__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vs__card:hover .vs__img,
.vs__card:hover .vs__media img {
  transform: scale(1.03);
}

.vs__img-placeholder {
  width: 100%;
  height: 100%;
  background: #E5E0D8;
}

.vs__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(245, 242, 237, 0.85);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  cursor: pointer;
  padding: 0;
}

.vs__wish[aria-pressed="true"] svg {
  fill: var(--vierlot-heart-active, #8C2F39);
  stroke: var(--vierlot-heart-active, #8C2F39);
}

.vs__info {
  padding-top: 2px;
}

.vs__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text, #333333);
  margin-bottom: 6px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.8em;
}

.vs__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--vierlot-text, #333333);
  margin-bottom: 4px;
}

.vs__meta-row {
  font-size: 12px;
  color: var(--vierlot-text-muted, #999999);
}

.vs__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.vs__empty,
.vs__placeholder {
  padding: 80px 0;
  text-align: center;
}

.vs__empty-title,
.vs__placeholder-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--vierlot-text, #333333);
  margin: 0 0 10px;
}

.vs__empty-desc,
.vs__placeholder-desc {
  font-size: 14px;
  color: var(--vierlot-text-light, #666666);
  margin: 0 0 28px;
}

.vs a.vs__empty-btn,
.vs__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border: 1px solid #333333;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.vs a.vs__empty-btn:hover {
  opacity: 0.8;
}

.vs__chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vs a.vs__chip,
.vs__chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 18px;
  border: 1px solid var(--vierlot-line, #E5E0D8);
  color: #333333;
  font-size: 13px;
  text-decoration: none;
}

.vs a.vs__chip:hover {
  opacity: 0.8;
  border-color: #333333;
}

@media (max-width: 1024px) {
  .vs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }
}

@media (max-width: 768px) {
  .vs {
    padding: 40px 0 60px;
  }
  .vs__container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .vs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .vs__wish {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .vs__title {
    font-size: 13px;
  }
}
