.banner-promo-title {
  display: none;
}

.title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0063a7;
}

.title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  z-index: -1;
  width: 100%;
  height: 0.25em;
  border-radius: 4em;
  background-color: rgba(234, 120, 23, 0.6);
}

/* override */
.banner-promo,
.banner-prod {
  margin-top: 0;
}

.card-description > :not(:first-child) {
  margin-bottom: 0;
}

.prodList .item .prod-Price .dollorPrice-regular::after {
  display: none;
}

/* 折扣碼點擊複製 */
.promo-code {
  cursor: pointer;
  text-decoration: underline dotted;
}

.app-toast {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.app-toast.is-visible {
  opacity: 1;
}

.app-toast__text {
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  animation: toastPop 0.2s ease;
}

@keyframes toastPop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anchor-target {
  scroll-margin-top: var(--sticky-offset, 72px);
}
