.preview {
  overflow: hidden;
}

.sticker-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px;
  background: linear-gradient(145deg, #f4f0ff, #fff7f5);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.sticker-wall figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #25212e;
  box-shadow: 0 10px 24px rgba(24, 16, 48, .13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sticker-wall figure:hover {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 18px 34px rgba(24, 16, 48, .22);
  z-index: 2;
}

.sticker-wall img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
}

.sticker-wall figcaption {
  position: absolute;
  left: 9px;
  bottom: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(20, 16, 30, .82);
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.gallery-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(255, 255, 255, .94));
  border-radius: 0 0 30px 30px;
}

.gallery-summary {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: -48px auto 0;
  padding: 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(47, 24, 99, .16);
}

.gallery-summary strong,
.gallery-summary span {
  display: block;
}

.gallery-summary strong {
  font-size: 1.15rem;
}

.gallery-summary span {
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: .92rem;
}

.gallery-summary .button {
  width: auto;
  min-width: 230px;
}

.conversion-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.conversion-strip article {
  min-height: 188px;
}

.conversion-strip .sales-card {
  color: #fff;
  background: linear-gradient(145deg, var(--violet), #8b55f0);
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(108, 57, 232, .22);
}

.conversion-strip .sales-card span,
.conversion-strip .sales-card p {
  color: rgba(255, 255, 255, .82);
}

.samples .sample-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.samples .sample-grid figure {
  transition: transform .22s ease, box-shadow .22s ease;
}

.samples .sample-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(47, 24, 99, .14);
}

@media (max-width: 900px) {
  .sticker-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .conversion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-strip .sales-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .sticker-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-left: -8px;
    margin-right: -8px;
    padding: 10px;
    border-radius: 22px;
  }

  .sticker-wall figure,
  .sticker-wall img {
    border-radius: 12px;
  }

  .gallery-summary {
    margin-top: -34px;
    padding: 22px 16px;
  }

  .gallery-summary .button {
    width: 100%;
  }

  .conversion-strip {
    grid-template-columns: 1fr;
  }

  .conversion-strip .sales-card {
    grid-column: auto;
  }
}
