.text-section {
  margin-bottom: 20px;
  position: relative;
}

.text {
  position: relative;
  background-color: white;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  padding-bottom: 10px;
}

.fade-out {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(180deg, transparent 0, rgb(255, 255, 255) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  opacity: 1;
}

.text-section.show-more .fade-out {
  opacity: 0;

  background: linear-gradient(180deg, transparent 0, rgb(255, 255, 255) 100%);
}

.text-section p a {
  text-decoration: underline;
}

.more-text {
  /* opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-top: 10px; */
  display: block;
  /* 初始設置為顯示，因為JavaScript會控制顯示/隱藏 */
  max-height: 0;
  /* 初始高度為0，讓內容收合 */
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  padding-top: 10px;
}

.text-section.show-more .more-text {
  max-height: 1000px;
  /* 設置一個足夠高的值來展開所有內容 */
  opacity: 1;
}

.text-section.show-more .text {
  max-height: 100%;
}

.toggle-btn {
  display: flex;
  font-size: 16px;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  color: #222;
  opacity: 0.7;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 15px auto;
}

.toggle-btn:hover {
  opacity: 1;
}

.toggle-btn::after {
  content: '';
  width: 0;
  height: 0;
  border: solid #666;
  border-width: 0px 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.toggle-btn.show-more::after {
  margin-top: 5px;
  transform: rotate(-135deg);
}

.store p {
  font-size: 16px;
  font-weight: 350;
  line-height: 28.8px;
  color: #222;
}

.store h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 28.8px;
  margin: 0;
  padding: 0;
}

.store h3.store-title {
  font-size: 20px;
  margin-bottom: 1rem;
  text-align: center;
}

.pro img {
  width: 100%;
  border-radius: 5px;
}

.pro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
}

.font-weight700 {
  font-weight: 700 !important;
}

.flexItem img {
  border-radius: 5px;
}
