#shop-list_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  padding: 16px;
  padding-top: 4px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, var(--main-color) 24%, white 8%);
  color: var(--black);
  height: 80vh;
  width: 340px;
  overflow-y: auto;
  font-size: 1.6rem;
  z-index: 8;
}

.button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 32px;
  left: 96%;
  width: 30px;
  height: 30px;
  position: sticky;
}

.close-shop-list_button {
  background: none;
  border: none;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.close-shop-list_button:hover {
  transform: rotate(90deg);
}

.shop-list-title {
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  font-size: 1.6em;
  background-color: #fff;
  padding: 8px;
}

.shop-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  padding: 4px;
  margin-bottom: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;

  &:hover {
    background-color: var(--main-color);
    transition: all 300ms;
  }
}

.shop-item-icon {
  font-size: 4rem;
  margin-right: 16px;
  width: 60px;
  text-align: center;
}

.shop-item-price {
  font-size: 2.4rem;
  color: var(--orange);
  text-shadow: -1px 1px 0px black;
}

.shop-item-fuel {
  margin-left: auto;
  font-size: 1.6rem;
  color: var(--secound-color);
}
