:root{
  --ae-bg:#f1f1f1;
  --ae-surface:rgba(241,241,241,.96);
  --ae-ink:#151515;
  --ae-muted:#696969;
  --ae-line:rgba(21,21,21,.14);
  --ae-line-soft:rgba(21,21,21,.08);
  --ae-panel:#f7f7f7;
}

html,body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  background:var(--ae-bg);
}

body{
  color:var(--ae-ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.72), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.44), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.22), transparent 42%, rgba(255,255,255,.22));
  opacity:.68;
}

.ae-mobile-header,
.ae-mobile-header *,
.ae-mobile-drawer,
.ae-mobile-drawer *,
.ae-footer,
.ae-footer *,
.ae-site-footer,
.ae-site-footer *{
  box-sizing:border-box;
}

.ae-mobile-header{
  position:sticky!important;
  top:0!important;
  z-index:9300!important;
  width:100%!important;
  min-height:64px!important;
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr) auto!important;
  align-items:center!important;
  gap:28px!important;
  padding:0 clamp(28px,4vw,56px)!important;
  background:var(--ae-surface)!important;
  border:0!important;
  border-bottom:1px solid var(--ae-line)!important;
  box-shadow:none!important;
  backdrop-filter:blur(16px)!important;
  -webkit-backdrop-filter:blur(16px)!important;
}

.ae-mobile-header:empty{
  visibility:hidden!important;
}

body:not(.ae-chrome-ready) .ae-mobile-header{
  visibility:hidden!important;
}

body:not(.ae-chrome-ready) .ae-mobile-header > *{
  opacity:0!important;
  pointer-events:none!important;
}

.ae-brand-lockup,
.ae-brand{
  min-width:0;
  display:inline-flex!important;
  align-items:center!important;
  gap:12px!important;
  color:var(--ae-ink)!important;
  text-decoration:none!important;
}

.ae-brand-mark{
  width:28px!important;
  height:28px!important;
  display:block!important;
  object-fit:contain!important;
  flex:0 0 auto!important;
}

.ae-brand-wordmark{
  display:block!important;
  font-family:"Noto Serif TC",serif!important;
  font-size:14px!important;
  line-height:1!important;
  font-weight:500!important;
  letter-spacing:.22em!important;
  white-space:nowrap!important;
}

.ae-nav{
  position:static!important;
  inset:auto!important;
  width:auto!important;
  height:auto!important;
  min-height:0!important;
  padding:0!important;
  margin:0!important;
  display:flex!important;
  justify-content:flex-end!important;
  align-items:center!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  transform:none!important;
  opacity:1!important;
  pointer-events:auto!important;
}

.ae-main-nav{
  list-style:none!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:clamp(18px,2.5vw,36px)!important;
  margin:0!important;
  padding:0!important;
}

.ae-nav-item{
  position:relative!important;
  list-style:none!important;
  margin:0!important;
  padding:0!important;
}

.ae-nav-link,
.ae-main-nav>a,
.ae-nav-drop>summary{
  min-height:64px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:5px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--ae-ink)!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  font-size:14px!important;
  line-height:1!important;
  font-weight:400!important;
  letter-spacing:.025em!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  cursor:pointer!important;
}

.ae-nav-link::after,
.ae-main-nav>a::after,
.ae-nav-drop>summary::after{
  content:none!important;
  display:none!important;
}

.ae-nav-link.is-active,
.ae-main-nav>a.is-active,
.ae-nav-item:hover>.ae-nav-link,
.ae-nav-item:focus-within>.ae-nav-link,
.ae-nav-drop[open]>summary{
  font-weight:400!important;
}

.ae-nav-link.is-active::after,
.ae-main-nav>a.is-active::after,
.ae-nav-item:hover>.ae-nav-link::after,
.ae-nav-item:focus-within>.ae-nav-link::after{
  content:none!important;
  display:none!important;
}

.ae-nav-caret{
  font-size:9px!important;
  line-height:1!important;
  color:var(--ae-muted)!important;
  transform:translateY(1px);
}

.ae-nav-panel{
  position:absolute!important;
  top:calc(100% + 1px)!important;
  left:50%!important;
  min-width:210px!important;
  padding:10px 0!important;
  background:rgba(247,247,247,.98)!important;
  border:1px solid var(--ae-line)!important;
  box-shadow:0 18px 38px rgba(0,0,0,.08)!important;
  transform:translateX(-50%) translateY(8px)!important;
  opacity:0!important;
  pointer-events:none!important;
  transition:opacity .16s ease,transform .16s ease!important;
}

.ae-nav-item:hover>.ae-nav-panel,
.ae-nav-item:focus-within>.ae-nav-panel{
  opacity:1!important;
  pointer-events:auto!important;
  transform:translateX(-50%) translateY(0)!important;
}

.ae-nav-panel a{
  display:block!important;
  padding:11px 18px!important;
  color:var(--ae-ink)!important;
  text-decoration:none!important;
  font-size:13px!important;
  font-weight:400!important;
  letter-spacing:.03em!important;
  white-space:nowrap!important;
}

.ae-nav-panel a:hover,
.ae-nav-panel a:focus{
  background:rgba(0,0,0,.04)!important;
}

.ae-header-actions{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:16px!important;
}

.ae-cart-link,
.ae-cart-button,
.ae-mobile-cart{
  position:relative!important;
  width:34px!important;
  height:34px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  color:var(--ae-ink)!important;
  background:transparent!important;
  border:0!important;
  text-decoration:none!important;
}

.ae-cart-link svg,
.ae-cart-button svg,
.ae-mobile-cart svg{
  width:22px!important;
  height:22px!important;
  display:block!important;
}

.ae-cart-count{
  position:absolute!important;
  top:2px!important;
  bottom:auto!important;
  right:-4px!important;
  min-width:16px!important;
  height:16px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0 4px!important;
  border-radius:999px!important;
  background:var(--ae-ink)!important;
  color:#fff!important;
  font-size:9px!important;
  line-height:1!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  pointer-events:none!important;
}

.ae-cart-count[hidden],
.ae-cart-count:empty,
.ae-cart-count[data-count="0"]{
  display:none!important;
}

.ae-menu-button,
.ae-nav-toggle{
  width:42px!important;
  height:42px!important;
  display:none!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  color:var(--ae-ink)!important;
  cursor:pointer!important;
}

.ae-menu-button span,
.ae-nav-toggle span{
  width:28px!important;
  height:1.5px!important;
  display:block!important;
  background:var(--ae-ink)!important;
  box-shadow:0 -9px 0 var(--ae-ink),0 9px 0 var(--ae-ink)!important;
}

.ae-chrome-backdrop{
  position:fixed!important;
  inset:0!important;
  z-index:9400!important;
  background:rgba(0,0,0,.20)!important;
  backdrop-filter:blur(5px)!important;
  -webkit-backdrop-filter:blur(5px)!important;
}

.ae-chrome-backdrop[hidden]{
  display:none!important;
}

.ae-mobile-drawer{
  position:fixed!important;
  top:0!important;
  right:0!important;
  bottom:0!important;
  z-index:9500!important;
  width:min(78vw,360px)!important;
  display:flex!important;
  flex-direction:column!important;
  padding:28px 26px!important;
  background:var(--ae-surface)!important;
  border-left:1px solid var(--ae-line)!important;
  box-shadow:-18px 0 42px rgba(0,0,0,.10)!important;
  transform:translateX(104%)!important;
  transition:transform .22s ease!important;
  overflow-y:auto!important;
  visibility:hidden!important;
}

.ae-mobile-drawer.is-open{
  transform:translateX(0)!important;
  visibility:visible!important;
}

.ae-drawer-head{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:16px!important;
  margin-bottom:28px!important;
}

.ae-drawer-close{
  width:36px!important;
  height:36px!important;
  border:0!important;
  background:transparent!important;
  color:var(--ae-ink)!important;
  font-size:28px!important;
  line-height:1!important;
  cursor:pointer!important;
}

.ae-drawer-nav{
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
}

.ae-mobile-drawer>a,
.ae-mobile-drawer details>summary,
.ae-drawer-nav a,
.ae-drawer-nav summary{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  min-height:48px!important;
  padding:0!important;
  border-bottom:1px solid var(--ae-line)!important;
  color:var(--ae-ink)!important;
  background:transparent!important;
  text-decoration:none!important;
  font-size:17px!important;
  font-weight:400!important;
  letter-spacing:.02em!important;
  list-style:none!important;
}

.ae-mobile-drawer summary::-webkit-details-marker,
.ae-drawer-nav summary::-webkit-details-marker{
  display:none!important;
}

.ae-drawer-sub,
.ae-drawer-subnav{
  display:flex!important;
  flex-direction:column!important;
  padding:8px 0 12px 16px!important;
}

.ae-drawer-sub a,
.ae-drawer-subnav a{
  min-height:38px!important;
  border-bottom:0!important;
  color:var(--ae-muted)!important;
  font-size:14px!important;
  font-weight:400!important;
}

.ae-footer,
.ae-site-footer{
  width:100%!important;
  margin:72px auto 0!important;
  padding:52px clamp(24px,5vw,72px)!important;
  background:#151515!important;
  color:#f7f7f7!important;
  text-align:center!important;
}

.ae-footer a,
.ae-site-footer a{
  color:#f7f7f7!important;
  text-decoration:none!important;
}

.ae-footer a:hover,
.ae-site-footer a:hover{
  text-decoration:underline!important;
  text-underline-offset:5px!important;
}

.ae-footer-inner,
.ae-site-footer__inner{
  max-width:920px!important;
  margin:0 auto!important;
}

.ae-footer .ae-brand-lockup,
.ae-footer .ae-brand,
.ae-site-footer__brand{
  display:inline-flex!important;
  align-items:center!important;
  gap:12px!important;
  justify-content:center!important;
  color:#fff!important;
}

.ae-site-footer__brand img{
  width:28px!important;
  height:28px!important;
  object-fit:contain!important;
  filter:invert(1) grayscale(1) brightness(1.9)!important;
  opacity:.94!important;
}

.ae-footer .ae-brand-wordmark,
.ae-site-footer__brand span{
  font-family:"Noto Serif TC",serif!important;
  font-size:14px!important;
  line-height:1!important;
  font-weight:500!important;
  letter-spacing:.22em!important;
  color:#fff!important;
}

.ae-footer-tagline,
.ae-site-footer__copy{
  margin:24px auto 0!important;
  max-width:680px!important;
  font-family:"Noto Serif TC",serif!important;
  font-size:20px!important;
  line-height:1.8!important;
  letter-spacing:.03em!important;
}

.ae-footer-contact,
.ae-site-footer__official{
  margin:22px auto 0!important;
  max-width:760px!important;
  color:rgba(255,255,255,.72)!important;
  font-size:14px!important;
  line-height:1.9!important;
}

.ae-footer-links,
.ae-site-footer__links{
  margin:28px auto 0!important;
  display:flex!important;
  flex-wrap:wrap!important;
  justify-content:center!important;
  gap:14px 26px!important;
  font-size:14px!important;
}

.ae-footer-legal,
.ae-site-footer__legal{
  margin-top:24px!important;
  color:rgba(255,255,255,.58)!important;
  font-size:13px!important;
  line-height:1.8!important;
}

.svc-category-jump{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:32px auto 0;
  max-width:920px;
}

.svc-category-jump a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 18px;
  border:1px solid var(--ae-line);
  color:var(--ae-ink);
  background:rgba(255,255,255,.32);
  text-decoration:none;
  font-size:14px;
  font-weight:300;
  letter-spacing:.03em;
}

.svc-category-jump a:hover,
.svc-category-jump a:focus{
  background:#151515;
  color:#fff;
}

@media (min-width:901px){
  .ae-mobile-drawer,
  .ae-menu-button,
  .ae-nav-toggle{
    display:none!important;
  }
}

@media (max-width:900px){
  .ae-mobile-header{
    grid-template-columns:minmax(0,1fr) auto!important;
    min-height:72px!important;
    padding:0 18px!important;
    gap:12px!important;
  }

  .ae-brand-lockup,
  .ae-brand{
    gap:10px!important;
  }

  .ae-brand-mark{
    width:30px!important;
    height:30px!important;
  }

  .ae-brand-wordmark{
    font-size:16px!important;
    letter-spacing:.18em!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  .ae-nav{
    display:none!important;
  }

  .ae-header-actions{
    gap:10px!important;
  }

  .ae-menu-button,
  .ae-nav-toggle{
    display:inline-flex!important;
  }

  .ae-mobile-drawer{
    width:min(84vw,370px)!important;
  }

  .ae-footer{
    margin-top:56px!important;
    padding:44px 22px 52px!important;
  }

  .ae-footer-tagline{
    font-size:18px!important;
  }
}

@media (max-width:480px){
  .ae-mobile-header{
    padding:0 14px!important;
  }

  .ae-brand-wordmark{
    font-size:15px!important;
    letter-spacing:.14em!important;
  }

  .ae-cart-link,
  .ae-cart-button,
  .ae-mobile-cart{
    width:32px!important;
    height:32px!important;
  }

  .ae-menu-button,
  .ae-nav-toggle{
    width:38px!important;
    height:38px!important;
  }

  .ae-menu-button span,
  .ae-nav-toggle span{
    width:26px!important;
  }

  .ae-mobile-drawer{
    width:86vw!important;
    padding:24px 22px!important;
  }
}






/* Final chrome guard: keeps navigation consistent even on pages with older inline styles. */
.ae-nav-link,
.ae-main-nav>a,
.ae-nav-drop>summary{
  font-weight:400!important;
}
.ae-nav-link.is-active,
.ae-main-nav>a.is-active,
.ae-nav-item:hover>.ae-nav-link,
.ae-nav-item:focus-within>.ae-nav-link,
.ae-nav-drop[open]>summary{
  font-weight:400!important;
}
body.ae-menu-open .ae-mobile-drawer,
.ae-mobile-drawer.is-open{
  transform:translateX(0)!important;
  visibility:visible!important;
  opacity:1!important;
  pointer-events:auto!important;
}
body.ae-menu-open .ae-chrome-backdrop:not([hidden]){
  display:block!important;
}
.ae-mobile-drawer>a,
.ae-mobile-drawer details>summary,
.ae-drawer-nav a,
.ae-drawer-nav summary{
  font-weight:400!important;
}
/* Navigation hard guard 2026-08-11: override old inline navigation rules. */
.ae-mobile-header .ae-nav a,
.ae-mobile-header .ae-nav-link,
.ae-mobile-header .ae-main-nav > a,
.ae-mobile-header .ae-nav-drop > summary{
  font-weight:400!important;
  letter-spacing:.025em!important;
}
.ae-mobile-header .ae-nav a.active,
.ae-mobile-header .ae-nav a.is-active,
.ae-mobile-header .ae-nav-link.is-active,
.ae-mobile-header .ae-main-nav > a.is-active,
.ae-mobile-header .ae-nav-item:hover > .ae-nav-link,
.ae-mobile-header .ae-nav-item:focus-within > .ae-nav-link,
.ae-mobile-header .ae-nav-drop[open] > summary{
  font-weight:400!important;
}
.ae-header-actions{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:18px!important;
}
.ae-cart-link{
  position:relative!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:30px!important;
  height:30px!important;
  color:#151515!important;
  line-height:1!important;
}
.ae-cart-link svg{
  width:22px!important;
  height:22px!important;
  display:block!important;
}
.ae-cart-count{
  position:absolute!important;
  top:2px!important;bottom:auto!important;right:-4px!important;
  min-width:15px!important;
  height:15px!important;
  padding:0 4px!important;
  border-radius:999px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#151515!important;
  color:#fff!important;
  font-size:10px!important;
  line-height:15px!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  font-weight:400!important;
  letter-spacing:0!important;
  pointer-events:none!important;
}
.ae-cart-count[hidden],
.ae-cart-count:empty,
.ae-cart-count[data-count="0"]{
  display:none!important;
}
body.ae-menu-open{
  overflow:hidden!important;
}
body.ae-menu-open .ae-mobile-drawer,
.ae-mobile-drawer.is-open{
  transform:translateX(0)!important;
  visibility:visible!important;
  opacity:1!important;
  pointer-events:auto!important;
  z-index:9401!important;
}
body.ae-menu-open .ae-chrome-backdrop:not([hidden]){
  display:block!important;
  position:fixed!important;
  inset:0!important;
  z-index:9400!important;
  background:rgba(21,21,21,.26)!important;
  backdrop-filter:none!important;
}
.ae-mobile-drawer > a,
.ae-mobile-drawer details > summary,
.ae-drawer-nav a,
.ae-drawer-nav summary{
  font-weight:400!important;
  letter-spacing:.03em!important;
}
@media (max-width:820px){
  .ae-mobile-header .ae-nav{display:none!important;}
  .ae-menu-button{display:inline-flex!important;}
}

/* Aetheria nav guard: avoid fragile underline offsets across generated navigation. */
.ae-nav-link,
.ae-main-nav > a,
.ae-nav-drop > summary{
  position:relative!important;
  font-weight:400!important;
  letter-spacing:.02em!important;
  border-bottom:0!important;
}
.ae-nav-link::after,
.ae-main-nav > a::after,
.ae-nav-drop > summary::after,
.ae-nav-link:hover::after,
.ae-nav-link:focus-visible::after,
.ae-nav-link.is-active::after,
.ae-main-nav > a:hover::after,
.ae-main-nav > a:focus-visible::after,
.ae-main-nav > a.active::after,
.ae-main-nav > a.is-active::after,
.ae-nav-drop:hover > summary::after,
.ae-nav-drop:focus-within > summary::after,
.ae-nav-drop[open] > summary::after{
  content:none!important;
  display:none!important;
}
/* Aetheria stability guard: keep shared navigation, titles, cart badge, and cards from page-level overrides. */
.ae-mobile-header,
.ae-mobile-header *{box-sizing:border-box!important;}
.ae-mobile-header{
  position:sticky!important;
  top:0!important;
  left:0!important;
  right:0!important;
  z-index:9300!important;
  width:100%!important;
  min-height:64px!important;
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr) auto!important;
  align-items:center!important;
  gap:clamp(22px,3vw,38px)!important;
  padding:0 clamp(28px,4vw,56px)!important;
  background:rgba(241,241,241,.98)!important;
  border:0!important;
  border-bottom:1px solid rgba(21,21,21,.12)!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.ae-brand-lockup,
.ae-brand,
.ae-mobile-brand{
  display:inline-flex!important;
  align-items:center!important;
  gap:12px!important;
  min-width:0!important;
  color:#151515!important;
  text-decoration:none!important;
}
.ae-brand-mark{width:28px!important;height:28px!important;object-fit:contain!important;flex:0 0 auto!important;}
.ae-brand-wordmark,
.ae-site-footer__brand span{
  font-family:"Noto Serif TC",serif!important;
  font-size:14px!important;
  line-height:1!important;
  font-weight:500!important;
  letter-spacing:.22em!important;
  white-space:nowrap!important;
  color:#151515!important;
}
.ae-site-footer__brand span{color:#fff!important;}
.ae-mobile-header .ae-nav{
  position:static!important;
  inset:auto!important;
  width:auto!important;
  height:auto!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  transform:none!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}
.ae-main-nav{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:clamp(18px,2.3vw,32px)!important;
  margin:0!important;
  padding:0!important;
  list-style:none!important;
}
.ae-nav-item{position:relative!important;margin:0!important;padding:0!important;list-style:none!important;}
.ae-nav-link,
.ae-main-nav>a,
.ae-nav-drop>summary,
.ae-mobile-header .ae-nav a,
.ae-mobile-header .ae-nav-link,
.ae-mobile-header .ae-main-nav>a,
.ae-mobile-header .ae-nav-drop>summary{
  min-height:64px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:5px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:#151515!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  font-size:14px!important;
  font-weight:400!important;
  line-height:1!important;
  letter-spacing:.025em!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}
.ae-nav-link.is-active,
.ae-main-nav>a.is-active,
.ae-main-nav>a.active,
.ae-nav-item:hover>.ae-nav-link,
.ae-nav-item:focus-within>.ae-nav-link,
.ae-nav-drop[open]>summary,
.ae-mobile-header .ae-nav a.active,
.ae-mobile-header .ae-nav a.is-active,
.ae-mobile-header .ae-nav-link.is-active{
  font-weight:400!important;
  border:0!important;
}
.ae-nav-link::after,
.ae-main-nav>a::after,
.ae-nav-drop>summary::after,
.ae-nav-link:hover::after,
.ae-nav-link:focus-visible::after,
.ae-nav-link.is-active::after,
.ae-main-nav>a:hover::after,
.ae-main-nav>a:focus-visible::after,
.ae-main-nav>a.active::after,
.ae-main-nav>a.is-active::after,
.ae-nav-drop:hover>summary::after,
.ae-nav-drop:focus-within>summary::after,
.ae-nav-drop[open]>summary::after{
  content:none!important;
  display:none!important;
}
.ae-nav-caret{font-size:9px!important;line-height:1!important;color:#777!important;transform:translateY(1px)!important;}
.ae-nav-panel{
  position:absolute!important;
  top:calc(100% + 1px)!important;
  left:50%!important;
  min-width:210px!important;
  padding:10px 0!important;
  background:rgba(247,247,247,.98)!important;
  border:1px solid rgba(21,21,21,.12)!important;
  box-shadow:0 18px 38px rgba(0,0,0,.08)!important;
  transform:translateX(-50%) translateY(8px)!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
  transition:opacity .16s ease,transform .16s ease!important;
}
.ae-nav-item:hover>.ae-nav-panel,
.ae-nav-item:focus-within>.ae-nav-panel,
.ae-nav-drop[open]>.ae-nav-panel{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  transform:translateX(-50%) translateY(0)!important;
}
.ae-nav-panel a{
  min-height:42px!important;
  width:100%!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  padding:0 22px!important;
  color:#151515!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  font-size:14px!important;
  font-weight:400!important;
  letter-spacing:.03em!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}
.ae-header-actions{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:18px!important;}
.ae-cart-link,
.ae-mobile-cart,
.ae-cart-button{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;width:32px!important;height:32px!important;color:#151515!important;line-height:1!important;overflow:visible!important;}
.ae-cart-link svg,
.ae-mobile-cart svg,
.ae-cart-button svg{width:22px!important;height:22px!important;display:block!important;}
.ae-cart-count{
  position:absolute!important;
  top:1px!important;
  right:-5px!important;
  bottom:auto!important;
  left:auto!important;
  min-width:15px!important;
  height:15px!important;
  padding:0 4px!important;
  border-radius:999px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#151515!important;
  color:#fff!important;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
  font-size:10px!important;
  font-weight:400!important;
  line-height:15px!important;
  letter-spacing:0!important;
  pointer-events:none!important;
}
.ae-cart-count[hidden],.ae-cart-count:empty,.ae-cart-count[data-count="0"]{display:none!important;}
h1,.hero-title,.section-title,.dc-section-title,.store-title,.category-title,.page-title,
#productsTitle,#featuredTitle,#latestTitle,#bestsellerTitle{
  font-family:"Noto Serif TC",serif!important;
  font-weight:500!important;
  letter-spacing:0!important;
}
.store-card,.product-card,.home-product-card,.featured-product-card{display:flex!important;flex-direction:column!important;}
.store-card .product-purchase,.product-card .product-purchase,.home-product-card .product-purchase,.featured-product-card .product-purchase,
.store-card .product-meta-bottom,.product-card .product-meta-bottom,.home-product-card .product-meta-bottom,.featured-product-card .product-meta-bottom{margin-top:auto!important;}
@media (min-width:821px){
  .ae-menu-button{display:none!important;}
}
@media (max-width:820px){
  html,body{overflow-x:hidden!important;}
  .ae-mobile-header{
    min-height:76px!important;
    height:76px!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto auto!important;
    padding:0 18px!important;
    gap:14px!important;
  }
  .ae-brand-lockup,.ae-brand,.ae-mobile-brand{gap:10px!important;min-width:0!important;}
  .ae-brand-mark{width:32px!important;height:32px!important;}
  .ae-brand-wordmark{font-size:14px!important;font-weight:500!important;letter-spacing:.22em!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .ae-mobile-header .ae-nav{display:none!important;}
  .ae-menu-button{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    color:#151515!important;
  }
  .ae-mobile-drawer{
    position:fixed!important;
    top:76px!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    z-index:9401!important;
    width:min(76vw,330px)!important;
    height:calc(100dvh - 76px)!important;
    padding:22px 28px!important;
    background:rgba(241,241,241,.98)!important;
    border-left:1px solid rgba(21,21,21,.12)!important;
    transform:translateX(104%)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    overflow:auto!important;
    box-shadow:none!important;
  }
  body.ae-menu-open .ae-mobile-drawer,
  .ae-mobile-drawer.is-open{
    transform:translateX(0)!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }
  body.ae-menu-open .ae-chrome-backdrop:not([hidden]){
    display:block!important;
    position:fixed!important;
    inset:76px 0 0 0!important;
    z-index:9400!important;
    background:rgba(21,21,21,.22)!important;
    backdrop-filter:none!important;
  }
  .ae-drawer-close{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    align-self:flex-end!important;
    margin:0 0 14px auto!important;
    width:40px!important;
    height:40px!important;
    border:0!important;
    background:transparent!important;
    color:#151515!important;
    font-size:28px!important;
    font-weight:300!important;
    line-height:1!important;
  }
  .ae-mobile-drawer>a,
  .ae-mobile-drawer details>summary,
  .ae-drawer-nav a,
  .ae-drawer-nav summary{
    width:100%!important;
    min-height:46px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    padding:0!important;
    border-bottom:1px solid rgba(21,21,21,.12)!important;
    color:#151515!important;
    font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif!important;
    font-size:16px!important;
    font-weight:400!important;
    letter-spacing:.03em!important;
    text-decoration:none!important;
  }
  h1,.hero-title,.page-title{font-size:clamp(34px,10vw,56px)!important;line-height:1.16!important;}
}
/* End Aetheria stability guard */

/* Final mobile brand fit and drawer cleanup. Keep this at the end so older page rules cannot crop the logo text. */
@media (max-width:820px){
  .ae-mobile-header{
    min-height:68px!important;
    height:68px!important;
    grid-template-columns:minmax(0,1fr) auto auto!important;
    padding:0 14px!important;
    gap:10px!important;
  }
  .ae-brand-lockup,
  .ae-brand,
  .ae-mobile-brand{
    min-width:0!important;
    max-width:calc(100vw - 124px)!important;
    gap:8px!important;
    overflow:hidden!important;
  }
  .ae-brand-mark{
    width:28px!important;
    height:28px!important;
  }
  .ae-brand-wordmark{
    min-width:0!important;
    max-width:100%!important;
    overflow:hidden!important;
    text-overflow:clip!important;
    white-space:nowrap!important;
    font-size:12px!important;
    font-weight:400!important;
    letter-spacing:.14em!important;
    line-height:1!important;
  }
  .ae-header-actions{
    flex:0 0 auto!important;
    gap:8px!important;
  }
  .ae-cart-link,
  .ae-mobile-cart,
  .ae-cart-button,
  .ae-menu-button,
  .ae-nav-toggle{
    width:38px!important;
    height:38px!important;
  }
  .ae-mobile-drawer{
    top:68px!important;
    height:calc(100dvh - 68px)!important;
  }
  body.ae-menu-open .ae-chrome-backdrop:not([hidden]){
    inset:68px 0 0 0!important;
  }
}

@media (max-width:380px){
  .ae-mobile-header{
    padding:0 12px!important;
    gap:8px!important;
  }
  .ae-brand-lockup,
  .ae-brand,
  .ae-mobile-brand{
    max-width:calc(100vw - 112px)!important;
    gap:7px!important;
  }
  .ae-brand-mark{
    width:26px!important;
    height:26px!important;
  }
  .ae-brand-wordmark{
    font-size:11px!important;
    letter-spacing:.11em!important;
  }
  .ae-cart-link,
  .ae-mobile-cart,
  .ae-cart-button,
  .ae-menu-button,
  .ae-nav-toggle{
    width:36px!important;
    height:36px!important;
  }
}
