.you-watched-card {
  position: relative;
  width: 100%;
  height: 114px;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 12px 16px;
  gap: 20px;
  transition: all .3s ease;
  border: 1px solid #DEDFE8;
  border-radius: 8px;
  background-color: #fff;
  grid-template-columns: 88px 1fr; }
  @media (min-width: 1100px) {
    .you-watched-card {
      cursor: pointer; }
      .you-watched-card:hover {
        box-shadow: 6px 8px 10px 0px rgba(48, 64, 113, 0.15); } }
  @media (max-width: 1249px) {
    .you-watched-card {
      padding: 10px 14px;
      gap: 16px;
      grid-template-columns: 76px 1fr; } }
  @media (max-width: 1099px) {
    .you-watched-card {
      height: 80px;
      padding: 8px 12px;
      grid-template-columns: 64px 1fr; } }
  .you-watched-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; }
  .you-watched-card__left .lazy-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1; }
    .you-watched-card__left .lazy-img-wrap img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover; }
  .you-watched-card__right {
    display: flex;
    align-items: center; }
  .you-watched-card.empty {
    width: 100%;
    pointer-events: none;
    background-color: #F0F2F6; }

div.you-watched-card.empty {
  height: auto; }

.product-slider-skeleton__list {
  max-width: 100%;
  display: flex;
  overflow: hidden; }

.you-watched-card-skeleton {
  width: calc(100% / 5 - (var(--margin-right) * 4 / 5));
  overflow: hidden;
  flex: 0 0 auto;
  margin-right: 12px;
  --margin-right: 12px;
  padding: 0px 0px;
  pointer-events: none; }
  @media (max-width: 1559px) {
    .you-watched-card-skeleton {
      width: calc(100% / 4 - (var(--margin-right) * 3 / 4)); } }
  @media (max-width: 1099px) {
    .you-watched-card-skeleton {
      width: 266px; } }
  @media (max-width: 575px) {
    .you-watched-card-skeleton {
      width: 46%; } }
  .you-watched-card-skeleton .you-watched-card__left,
  .you-watched-card-skeleton .you-watched-card__right {
    background: #F0F2F6; }
