.activity {
  display: grid;
  gap: 14px;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.activity-row b,
.activity-row small {
  display: block;
}

.scroll-list {
  max-height: 520px;
  overflow: auto;
}

.pack-count-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #6a5d35;
  border-radius: 50%;
  font-weight: 800;

  @media (max-width: 720px) {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
  }
}

.packaging-art,
.packaging-art svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pack-shelf {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(290px, 0.9fr);
  align-items: center;
  gap: clamp(18px, 3vw, 46px);

  @media (max-width: 720px) {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.pack-finish {
  position: relative;
  min-width: 0;
  height: 590px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 26px;
  color: var(--ink);
  background: transparent;

  @media (max-width: 720px) {
    height: 370px;
    padding: 2px;
  }
}

.pack-finish:hover,
.pack-finish:focus-visible,
.pack-finish.selected {
  border-color: #75683d;
  background: radial-gradient(circle, rgb(244 189 63 / 10%), transparent 68%);
}

.pack-finish .packaging-art {
  height: 540px;
  filter: drop-shadow(0 30px 28px #000c);

  @media (max-width: 720px) {
    height: 350px;
  }
}

.pack-finish > span {
  position: absolute;
  bottom: 13px;
  left: 50%;
  padding: 7px 13px;
  border: 1px solid #605b42;
  border-radius: 100px;
  background: #11140f;
  transform: translateX(-50%);
}

.pack-order h2 {
  margin: 8px 0 12px;
  font: 800 clamp(34px, 4vw, 54px) / 0.98 "Gillius ADF", serif;

  @media (max-width: 720px) {
    font-size: 38px;
  }
}

.pack-order p {
  color: var(--muted);
  line-height: 1.55;
}

.animation-choice {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0;
}

.recent-pack {
  margin-top: 22px;
}

.recent-pack-cards {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 2px;
}

.recent-pack-cards > div {
  min-width: 70px;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

