.shop-section-container {
  padding: 120px 0 140px;
  background: #f7f7f7;
}
.shop-section-wrapper {
  width: 1260px;
  max-width: 100%;
  padding: 0 80px;
  margin: auto;
}
.shop-section-container .shop-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
}

.shop-section-container .text-section {
  width: 45%;
}

.shop-section-container .image-section {
  /* flex: 1; */
  width: 48%;
  height: 370px;
}
.shop-section-container .image-section img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.shop-section-container .shop-wrapper .helper-text {
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 2em;
}
.shop-section-container .shop-wrapper .title {
  font-size: 20px;
  letter-spacing: 0.15em;
  line-height: 1.8em;
}

.shop-section-container .list-wrapper {
  margin-top: 20px;
}

.shop-section-container .list-wrapper .list {
  display: flex;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.8em;
  padding: 12px 0;
  border-bottom: 1px solid gray;
}
.shop-section-container .list-wrapper .list:first-child {
  border-top: 1px solid gray;
}
.shop-section-container .list-wrapper .list-title {
  width: 130px;
}

@media screen and (max-width: 960px) {
  .shop-section-wrapper {
    padding: 0 40px;
  }
  .shop-section-container .shop-wrapper {
    gap: 60px;
    flex-direction: column-reverse;
  }
  .shop-section-container .image-section {
    width: 100%;
    height: 370px;
  }

  .shop-section-container .text-section {
    width: 100%;
    padding: 0 16px;
  }
}

@media screen and (max-width: 540px) {
  .shop-section-container {
    padding: 60px 0 80px;
  }

  .shop-section-wrapper {
    padding: 0 20px;
  }

  .shop-section-container .image-section {
    width: 100%;
    height: 250px;
  }
  .shop-section-container .text-section {
    width: 98%;
    padding: 0;
  }
  .shop-section-container .list-wrapper .list {
    flex-direction: column;
  }
  .shop-section-container .shop-wrapper {
    gap: 40px;
  }
}
