.recently-viewed {
  margin: 40px 0 0;
  min-width: 0;
}


.recently-viewed__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}

.recently-viewed__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.recently-viewed__controls {
  display: none;
  flex: 0 0 auto;
  gap: 8px;
}

.recently-viewed__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid #d8dce5;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.recently-viewed__arrow:disabled {
  cursor: default;
  opacity: .35;
}

.recently-viewed__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.recently-viewed__card {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 calc((100% - 64px) / 5);
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  border: 1px solid #e6e8ed;
  border-radius: 4px;
  background: #fff;
}

.recently-viewed__image-link {
  display: flex;
  height: 180px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.recently-viewed__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.recently-viewed__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #f5f6f8;
}

.recently-viewed__name {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.9em;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.recently-viewed__name:hover { color: #d9232e; }

.recently-viewed__prices {
  margin-top: auto;
  padding-top: 13px;
}

.recently-viewed__regular-price {
  color: #252a34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.recently-viewed__tradein-price {
  display: inline-block;
  margin-top: 5px;
  border-bottom: 1px dotted currentColor;
  color: #e31e24;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  cursor: help;
}

@media (max-width: 767px) {
  .recently-viewed { margin-top: 28px; }

  .recently-viewed__heading { margin-bottom: 14px; }
  .recently-viewed__title { font-size: 22px; }
  .recently-viewed__controls { display: flex; }
  .recently-viewed__track {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .recently-viewed__track::-webkit-scrollbar { display: none; }
  .recently-viewed__card {
    flex: 0 0 calc(84% - 8px);
    scroll-snap-align: start;
  }
  .recently-viewed__image-link { height: 160px; }
}
