/* «Что мы продаём» */
.sell {
  position: relative;
  width: 375px;
  height: 549px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.sell__title {
  position: absolute;
  top: 60px;
  left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: 35px;
}

.sell__title-icon {
  display: block;
  flex-shrink: 0;
}

.sell__title-text {
  width: 245px;
  height: 35px;
  margin: 0;
  padding: 0;
  color: #333333;
  font-family: "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  line-height: 35px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sell__items {
  position: absolute;
  top: 135px;
  left: 0;
  width: 375px;
  height: 120px;
  overflow: hidden;
  user-select: none;
}

.sell__items--dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.sell__items::-webkit-scrollbar {
  display: none;
}

.sell__items-track {
  display: flex;
  gap: 20px;
  width: max-content;
  height: 120px;
}

.sell__items-spacer {
  flex-shrink: 0;
  width: 20px;
  height: 120px;
}

.sell__items-track--marquee {
  animation: sell-marquee linear infinite;
  will-change: transform;
}

@keyframes sell-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sell__item {
  display: block;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.sell__item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.sell__items--row2 {
  top: 275px;
  left: 0;
  width: 375px;
  height: 120px;
}

.sell__items-track--row2 {
  width: max-content;
  margin-left: -50px;
}

.sell__cta {
  position: absolute;
  top: 435px;
  left: 20px;
  right: 20px;
  width: 335px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 100px;
  background:
    linear-gradient(#2fb000, #2fb000) padding-box,
    linear-gradient(180deg, #3dd804 0%, #1f8a00 100%) border-box;
  cursor: pointer;
}

.sell__cta-text {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}
