.header-index {
  display: flex;
  height: 100vh;
  left: 0;
  mix-blend-mode: normal;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
  /* opacity: 0.8; */
}

.nuxt-icon svg {
  height: 1em;
  margin-bottom: 0.125em;
  vertical-align: middle;
  width: 1em;
}

.nuxt-icon.nuxt-icon--fill,
.nuxt-icon.nuxt-icon--fill * {
  fill: currentColor !important;
}
.nuxt-icon.nuxt-icon--stroke,
.nuxt-icon.nuxt-icon--stroke * {
  stroke: currentColor !important;
}

@media (max-width: 1099.98px) {
  .header-index.-menu {
    mix-blend-mode: normal;
  }

  .header-index.-menu > span {
    background-color: transparent;
    color: #ece7e8;
    mix-blend-mode: normal;
  }

  .header-index.-menu > span:after {
    display: none;
  }
}

.header-index__logo {
  height: 4rem;
  width: 4rem;
  left: 50%;
  pointer-events: auto;
  position: fixed;
  top: 1.6rem;
  transform: translate(-50%) scale(1);
  transition: transform 1.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.move-up {
  transform: translate(-50%) scale(0);
}

.header-index__logo img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1099.98px) {
  .header-index__logo {
    height: auto;
    top: 1.4rem;
    width: 2.4rem;
  }
}

.header-index__button {
  pointer-events: auto;
  position: absolute;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  top: 2rem;
  right: 2rem;
}

.header-index__button.purchase {
  display: flex !important;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 40px;
  pointer-events: auto;
  position: absolute;
  text-decoration: none;
  top: 2rem;
  right: 2rem;
  z-index: 101;
}

.d-mobile-none {
  display: inline !important;
}

@media (max-width: 1099.98px) {
  /* 手機版隱藏「專人諮詢」部分 */
  .d-mobile-none {
    display: none !important;
  }

  .header-index__button.purchase {
    top: 1.6rem !important;
    right: 1.2rem !important;
    font-size: 0.9rem;
  }
}

/* 漢堡排樣式 */
.header-index__burger {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  pointer-events: auto !important;
  z-index: 9999;
  background: transparent;
}

.header-index__burger span {
  pointer-events: none;
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

/* 側邊選單主體 */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: fit-content;
  height: 100vh;
  background-color: #1f0802a1;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  padding-right: 3rem;
  z-index: 9998;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.side-menu.-active {
  left: 0;
  transform: translateX(0%);
}

.side-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.side-menu__link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

@media (max-width: 1099.98px) {
  .side-menu {
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    text-align: center;
  }
}

/* 漢堡排變成 X 的動畫 (選填) */
/* 漢堡排動畫 */
.header-index__burger.-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-index__burger.-active span:nth-child(2) {
  opacity: 0;
}
.header-index__burger.-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* RWD 調整 */
@media (max-width: 1099.98px) {
  .header-index__burger {
    top: 1.6rem !important;
    left: 2rem !important;
  }
}

@media (max-width: 1099.98px) {
  .header-index__button.-hide {
    display: none;
  }
}

.header-index__button > span:not(.d-mobile-none) {
  align-items: center;
  display: flex;
  height: 0.7rem;
  justify-content: center;
  position: relative;
  width: 0.7rem;
}

.header-index__button > span:not(.d-mobile-none):after {
  background-color: #fff;
  content: "";
  height: 0.1rem;
  position: absolute;
  width: 100%;
}

.header-index__button > span:not(.d-mobile-none):before {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  width: 0.1rem;
}

.header-index__button:first-child {
  left: 2rem;
  top: 2rem;
}

@media (max-width: 1099.98px) {
  .header-index__button:first-child {
    left: 2rem;
    top: 1.6rem;
  }
}

.header-index__button:nth-child(2) {
  right: 2rem;
  top: 2rem;
  text-align: right !important;
}

@media (max-width: 1099.98px) {
  .header-index__button:nth-child(2) {
    display: none;
  }
}

.header-index__button:nth-child(3) {
  bottom: 2rem;
  left: 2rem;
}

@media (max-width: 1099.98px) {
  .header-index__button:nth-child(3) {
    display: none;
  }
}

.header-index__button:nth-child(4) {
  bottom: 2rem;
  right: 2rem;
}

@media (max-width: 1099.98px) {
  .header-index__button:nth-child(4) {
    bottom: auto;
    right: 2rem;
    top: 1.6rem;
  }

  .-menu .header-index__button:nth-child(4) {
    display: none;
  }
}

.footer {
  align-items: center;
  background-color: #5e1511;
  bottom: 0;
  color: #0e0608;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 4.5rem;
  position: fixed;
  transition: opacity 0s ease-in-out 0.2s;
  width: 100vw;
  z-index: -1;
}

.is-loading .footer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s ease-in-out;
}

@media (max-width: 1099.98px) {
  .footer {
    justify-content: center;
  }
}

.footer__logo {
  align-items: center;
  color: #ece7e8;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin-bottom: 5rem;
  width: calc(33.33333% + 2.13333rem);
}

@media screen and (max-width: 1200px) {
  .footer__logo {
    width: calc(33.33333vw - 0.53333rem);
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: calc(33.33333vw + 0.8rem);
  }
}

@media (max-width: 1099.98px) {
  .footer__logo {
    height: auto;
    margin-bottom: 2.4rem;
    width: 71vw;
  }
}

.footer__logo > span,
.footer__logo > span > svg {
  height: auto;
  width: 100%;
}

.footer__soical {
  align-items: center;
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  margin-bottom: 14.78rem;
}

@media (max-width: 1099.98px) {
  .footer__soical {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 0;
  }
}

.footer__soical-item {
  align-items: center;
  display: flex;
  gap: 2.2rem;
  justify-content: center;
}

@media (max-width: 1099.98px) {
  .footer__soical-item {
    gap: 0.8rem;
  }
}

.footer__soical-item > a {
  color: #ece7e8;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 1099.98px) {
  .footer__soical-item > a {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
  }
}

.footer__soical-item > svg {
  height: auto;
  width: 1.2rem;
}

.footer__soical-item:not(:last-child) > svg:last-child {
  display: none;
}

@media (max-width: 1099.98px) {
  .footer__soical-item:not(:last-child) > svg:last-child {
    display: block;
  }

  .footer__soical-item > svg:first-child {
    transform: rotate(180deg);
  }
}

.footer__copyright {
  align-items: center;
  color: #ad7472;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 400;
  gap: 1.6rem;
  justify-content: center;
  line-height: 1.6;
}

@media (max-width: 1099.98px) {
  .footer__copyright {
    bottom: 3.5rem;
    font-size: 1.2rem;
    font-weight: 400;
    gap: 1.2rem;
    line-height: 1.45;
    line-height: 1;
    position: absolute;
  }
}

.dev__wrap {
  display: none;
  flex-direction: column;
  height: 100vh;
  left: 50%;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate(-50%);
  width: 100vw;
  z-index: 999;
}

.dev__wrap.-active {
  display: flex;
}

.dev__wrap .grid > div {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  height: 100vh;
  width: 100%;
}

.dev__switch {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #000;
  border-radius: 50px;
  bottom: 10px;
  box-shadow: 2px 2px 8px #00000080;
  color: #fffc;
  display: flex;
  gap: 1rem;
  height: 30px;
  left: 10px;
  padding: 5px 15px;
  position: fixed;
  z-index: 999;
}

.dev__switch,
.dev__switch > span {
  font-size: 0.7em;
}

.dev__switch > i {
  border-left: 1px solid hsla(0, 0%, 53%, 0.4);
  height: 10px;
  width: 1px;
}

.dev__switch > button {
  opacity: 0.5;
}

.dev__switch > button.-active {
  opacity: 1;
}

#es-app {
  background-color: #ece7e8;
  height: auto;
  padding-bottom: 100vh;
  width: 100vw;
}

#es-app:has(main.-gallery) {
  padding-bottom: 0;
}

#es-app:has(main.-error) {
  padding-bottom: 0;
}

main {
  position: relative;
  z-index: 2;
}

/* main h1 {
    opacity: 0;
    pointer-events: none;
    position: absolute
} */

.active-color-line {
  color: #2d2b2a !important;
}

.active-color-burger {
  background-color: #2d2b2a !important;
}