/* Model Twin Studio v1.6.32 frontend topbar */
.mts-topbar {
  min-height: 40px;
  padding: 0;
  background: #141210;
  color: #f8f1e7;
  border-bottom: 1px solid rgba(181, 150, 112, .58);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03) inset;
  font-family: var(--mts-font-body, Inter, "Helvetica Neue", Arial, sans-serif);
  position: relative;
  z-index: 1030;
}

.mts-topbar__inner {
  width: min(var(--mts-container, 1320px), calc(100vw - 44px));
  min-height: 40px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mts-topbar__right,
.mts-topbar__modules,
.mts-topbar__account,
.mts-topbar__desktop-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mts-topbar__right {
  min-width: 0;
  gap: 14px;
  margin-left: auto;
}

.mts-topbar__modules {
  min-width: 0;
  gap: 10px;
}

.mts-topbar__account,
.mts-topbar__desktop-links {
  gap: 6px;
}

.mts-topbar__link,
.mts-topbar__mobile-menu summary,
.mts-topbar .mod-languages button,
.mts-topbar .mod-languages select,
.mts-topbar .mod-languages a {
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #f8f1e7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.mts-topbar__link:hover,
.mts-topbar__link:focus-visible,
.mts-topbar__mobile-menu summary:hover,
.mts-topbar .mod-languages button:hover,
.mts-topbar .mod-languages button:focus-visible,
.mts-topbar .mod-languages a:hover,
.mts-topbar .mod-languages a:focus-visible {
  background: rgba(181, 150, 112, .12);
  border-color: rgba(181, 150, 112, .42);
  color: #fffaf0;
  outline: none;
}

.mts-topbar__login {
  cursor: pointer;
}

.mts-topbar__mobile-menu {
  display: none;
  position: relative;
}

.mts-topbar__mobile-menu summary {
  cursor: pointer;
  list-style: none;
}

.mts-topbar__mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mts-topbar__mobile-menu[open] summary {
  background: rgba(181, 150, 112, .14);
  border-color: rgba(181, 150, 112, .45);
}

.mts-topbar__mobile-panel,
.mts-topbar .mod-languages .mts-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 1040;
  min-width: 178px;
  padding: 8px;
  background: #1b1815;
  border: 1px solid rgba(181, 150, 112, .42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.mts-topbar__mobile-panel {
  display: none;
  gap: 4px;
}

.mts-topbar__mobile-menu[open] .mts-topbar__mobile-panel {
  display: grid;
}

.mts-topbar__mobile-panel a,
.mts-topbar .mod-languages .mts-lang-menu a {
  justify-content: flex-start;
  width: 100%;
}

.mts-topbar .mod-languages {
  position: relative;
  margin: 0;
  color: #f8f1e7;
}

.mts-topbar .mod-languages p,
.mts-topbar .mod-languages label,
.mts-topbar .mod-languages .visually-hidden {
  margin: 0;
}

.mts-topbar .mod-languages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mts-topbar .mod-languages .mts-lang-wrap {
  position: relative;
}

.mts-topbar .mod-languages .mts-lang-menu {
  display: none;
}

.mts-topbar .mod-languages.is-open .mts-lang-menu,
.mts-topbar .mod-languages .mts-lang-wrap:focus-within .mts-lang-menu {
  display: grid;
  gap: 4px;
}

.mts-topbar .mod-languages select {
  height: 30px;
  max-width: 170px;
  background: #141210;
}

.mts-topbar .mod-languages img {
  max-width: 18px;
  height: auto;
  margin-right: 6px;
}

.mts-topbar .tm-social,
.mts-topbar .sp-social-icons,
.mts-topbar .social-icons,
.mts-topbar [class*="social-icon"],
.mts-topbar a[href*="facebook.com"],
.mts-topbar a[href*="instagram.com"],
.mts-topbar a[href*="tiktok.com"],
.mts-topbar a[href*="twitter.com"],
.mts-topbar a[href*="x.com"],
.mts-topbar a[href*="youtube.com"],
.mts-topbar a[href*="linkedin.com"] {
  display: none !important;
}

.mts-login-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mts-login-modal.is-open {
  display: flex;
}

.mts-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, .68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mts-login-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fbf7ef;
  border: 1px solid rgba(181, 150, 112, .45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  padding: 30px;
  color: #141210;
}

.mts-login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(20, 18, 16, .12);
  background: rgba(255, 255, 255, .52);
  color: #141210;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.mts-login-modal__eyebrow {
  color: #8b6f4f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mts-login-modal h2 {
  margin: 0 0 22px;
  color: #141210;
  font-family: var(--mts-font-display, Georgia, serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
}

.mts-login-modal__form {
  display: grid;
  gap: 14px;
}

.mts-login-modal__form label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #3c332b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mts-login-modal__form input[type="text"],
.mts-login-modal__form input[type="password"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(20, 18, 16, .18);
  background: rgba(255, 255, 255, .72);
  color: #141210;
  padding: 0 12px;
  font-size: 15px;
  letter-spacing: 0;
}

.mts-login-modal__remember {
  grid-template-columns: auto 1fr;
  align-items: center;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
}

.mts-login-modal__form button[type="submit"] {
  min-height: 48px;
  border: 1px solid #141210;
  background: #141210;
  color: #f8f1e7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.mts-footer-social {
  background: #141210;
  border-top: 1px solid rgba(181, 150, 112, .38);
  color: #f8f1e7;
  padding: 18px 0;
}

.mts-footer-social__inner {
  width: min(var(--mts-container, 1320px), calc(100vw - 44px));
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .mts-topbar__inner {
    width: min(100% - 28px, 100%);
  }

  .mts-topbar__right {
    width: 100%;
    gap: 8px;
  }

  .mts-topbar__modules {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .mts-topbar__desktop-links {
    display: none;
  }

  .mts-topbar__mobile-menu {
    display: block;
  }

  .mts-topbar__link,
  .mts-topbar__mobile-menu summary,
  .mts-topbar .mod-languages button,
  .mts-topbar .mod-languages select,
  .mts-topbar .mod-languages a {
    padding-inline: 8px;
    font-size: 10px;
    letter-spacing: .09em;
  }

  .mts-login-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .mts-login-modal__panel {
    padding: 26px 20px 22px;
  }
}