:root {
  --black: #000;
  --ink: #000;
  --paper: #fff;
  --bone: #fff;
  --muted: #000;
  --line: rgba(0, 0, 0, .16);
  --font-body: Noah, "Noah", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  --font-header: Optima, "Optima Nova", "Segoe UI", Arial, sans-serif;
  --header-transition: .32s cubic-bezier(.22, .61, .36, 1);
}

body,
body *:not(.lux-header):not(.lux-header *) {
  font-family: var(--font-body) !important;
}

body.has-transparent-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 19;
  height: 85px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--header-transition);
}

body.has-transparent-header.header-scrolled::before {
  opacity: 0;
}

body.has-transparent-header::after {
  content: "";
  position: fixed;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 19;
  height: 85px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--header-transition);
}

body.has-transparent-header.header-scrolled::after {
  opacity: 1;
}

body.oiion-account-page {
  margin: 0;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
.icon-link,
.menu-button {
  transition: filter .18s ease, background-color var(--header-transition), color var(--header-transition), border-color var(--header-transition);
}

.click-invert {
  animation: clickColorReverse .84s ease;
}

.oiion-page-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .56s ease, visibility 0s linear .56s;
}

.oiion-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.oiion-page-loader-stage {
  width: min(68vw, 620px);
  aspect-ratio: 1519 / 286;
  min-height: 0;
  overflow: hidden;
}

.oiion-page-loader .logo-writing-animation {
  height: 100%;
  min-height: 0;
}

.oiion-page-loader svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .oiion-page-loader {
    display: none;
  }
}

@keyframes clickColorReverse {
  0%,
  100% {
    filter: none;
  }

  42% {
    filter: invert(1);
  }
}

.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
  height: 85px;
  min-height: 85px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  color: #fff;
  background: transparent;
  transition: color var(--header-transition), background-color var(--header-transition), border-color var(--header-transition), box-shadow var(--header-transition);
}

.lux-header,
.lux-header * {
  box-sizing: border-box;
  font-family: var(--font-body) !important;
}

.lux-header :is(.nav-text, .wordmark, .header-links, .icon-link, .menu-button, .menu-button span, .bag-link, .cart-count, .service-dropdown, .service-dropdown a) {
  transition: color var(--header-transition), border-color var(--header-transition), background-color var(--header-transition), box-shadow var(--header-transition), filter var(--header-transition);
}

.lux-header :is(svg, path, circle, line, polyline, rect) {
  transition: color var(--header-transition), stroke var(--header-transition), fill var(--header-transition), border-color var(--header-transition);
}

.lux-header.is-scrolled {
  color: var(--ink);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.wordmark {
  justify-self: center;
  color: inherit;
  font-family: var(--font-header) !important;
  text-transform: uppercase;
  letter-spacing: calc(.08em + 2px);
  font-size: clamp(17px, 3vw, 37px);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.nav-text,
.header-links a,
.menu-button {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-text {
  justify-self: start;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.header-links {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: -5px;
  font-size: 15px;
}

.icon-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-header svg.header-svg-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-header svg.header-svg-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: inherit;
}

.bag-link .bag-icon {
  width: 23px;
  height: 23px;
  stroke-width: 1.35;
  transform: translateY(0);
}

.lux-header .header-links .bag-link {
  transition: background-color var(--header-transition), border-color var(--header-transition), box-shadow var(--header-transition), filter var(--header-transition);
}

.bag-link .bag-icon,
.bag-link .bag-icon path {
  fill: none;
  stroke: currentColor;
  transition: none;
}

.bag-link.click-invert {
  animation: none;
  filter: none;
}

.lux-header svg.menu-svg-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 23px;
  stroke-width: 1.55;
}

.service-menu {
  position: static;
}

.service-dropdown {
  position: fixed;
  top: 83px;
  right: max(16px, calc((100vw - 1280px) / 2));
  z-index: 60;
  display: grid;
  width: 246px;
  padding: 8px 0;
  border: 0;
  background: #fff;
  color: #000;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

.service-menu.open .service-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-dropdown a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  padding: 0 12px;
  border-top: 0;
  color: #000;
  background: transparent;
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-dropdown a:hover {
  background: transparent;
  color: #000;
}

.oiion-search-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .1s;
}

.oiion-search-modal[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.oiion-search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .28);
  opacity: 0;
  backdrop-filter: blur(0);
  cursor: pointer;
  transition: opacity .1s ease, backdrop-filter .1s ease;
}

.oiion-search-modal[aria-hidden="false"] .oiion-search-backdrop {
  opacity: 1;
  backdrop-filter: blur(13px);
}

.oiion-search-panel {
  position: absolute;
  top: 33.333vh;
  left: 50%;
  width: min(620px, calc(100vw - 28px));
  padding: 18px 18px 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
  transform: translate(-50%, -45%) scale(.98);
  transition: transform .1s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.oiion-search-modal[aria-hidden="false"] .oiion-search-panel {
  transform: translate(-50%, -50%) scale(1);
}

.oiion-search-input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
}

.oiion-search-input::placeholder {
  color: #6c6c6c;
}

.oiion-search-suggestions {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.oiion-search-suggestions a {
  display: flex;
  align-items: center;
  min-height: 53px;
  padding: 0 12px;
  border-radius: 10px;
  color: #000;
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.oiion-search-suggestions a:hover {
  background: rgba(0, 0, 0, .045);
}

body.search-modal-open {
  overflow: hidden;
}

body.search-modal-open .lux-header,
body.search-modal-open .mega-menu,
body.search-modal-open .page,
body.search-modal-open .site-map-footer {
  filter: blur(8px);
  transition: filter .36s ease;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.lux-header .bag-link .cart-count {
  position: absolute;
  left: 50%;
  top: 62.8%;
  display: inline-grid;
  place-items: center;
  min-width: 11px;
  height: 11px;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-body) !important;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: none;
}

.lux-header .bag-link .cart-count[hidden] {
  display: none !important;
}

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 1600;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: #000;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .42s;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity .36s ease, backdrop-filter .36s ease;
}

.mega-menu.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.mega-menu.open::before {
  opacity: 1;
  backdrop-filter: blur(13px);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}

.mega-menu.open .menu-close {
  opacity: 1;
  pointer-events: auto;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mega-columns {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 30px;
  width: min(48vw, 560px);
  min-width: 420px;
  height: 100%;
  overflow-y: auto;
  padding: 74px 70px;
  background: #fff;
  box-shadow: -18px 0 60px rgba(0, 0, 0, .08);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.mega-menu.open .mega-columns {
  transform: translateX(0);
}

body.menu-drawer-open {
  overflow: hidden;
}

body.menu-drawer-open .lux-header,
body.menu-drawer-open .page,
body.menu-drawer-open .site-map-footer {
  filter: blur(8px);
  transition: filter .36s ease;
}

.mega-columns section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mega-columns h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-columns--oiion h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.mega-columns a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
}

.mega-columns--oiion a,
.mega-columns--oiion button {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mega-secondary-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.mega-columns--oiion .mega-secondary-links a {
  font-size: 20px;
}

.mega-account-links {
  margin-top: 12px;
}

.mega-account-links a,
.mega-account-links button {
  min-height: 28px;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.promo-banner {
  display: none !important;
}

.site-map-footer {
  padding: 86px clamp(32px, 5vw, 80px) 64px;
  background: #000;
  color: rgba(255, 255, 255, .78);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 72px);
  row-gap: 42px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-map-footer section {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-accordion h2 {
  margin-bottom: 0;
}

.footer-accordion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: default;
}

.footer-accordion-panel {
  display: grid;
  gap: 10px;
}

.footer-social-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-map-footer .footer-signup {
  grid-column: 1 / -1;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.site-map-footer .footer-signup h2 {
  margin-bottom: 8px;
  font-weight: 700;
}

.site-map-footer .footer-signup p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 30px;
}

.footer-signup-button {
  margin-top: 24px;
  min-width: 190px;
  min-height: 52px;
  justify-self: center !important;
  --button-rest-bg: #fff;
  --button-rest-border: #fff;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #000 !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

:where(.lux-button, .auth-button, .about-cta__button, .footer-signup-button, .newsletter-submit, .account-form .lux-button) {
  position: relative;
  z-index: 0;
  isolation: isolate;
  transform-origin: center;
  transition: color .24s ease, opacity .24s ease;
}

:where(.lux-button, .auth-button, .about-cta__button, .footer-signup-button, .newsletter-submit, .account-form .lux-button)::before {
  content: "";
  position: absolute;
  inset: -6px;
}

:where(.lux-button, .auth-button, .about-cta__button, .footer-signup-button, .newsletter-submit, .account-form .lux-button)::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid var(--button-rest-border, currentColor);
  background: var(--button-rest-bg, transparent);
  transform: translate(-50%, -50%);
  transition: transform .16s cubic-bezier(.55, 0, 1, .45) .05s, background-color .24s ease, border-color .24s ease;
  will-change: transform;
  pointer-events: none;
}

:where(.lux-button, .auth-button, .about-cta__button, .footer-signup-button, .newsletter-submit, .account-form .lux-button).is-hover-scale::after {
  transform: translate(-50%, -50%) scale(.96);
}

.password-inline-trigger.is-hover-scale {
  color: #000;
}

.password-inline-trigger.is-hover-scale::after {
  border-color: #000;
  background: #fff;
}

.site-map-footer h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-map-footer p,
.site-map-footer a,
.site-map-footer label,
.site-map-footer input,
.site-map-footer button,
.site-map-footer section > span,
.site-map-footer .footer-accordion-panel span {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.site-map-footer a {
  color: inherit;
  text-decoration: none;
}

.site-map-footer .footer-accordion:not(#region) .footer-accordion-panel :is(a, button, span):not([aria-label]) {
  position: relative;
  width: fit-content;
  padding-bottom: 7px;
}

.site-map-footer .footer-accordion:not(#region) .footer-accordion-panel :is(a, button, span):not([aria-label])::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform .25s ease-out;
}

.site-map-footer .footer-accordion:not(#region) .footer-accordion-panel :is(a, button, span):not([aria-label]):is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.site-map-footer .footer-accordion-panel button {
  border-bottom: 0;
}

.site-map-footer #region .footer-accordion-panel button {
  border-bottom: 1px solid currentColor;
}

.site-map-footer input {
  width: 50%;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  background: transparent;
  color: #fff;
  outline: 0;
}

.site-map-footer button {
  justify-self: start;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-map-footer .footer-accordion-toggle {
  justify-self: stretch;
  border: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: inherit;
  cursor: default;
}

.footer-note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  margin: 46px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 19px;
  text-align: left;
}

.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
}

.site-map-footer .footer-note,
.site-map-footer .footer-note * {
  font-size: 19px;
  line-height: 1.55;
}

.social-links {
  justify-items: start;
  text-align: left;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 1600;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .42s;
}

.contact-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .28);
  opacity: 0;
  backdrop-filter: blur(0);
  cursor: pointer;
  transition: opacity .36s ease, backdrop-filter .36s ease;
}

.contact-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(48vw, 560px);
  min-width: 420px;
  height: 100%;
  overflow-y: auto;
  padding: 74px 70px;
  background: #fff;
  color: #000;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .08);
}

body.contact-drawer-open {
  overflow: hidden;
}

body.contact-drawer-open .contact-drawer {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

body.contact-drawer-open .contact-drawer-backdrop {
  opacity: 1;
  backdrop-filter: blur(13px);
}

body.contact-drawer-open .contact-drawer-panel {
  transform: translateX(0);
}

body.contact-drawer-open .lux-header,
body.contact-drawer-open .mega-menu,
body.contact-drawer-open .page,
body.contact-drawer-open .site-map-footer {
  filter: blur(8px);
  transition: filter .36s ease;
}

.newsletter-drawer {
  position: fixed;
  inset: 0;
  z-index: 1600;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .42s;
}

.newsletter-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .28);
  opacity: 0;
  backdrop-filter: blur(0);
  cursor: pointer;
  transition: opacity .36s ease, backdrop-filter .36s ease;
}

.newsletter-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(48vw, 560px);
  min-width: 420px;
  height: 100%;
  overflow-y: auto;
  padding: 86px 70px;
  background: #fff;
  color: #000;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .08);
}

body.newsletter-drawer-open {
  overflow: hidden;
}

body.newsletter-drawer-open .newsletter-drawer {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

body.newsletter-drawer-open .newsletter-drawer-backdrop {
  opacity: 1;
  backdrop-filter: blur(13px);
}

body.newsletter-drawer-open .newsletter-drawer-panel {
  transform: translateX(0);
}

body.newsletter-drawer-open .lux-header,
body.newsletter-drawer-open .mega-menu,
body.newsletter-drawer-open .page,
body.newsletter-drawer-open .site-map-footer {
  filter: blur(8px);
  transition: filter .36s ease;
}

.newsletter-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.newsletter-drawer-close span::before,
.newsletter-drawer-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.newsletter-drawer-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.newsletter-drawer-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.newsletter-drawer-panel h2 {
  margin: 0 0 18px;
  color: #000;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.newsletter-drawer-lede {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.35;
}

.newsletter-drawer-policy {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.32;
}

.newsletter-drawer-policy a,
.newsletter-policy-more a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-policy-more {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.32;
}

.newsletter-policy-more[hidden] {
  display: none;
}

.newsletter-policy-more p {
  margin: 0;
}

.newsletter-read-more {
  display: inline-flex;
  margin: 0 0 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-size: 13px;
}

.newsletter-field {
  display: grid;
  gap: 14px;
  margin-bottom: 60px;
  color: #6b6b6b;
  font-size: 20px;
}

.newsletter-field input {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  outline: 0;
  background: transparent;
  color: #000;
  font: inherit;
}

.newsletter-field input::placeholder {
  color: #6b6b6b;
}

.newsletter-submit {
  min-width: 205px;
  min-height: 54px;
  --button-rest-bg: #000;
  --button-rest-border: #000;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.contact-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.contact-drawer-close span::before,
.contact-drawer-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.contact-drawer-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-drawer-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-drawer h2 {
  margin: 0 0 36px;
  font-family: var(--font-body);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: .08em;
}

.contact-drawer-list {
  display: grid;
  gap: 30px;
  margin-bottom: 34px;
}

.contact-drawer-list section {
  display: grid;
  gap: 10px;
}

.contact-drawer-list h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
}

.contact-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
  cursor: pointer;
}

.contact-link-label {
  border-bottom: 1px solid currentColor;
}

.contact-link-button .contact-dot {
  margin-bottom: 1px;
}

.contact-drawer-list p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.contact-dot {
  position: relative;
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  color: currentColor;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  flex-basis: 16px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
}

.contact-icon[icon="mdi:message-badge"] {
  flex-basis: 12.2px;
  width: 12.2px;
  height: 12.2px;
  font-size: 12.2px;
}

.contact-icon[icon="line-md:phone-loop"] {
  flex-basis: 15.2px;
  width: 15.2px;
  height: 15.2px;
  font-size: 15.2px;
}

.contact-dot.square {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.contact-dot.phone::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 0 0 0 6px;
  transform: rotate(-35deg);
}

.contact-dot.live {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-radius: 50%;
  background: #f3d63f;
}

.contact-dot.chat {
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.contact-dot.chat::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 4px;
  height: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(25deg);
}

.contact-drawer strong {
  display: block;
  margin: 0 0 28px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
}

.contact-drawer-cta {
  display: inline-flex;
  color: inherit;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.contact-whatsapp {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contact-whatsapp[hidden] {
  display: none;
}

.contact-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-back span {
  border-bottom: 0;
  font-size: 23px;
  line-height: 1;
}

.contact-whatsapp h2 {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: .04em;
}

.contact-whatsapp p {
  max-width: 390px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-qr-placeholder {
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: #fff;
}

.contact-whatsapp a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.account-page {
  min-height: calc(100vh - 72px);
  padding: 116px 5vw 96px;
  background: #fff;
}

.account-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.account-panel,
.account-aside {
  border: 1px solid var(--line);
  background: var(--bone);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
}

.account-panel {
  padding: clamp(32px, 6vw, 72px);
}

.account-shell--settings {
  grid-template-columns: minmax(0, 672px);
  justify-content: center;
}

.account-page--settings .account-panel {
  border: 0;
  padding-right: 0;
  padding-left: 0;
  box-shadow: none;
}

.account-heading-group {
  display: grid;
  justify-items: center;
  text-align: center;
}

.account-page--settings .account-panel h1 {
  position: relative;
  left: 50%;
  justify-self: start;
  width: max-content;
  max-width: 100vw;
  transform: translateX(-50%);
  font-size: clamp(27px, 4.2vw, 57px);
  white-space: nowrap;
}

.account-page--settings .account-form {
  max-width: none;
}

.account-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 400;
  line-height: .96;
}

.account-panel p,
.account-form label,
.account-form input,
.account-form select,
.account-form textarea,
.account-form button,
.account-aside,
.account-list {
  font-family: var(--font-body) !important;
}

.account-panel p {
  max-width: 640px;
  margin: 0;
  color: #000;
  line-height: 1.7;
}

.account-email-review {
  display: grid;
  width: min(100%, 520px);
  margin-top: 8px;
  margin-bottom: 24px;
  gap: 12px;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: center;
  text-transform: none;
}

.account-email-review input {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  outline: 0;
  text-align: center;
}

.kicker {
  margin: 0 0 18px !important;
  color: #000 !important;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.account-form {
  display: grid;
  gap: 18px;
  max-width: 520px;
  margin-top: 34px;
}

.account-form label {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-form input,
.account-form select,
.account-form textarea {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body) !important;
  font-size: 14px;
  letter-spacing: 0;
  outline: 0;
}

.account-form select,
.account-form select option,
.account-form select optgroup,
.address-filters select,
.address-filters select option {
  font-family: var(--font-body) !important;
}

.account-form button,
.account-form .lux-button {
  box-sizing: border-box;
  font-family: var(--font-body) !important;
}

.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
  border-color: #000;
}

.account-form input.is-invalid {
  border-color: #9b1c1c;
}

.custom-select {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  font-family: var(--font-body) !important;
  letter-spacing: 0;
  text-transform: none;
}

.custom-select-trigger {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
  text-transform: none;
}

.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: #000;
  outline: 0;
}

.custom-select.is-invalid .custom-select-trigger {
  border-color: #9b1c1c;
}

.custom-select-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.custom-select.open .custom-select-chevron {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 2200;
  display: none;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .08);
}

.custom-select.open .custom-select-menu {
  display: block;
}

.custom-select-option {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 13px;
  border: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: #f2f2f2;
  outline: 0;
}

.custom-select-option.is-selected::after {
  content: "";
  width: 8px;
  height: 5px;
  margin-left: 12px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.state-autocomplete {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  font-family: var(--font-body) !important;
  letter-spacing: 0;
  text-transform: none;
}

.state-autocomplete-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  outline: 0;
  text-transform: none;
}

.state-autocomplete.open .state-autocomplete-input,
.state-autocomplete-input:focus {
  border-color: #000;
}

.state-autocomplete.is-invalid .state-autocomplete-input {
  border-color: #9b1c1c;
}

.state-autocomplete-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 2200;
  display: none;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .08);
}

.state-autocomplete.open .state-autocomplete-menu {
  display: block;
}

.state-autocomplete-option {
  box-sizing: border-box;
  display: grid;
  width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.state-autocomplete-option:hover,
.state-autocomplete-option:focus-visible {
  background: #f2f2f2;
  outline: 0;
}

.state-autocomplete-option small {
  margin-top: 2px;
  color: #000;
  font-size: 12px;
  letter-spacing: 0;
}

.state-autocomplete-empty {
  padding: 10px 13px;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.account-form textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

.readonly-field input {
  color: #000;
  background: #fff;
}

.account-settings-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-settings-form .full-field {
  grid-column: 1 / -1;
}

.address-group {
  position: relative;
  box-sizing: border-box;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}

.address-group.is-address-incomplete {
  animation: addressIncompleteFlash .72s ease-in-out 2;
}

@keyframes addressIncompleteFlash {
  0%,
  100% {
    border-color: var(--line);
    background: rgba(255, 255, 255, .38);
    box-shadow: none;
  }

  50% {
    border-color: #9b1c1c;
    background: rgba(155, 28, 28, .055);
    box-shadow: 0 0 0 1px rgba(155, 28, 28, .38);
  }
}

.address-group legend {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.add-address-button {
  position: relative;
  display: flex;
  width: 130px;
  height: 40px;
  min-height: 40px;
  align-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1;
  overflow: hidden;
}

.add-address-button,
.add-address-button .button__icon,
.add-address-button .button__text {
  transition: all .3s ease;
}

.add-address-button .button__text {
  color: #000;
  font-weight: 400;
  transform: translateX(14px);
}

.add-address-button .button__icon {
  position: absolute;
  right: 0;
  width: 39px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  transform: translateX(0);
}

.add-address-button .svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.add-address-button:hover {
  background: #fff;
}

.add-address-button:hover .button__text {
  color: transparent;
}

.add-address-button:hover .button__icon {
  width: 130px;
}

.add-address-button:active .button__icon {
  background-color: #fff;
}

.add-address-button:active .svg {
  stroke: #000;
}

.add-address-button:focus-visible {
  outline: 1px solid #000;
  outline-offset: 2px;
}

.add-address-button[disabled] {
  cursor: not-allowed;
}

.add-address-button[disabled] .button__text {
  color: #000;
}

.add-address-button[disabled] .button__icon {
  background-color: #f4f4f4;
}

.add-address-button[disabled]:hover .button__text {
  color: transparent;
}

.add-address-button[disabled]:hover .button__icon {
  width: 130px;
  background-color: #f4f4f4;
}

.add-address-button[disabled] .svg {
  stroke: #9a9a9a;
}

.address-filters,
.address-contact-row,
.address-line-row {
  display: grid;
  gap: 12px;
}

.address-filters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.address-contact-row {
  grid-template-columns: 1fr 1fr;
}

.address-line-row {
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr);
}

.required-mark {
  display: inline-flex;
  margin-left: 4px;
  color: #9b1c1c;
  line-height: 1;
}

.required-mark.optional {
  display: none;
}

.address-validation-status {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
}

.address-validation-status.success {
  color: #1f6f43;
}

.address-validation-status.error {
  color: #9b1c1c;
}

.password-inline {
  position: relative;
  display: grid;
  width: 100%;
  gap: 0;
  min-height: 50px;
  align-items: start;
}

.password-inline-trigger {
  width: 100%;
  max-height: 50px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .34s cubic-bezier(.22, .61, .36, 1), opacity .24s ease, transform .34s cubic-bezier(.22, .61, .36, 1) .05s, color .24s ease;
}

.password-inline-trigger[hidden] {
  display: none !important;
}

.password-inline-trigger.is-collapsing {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.password-inline-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
  gap: 12px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .38s cubic-bezier(.22, .61, .36, 1), opacity .26s ease, transform .38s cubic-bezier(.22, .61, .36, 1);
}

.password-inline-editor.is-open {
  max-height: 50px;
  opacity: 1;
  transform: translateY(0);
}

.password-inline-editor input {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 14px;
  letter-spacing: 0;
  outline: 0;
}

.password-inline-editor input:focus {
  border-color: #000;
}

.password-inline-confirm {
  min-height: 50px;
}

.password-new-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .5s cubic-bezier(.22, .61, .36, 1), margin-top .5s cubic-bezier(.22, .61, .36, 1), opacity .34s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}

.password-new-panel.is-open {
  max-height: 120px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.password-new-panel label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #000;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.password-new-panel input {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 14px;
  letter-spacing: 0;
  outline: 0;
}

.password-new-panel input:focus {
  border-color: #000;
}

.profile-privacy-notice {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  color: #000;
  font-family: var(--font-body) !important;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.65;
  text-align: left;
}

.profile-privacy-notice p {
  margin: 0;
  color: #000;
}

.profile-privacy-notice a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-details {
  display: grid;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .48s cubic-bezier(.22, .61, .36, 1), opacity .28s ease, transform .48s cubic-bezier(.22, .61, .36, 1);
}

.privacy-details.is-open {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
}

.privacy-close {
  justify-self: start;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.account-actions,
.social-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lux-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .24s ease, opacity .24s ease;
}

.lux-button.dark {
  --button-rest-bg: #000;
  --button-rest-border: #000;
  color: #fff;
  background: transparent;
}

.lux-button.light {
  --button-rest-bg: #fff;
  --button-rest-border: #000;
  color: #000;
  background: transparent;
  border-color: transparent;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin: 28px 0 18px;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.social-auth {
  max-width: 520px;
}

.auth-button {
  appearance: none;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  --button-rest-bg: #fff;
  --button-rest-border: var(--line);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: none;
}

.auth-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.account-aside {
  padding: 30px;
}

.account-aside h2 {
  margin: 0 0 22px;
  font-size: 32px;
  font-weight: 400;
}

.account-aside p {
  margin: 0 0 24px;
  color: #000;
  font-size: 14px;
  line-height: 1.7;
}

.account-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.account-panel > .account-list {
  max-width: 720px;
}

.account-list a,
.account-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
}

.account-list small {
  color: #000;
  text-align: right;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3200;
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 18px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}

.toast.visible,
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.account-page--sign-in {
  min-height: auto;
  padding: 110px 24px 0;
  background: #fff;
}

.signin-hero {
  position: relative;
  width: 100vw;
  height: 300px;
  margin: 0 calc(50% - 50vw) 64px;
  overflow: hidden;
  background: #000;
}

.signin-hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signin-shell {
  width: min(716px, calc(100vw - 48px));
  margin: 0 auto;
  color: #000;
}

.signin-intro {
  max-width: 700px;
  margin: 0 0 45px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
}

.signin-section {
  margin: 0;
}

.signin-section h1,
.signin-section h2 {
  margin: 0 0 43px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.15;
}

.signin-form {
  display: grid;
  gap: 28px;
}

.signin-field {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 52px;
  border-bottom: 1px solid #d9d9d9;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

.signin-field span {
  align-self: center;
  pointer-events: none;
}

.signin-field input {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 18px 44px 10px 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 18px;
  outline: 0;
}

.signin-field input:not(:placeholder-shown) + span,
.signin-field:focus-within span {
  opacity: 0;
}

.signin-field--password {
  margin-top: -8px;
}

.signin-eye {
  position: absolute;
  right: 6px;
  top: 50%;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  transform: translateY(-50%);
}

.signin-eye svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.signin-options {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: -2px;
  font-size: 15px;
}

.signin-options a {
  color: #000;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.signin-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 15px;
}

.signin-check input {
  appearance: none;
  display: grid;
  width: 20px;
  height: 20px;
  margin: 0;
  place-items: center;
  border: 1px solid #000;
  background: #000;
}

.signin-check input::before {
  content: "";
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

.signin-check input:not(:checked) {
  background: #fff;
}

.signin-check input:not(:checked)::before {
  opacity: 0;
}

.signin-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 17px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.signin-verification {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.signin-verification[hidden] {
  display: none;
}

.signin-verification p,
.signin-status {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}

.signin-verification .signin-submit {
  margin-top: 0;
}

.signin-field--code {
  margin-top: 0;
}

.signin-or {
  margin: 34px 0 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}

.signin-social {
  display: grid;
  gap: 20px;
}

.signin-social .auth-button {
  min-height: 56px;
  gap: 12px;
  --button-rest-border: #000;
  border-color: transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.signin-social .auth-button svg {
  width: 24px;
  height: 24px;
}

.signin-social .auth-button--google svg {
  fill: initial;
}

.signin-create {
  margin-top: 72px;
}

.signin-benefits {
  display: grid;
  gap: 12px;
  margin-top: 39px;
  padding-bottom: 100px;
}

.signin-benefit {
  display: grid;
  gap: 6px;
  color: #000;
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
}

.signin-benefit strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.detail-gallery {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.detail-gallery-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  opacity: 1;
}

.detail-gallery.is-ready .detail-gallery-stage {
  opacity: 1;
}

.detail-gallery.is-zoomed .detail-gallery-stage {
  cursor: zoom-out;
}

.detail-gallery-stage.is-dragging {
  cursor: grabbing;
}

.detail-gallery-stage.is-dragging .detail-gallery-panel {
  transition: none;
}

.detail-gallery-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--l, 0%);
  width: var(--w, 0%);
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #fff;
  line-height: 0;
  opacity: var(--o, 0);
  transition: left .68s cubic-bezier(.22, .61, .36, 1), width .68s cubic-bezier(.22, .61, .36, 1);
  will-change: left, width;
}

.detail-gallery:not(.is-ready) .detail-gallery-panel:first-child {
  --l: 0%;
  --w: 100%;
  --o: 1;
  z-index: 2;
}

.detail-gallery-clone {
  display: none;
}

.detail-gallery-panel img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  transform: scale(1);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}

.detail-gallery-panel.is-zoomed img {
  transform: scale(1.86);
}

.oiion-about-page {
  margin: 0;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

.about-page {
  box-sizing: border-box;
  background: #fff;
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: inherit;
}

.about-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(620px, 100vh, 880px);
  padding: 140px clamp(24px, 6vw, 82px) clamp(70px, 10vw, 132px);
  color: #fff;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .18) 40%, rgba(0, 0, 0, .58)), var(--about-hero-image);
  background-position: center;
  background-size: cover;
}

.about-hero__content {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
}

.about-hero__kicker,
.about-chapter__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 7.4vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .94;
}

.about-hero p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.35;
}

.about-story {
  display: grid;
  gap: clamp(72px, 9vw, 136px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 136px) clamp(22px, 5vw, 64px);
}

.about-chapter {
  display: grid;
  grid-template-columns: minmax(210px, .75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.about-chapter--intro {
  padding-top: 8px;
}

.about-chapter--color {
  position: relative;
  padding: clamp(42px, 6vw, 72px);
  background: #4c0f1c;
  color: #fff;
}

.about-chapter--color::after {
  content: "";
  position: absolute;
  right: clamp(26px, 5vw, 64px);
  bottom: clamp(26px, 5vw, 64px);
  width: clamp(86px, 12vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 204, 126, .72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 16px rgba(240, 204, 126, .12);
  pointer-events: none;
}

.about-chapter--craft {
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  align-items: center;
}

.about-chapter__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}

.about-chapter__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-chapter h2,
.about-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 680px;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.58;
}

.about-copy p {
  margin: 0;
}

.about-emphasis {
  font-weight: 700;
}

.about-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  min-height: 430px;
  padding: clamp(70px, 9vw, 120px) 20px;
  align-content: center;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, .14);
  border-bottom: 1px solid rgba(0, 0, 0, .14);
}

.about-cta p {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
}

.about-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, 100%);
  min-height: 54px;
  margin-top: 18px;
  padding: 0 30px;
  --button-rest-bg: #000;
  --button-rest-border: #000;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .24s ease, opacity .24s ease;
}

@media (max-width: 960px) {
  body.has-transparent-header::before {
    height: 85px;
  }

  body.has-transparent-header::after {
    height: 85px;
  }

  .lux-header {
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    height: 85px;
    min-height: 85px;
    width: calc(100% - 32px);
  }

  .nav-text {
    display: none;
  }

  .wordmark {
    position: static;
    justify-self: start;
    font-size: 37px;
    transform: translateX(10px);
  }

  .header-links {
    justify-self: end;
    gap: 15px;
    margin-right: 15px;
    transform: none;
  }

  .icon-link {
    width: 32px;
    height: 32px;
  }

  .icon-link svg {
    width: 24px;
    height: 24px;
  }

  .bag-link {
    width: 36px;
  }

  .menu-button {
    width: 32px;
    min-height: 32px;
    justify-content: center;
  }

  .menu-button span:last-child {
    display: none;
  }

  .footer-inner,
  .mega-columns {
    grid-template-columns: 1fr;
  }

  .account-page {
    padding: 104px 18px 72px;
  }

  .account-shell {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 760px;
    padding: 132px 22px 70px;
    background-position: 58% center;
  }

  .about-story {
    gap: 72px;
    padding: 72px 22px;
  }

  .about-chapter,
  .about-chapter--craft {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-chapter--color {
    padding: 38px 24px 96px;
  }

  .about-chapter--color::after {
    right: 24px;
    bottom: 24px;
    width: 82px;
  }

  .about-copy {
    font-size: 18px;
    line-height: 1.62;
  }

  .about-cta {
    min-height: 360px;
  }

  .account-actions,
  .social-auth,
  .account-settings-form,
  .password-inline-editor,
  .password-new-panel,
  .address-filters,
  .address-contact-row,
  .address-line-row {
    grid-template-columns: 1fr;
  }

  .account-list div {
    flex-direction: column;
  }

  .account-list small {
    text-align: left;
  }

  .service-dropdown {
    position: fixed;
    top: 83px;
    left: 20px;
    right: 20px;
    width: calc(100vw - 40px);
    transform: translateY(-8px);
  }

  .service-menu.open .service-dropdown {
    transform: translateY(0);
  }

  .contact-drawer-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: min(100dvh, 100%);
    padding: 28px 26px 126px;
    transform: translateY(100%);
    box-shadow: 0 -18px 60px rgba(0, 0, 0, .1);
  }

  .newsletter-drawer-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: min(100dvh, 100%);
    padding: 28px 26px 126px;
    transform: translateY(100%);
    box-shadow: 0 -18px 60px rgba(0, 0, 0, .1);
  }

  .mega-columns {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    height: min(100dvh, 100%);
    padding: 28px 26px 126px;
    transform: translateY(100%);
    box-shadow: 0 -18px 60px rgba(0, 0, 0, .1);
  }

  .mega-menu.open .mega-columns {
    transform: translateY(0);
  }

  body.contact-drawer-open .contact-drawer-panel {
    transform: translateY(0);
  }

  body.newsletter-drawer-open .newsletter-drawer-panel {
    transform: translateY(0);
  }

  .contact-drawer-close {
    top: auto;
    right: auto;
    bottom: 40px;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translateX(-50%);
  }

  .newsletter-drawer-close {
    top: auto;
    right: auto;
    bottom: 40px;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translateX(-50%);
  }

  .newsletter-drawer-panel h2 {
    font-size: 28px;
  }

  .newsletter-drawer-lede {
    font-size: 20px;
  }

  .menu-close {
    top: auto;
    right: auto;
    bottom: 40px;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translateX(-50%);
  }

  .contact-drawer h2 {
    margin-bottom: 34px;
    font-size: 26px;
  }

  .contact-drawer-list {
    gap: 28px;
    margin-bottom: 34px;
  }

  .site-map-footer {
    padding: 58px 22px 48px;
  }

  .site-map-footer h2 {
    font-size: 20px;
  }

  .site-map-footer p,
  .site-map-footer a,
  .site-map-footer label,
  .site-map-footer input,
  .site-map-footer button,
  .site-map-footer section > span,
  .site-map-footer .footer-accordion-panel span {
    font-size: 20px;
  }

  .site-map-footer .footer-signup p {
    font-size: 28px;
  }

  .footer-inner {
    gap: 0;
  }

  .footer-accordion {
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .footer-accordion:nth-last-of-type(1) {
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .site-map-footer .footer-accordion h2 {
    margin: 0;
    font-size: 16px;
  }

  .site-map-footer .footer-accordion-toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 78px;
    padding: 0 28px 0 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }

  .footer-accordion-toggle::before,
  .footer-accordion-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 12px;
    height: 1px;
    background: currentColor;
    transform: translateY(-50%);
    transition: transform .28s ease, opacity .28s ease;
  }

  .footer-accordion-toggle::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .footer-accordion.is-open .footer-accordion-toggle::after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg) scaleX(.2);
  }

  .footer-accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height .36s ease, opacity .24s ease, padding .36s ease;
  }

  .footer-accordion.is-open .footer-accordion-panel {
    max-height: var(--footer-panel-height, 320px);
    opacity: 1;
    padding: 2px 0 22px;
  }

  .footer-accordion--static .footer-accordion-toggle {
    min-height: 78px;
    padding-right: 0;
    cursor: default;
  }

  .footer-accordion--static .footer-accordion-toggle::before,
  .footer-accordion--static .footer-accordion-toggle::after {
    content: none;
  }

  .footer-accordion--static .footer-accordion-panel {
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding: 0 0 22px;
  }

  .site-map-footer input {
    width: min(100%, 320px);
  }

  .social-links {
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .footer-social-panel {
    display: flex;
    gap: 12px;
  }

  .social-links h2 {
    grid-column: 1 / -1;
  }

  .footer-note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-top: 26px;
    line-height: 1.7;
  }

  .site-map-footer .footer-note,
  .site-map-footer .footer-note * {
    font-size: 15px;
  }

  .footer-policy-links {
    display: flex;
    gap: 6px 8px;
    max-width: 100%;
  }

  .detail-gallery,
  .detail-gallery-stage,
  .detail-gallery-panel {
    height: calc(100vw * 4 / 3);
    min-height: 0;
  }

  .detail-gallery.is-mobile-track .detail-gallery-stage {
    display: flex;
    width: max-content;
    min-width: 100%;
    background: transparent;
    will-change: transform;
  }

  .detail-gallery.is-mobile-track .detail-gallery-panel {
    position: relative;
    inset: auto;
    display: block;
    flex: 0 0 100vw;
    width: 100vw;
    min-width: 100vw;
    opacity: 1;
    transform: translateZ(0);
    transition: none;
  }

  .detail-gallery-panel img {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
  }

  .detail-gallery.is-mobile-track .detail-gallery-panel img {
    left: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
  }

  .detail-gallery.is-mobile-track .detail-gallery-panel.is-zoomed img {
    transform: scale(1.86);
  }
}

@media (max-width: 560px) {
  .lux-header {
    width: calc(100% - 20px);
    column-gap: 8px;
  }

  .wordmark {
    font-size: 35px;
  }

  .header-links {
    gap: 12px;
  }

  .icon-link {
    width: 29px;
    height: 29px;
  }

  .icon-link svg {
    width: 22px;
    height: 22px;
  }

  .bag-link {
    width: 33px;
  }

  .menu-button {
    width: 32px;
    min-height: 29px;
  }

  .lux-header svg.menu-svg-icon {
    width: 26px;
    height: 23px;
  }
}
