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

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

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

.vcp__item {
  list-style: none;
}

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

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

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

.vcp__card:hover .vcp__img,
.vcp__card:hover .vcp__media img {
  transform: scale(1.03);
}

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

.vcp__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;
}

.vcp__wish[aria-pressed="true"] svg {
  fill: #333333;
  stroke: #333333;
}

.vcp__info {
  padding-top: 2px;
}

.vcp__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;
}

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

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

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

.vcp__empty {
  padding: 80px 0;
  text-align: center;
}

.vcp__empty-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--vierlot-text, #333333);
  margin-bottom: 12px;
}

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

.vcp a.vcp__empty-btn,
.vcp__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;
}

.vcp a.vcp__empty-btn:hover {
  opacity: 0.8;
}

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

@media (max-width: 768px) {
  .vcp {
    padding: 16px 0 60px;
  }
  .vcp__container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .vcp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .vcp__wish {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .vcp__title {
    font-size: 13px;
  }
}
