@font-face {
  font-family: "SCENOO Icons";
  src: url("/stores/catalog/view/javascript/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

:root {
  --scenoo-nav-ivory: #fbf7f5;
  --scenoo-nav-ink: #17120f;
  --scenoo-nav-gold: #bd9452;
  --scenoo-nav-divider: rgba(189, 148, 82, 0.42);
  --scenoo-nav-muted: #6d635d;
}

.scenoo-menu {
  position: relative;
  z-index: 3000;
  width: 44px;
  height: 44px;
  color: var(--scenoo-nav-ink);
  font-family: "Inter", Arial, sans-serif;
}

.scenoo-menu > summary {
  position: relative;
  z-index: 3003;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.scenoo-menu > summary::-webkit-details-marker {
  display: none;
}

.scenoo-menu > summary:focus-visible,
.scenoo-menu-close:focus-visible,
.scenoo-menu-drawer a:focus-visible {
  outline: 2px solid var(--scenoo-nav-gold);
  outline-offset: 3px;
}

.scenoo-menu-icon {
  width: 25px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scenoo-menu-icon > span {
  display: block;
  width: 100%;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
}

.scenoo-menu-text,
.scenoo-menu-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scenoo-menu[open] > summary {
  visibility: hidden;
}

.scenoo-menu:not([open]) .scenoo-menu-backdrop,
.scenoo-menu:not([open]) .scenoo-menu-drawer {
  display: none;
}

.scenoo-menu-backdrop {
  position: fixed;
  z-index: 3001;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(14, 11, 10, 0.58);
  cursor: default;
  animation: scenoo-menu-fade 150ms ease-out both;
  -webkit-tap-highlight-color: transparent;
}

.scenoo-menu-drawer {
  position: fixed;
  z-index: 3002;
  inset: 0 auto 0 0;
  width: clamp(236px, 60vw, 430px);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding:
    max(44px, calc(env(safe-area-inset-top) + 34px))
    clamp(20px, 5vw, 38px)
    max(30px, calc(env(safe-area-inset-bottom) + 20px));
  overflow-y: auto;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), transparent 48%),
    var(--scenoo-nav-ivory);
  box-shadow: 18px 0 50px rgba(20, 15, 12, 0.18);
  text-align: left;
  -webkit-overflow-scrolling: touch;
  animation: scenoo-menu-slide-in 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scenoo-menu-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: clamp(14px, 4vw, 26px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--scenoo-nav-ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.scenoo-menu-close-icon {
  position: relative;
  width: 25px;
  height: 25px;
}

.scenoo-menu-close-icon::before,
.scenoo-menu-close-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 1px;
  width: 23px;
  height: 1.6px;
  border-radius: 99px;
  background: currentColor;
}

.scenoo-menu-close-icon::before {
  transform: rotate(45deg);
}

.scenoo-menu-close-icon::after {
  transform: rotate(-45deg);
}

.scenoo-menu-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 clamp(32px, 5vh, 48px);
}

.scenoo-menu-brand-name {
  color: var(--scenoo-nav-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 7vw, 38px);
  font-weight: 500;
  letter-spacing: 0.23em;
  line-height: 1;
  transform: translateX(0.115em);
  white-space: nowrap;
}

.scenoo-menu-brand-tagline {
  margin-top: 13px;
  color: var(--scenoo-nav-gold);
  font-size: clamp(7px, 1.9vw, 10px);
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.scenoo-menu-quiz {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--scenoo-nav-ink);
  border-radius: 8px;
  background: var(--scenoo-nav-ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 18, 15, 0.14);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(13px, 3.5vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.scenoo-menu-font-icon {
  font-family: "SCENOO Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.scenoo-menu-quiz .scenoo-menu-font-icon {
  flex: none;
  font-size: 17px;
}

.scenoo-menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.scenoo-menu-links a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--scenoo-nav-divider);
  color: var(--scenoo-nav-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 5.2vw, 25px);
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.scenoo-menu-links .scenoo-menu-font-icon {
  width: 32px;
  color: #3f3935;
  font-size: 24px;
  text-align: center;
}

.scenoo-menu-drawer a:hover,
.scenoo-menu-drawer a:focus-visible {
  color: var(--scenoo-nav-gold);
}

.scenoo-menu-promise {
  margin-top: clamp(48px, 8vh, 72px);
  color: var(--scenoo-nav-muted);
  text-align: center;
}

.scenoo-menu-promise .scenoo-menu-font-icon {
  display: block;
  margin-bottom: 20px;
  color: var(--scenoo-nav-gold);
  font-size: 25px;
}

.scenoo-menu-promise p {
  margin: 0;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.65;
}

body.scenoo-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.scenoo-menu-open .scenoo-menu-drawer {
  touch-action: pan-y;
}

.scenoo-menu > summary,
.scenoo-menu-close,
.scenoo-menu-drawer a,
.cta {
  transition: transform 80ms ease, background-color 80ms ease, color 80ms ease, box-shadow 80ms ease;
  touch-action: manipulation;
}

.cta {
  border: 1px solid transparent;
}

.cta:active,
.scenoo-menu-quiz:active {
  transform: translateY(1px) scale(0.96) !important;
  border: 1px solid var(--scenoo-nav-ink) !important;
  background: #fff !important;
  color: var(--scenoo-nav-ink) !important;
  box-shadow: 0 7px 16px rgba(23, 18, 15, 0.14) !important;
}

.scenoo-menu > summary:active,
.scenoo-menu-close:active {
  transform: scale(0.97);
  color: var(--scenoo-nav-gold);
}

.scenoo-menu-links a:active {
  transform: scale(0.97);
  background: rgba(189, 148, 82, 0.08);
  color: var(--scenoo-nav-gold);
}

@keyframes scenoo-menu-slide-in {
  from { opacity: 0.96; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scenoo-menu-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 360px) {
  .scenoo-menu-drawer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scenoo-menu-brand-tagline {
    letter-spacing: 0.24em;
  }

  .scenoo-menu-links a {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scenoo-menu-backdrop,
  .scenoo-menu-drawer {
    animation: none !important;
  }

  .cta:active,
  .scenoo-menu-quiz:active,
  .scenoo-menu > summary:active,
  .scenoo-menu-close:active,
  .scenoo-menu-links a:active {
    transform: none !important;
  }
}
