.is-layout-flex.is-flex-start {
  align-items: flex-start;
}

.product-archive {
  .product-area {
    position: relative;
    display: block;

    [class^="rank-"] {
      position: absolute;
      top: 0;
      left: 0;
      width: 30px;
      height: 30px;
      color: white;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .rank-1 {
      background-color: #EEB10B;
    }
    .rank-2 {
      background-color: #ACB5D3;
    }
    .rank-3 {
      background-color: #DD7A30;
    }

    .is-new {
      position: absolute;
      margin: 0;
      top: 10px;
      right: 10px;
      width: 47px;
      height: 47px;
      border-radius: 50%;
      background-color: #E97171;
      color: white;
      font-size: 15px;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .title {
      position: absolute;
      width: 100%;;
      bottom: 0;
      left: 0;
      background-color: black;

      h5 {
        width: 350px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: white;
      }
    }
  }

  &.pickup {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    row-gap: 20px;

    img {
      width: 300px;
    }
  }
}

#collection-area {
  margin-top: 0;
}