/* Wishavi — мокапы на «стеклянных» плашках в шагах (Как это работает) */
.wp {
  padding: 16px 18px;
  font-family: "Inter Tight", sans-serif;
  color: #fff;
}

/* ── Шаг 1: магазины ── */
.wp1__row { display: flex; align-items: center; gap: 10px; }
.wp1__tile {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.wp1__tile img { width: 26px; height: 26px; object-fit: contain; }
.wp1__more {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.wp1__label { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.9); }

/* ── Шаг 2: карточка профиля ── */
.wp2 { display: flex; align-items: center; gap: 12px; }
.wp2__av {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.wp2__meta { flex: 1; min-width: 0; }
.wp2__name {
  font-size: 15px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wp2__handle { font-size: 12px; color: rgba(255, 255, 255, 0.75); }
.wp2__share {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.wp2__share svg { width: 18px; height: 18px; color: #fff; }

/* ── Шаг 3: уведомление о подарке ── */
.wp3 { display: flex; align-items: center; gap: 12px; }
.wp3__ic {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  display: flex; align-items: center; justify-content: center;
}
.wp3__ic svg { width: 24px; height: 24px; color: #6a4dff; }
.wp3__text { flex: 1; min-width: 0; }
.wp3__title { font-size: 12px; color: rgba(255, 255, 255, 0.78); }
.wp3__sub {
  font-size: 14px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wp3__amt { font-size: 14px; font-weight: 700; color: #d6ff8c; white-space: nowrap; flex-shrink: 0; }
