/* Unified Menu Style Pack (split by theme slug)
 * Scope: module-menu variants used by render runtime.
 */



/* =========================================================
   COMMON MENU
   ========================================================= */

.module-menu {
  border-bottom: 1px solid #d9d9d9;
  border-top: 4px solid #3d3d3d;
  margin: 0 0 18px;
  background: #f1f1f1;
  padding: 0;
  width: 100%;
}

.module-menu__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.module-menu__brand-link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.module-menu__brand-logo {
  max-height: 58px;
  /* width: auto;
  height: auto; */
  display: block;
}

.module-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(14px, 2vw, 28px);
}


.module-menu__item {
  margin: 0;
}

.module-menu__toggle {
  display: none;
}

/* =========================================================
   MENU
   ========================================================= */

.module-menu--standard,
.module-menu--compact {
  display: flex;
  gap: clamp(12px, 1.4vw, 24px);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* padding: 0 16px; */
  list-style: none;
  overflow: visible;
  scrollbar-width: thin;
  background: #f1f1f1;
}

.module-menu--standard {
  border-top: 0;
  padding-bottom: 20px;
  /* padding-left: max(16px, calc((100vw - var(--container-max, 1120px)) / 2)); */
  padding-right: max(16px, calc((100vw - var(--container-max, 1120px)) / 2));
}

/* Full-bleed layout for compact menu */
.module-menu--compact {
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 18px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f1f1f1;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* Align compact menu content (including logo) with page container */
  padding-left: max(16px, calc((100vw - var(--container-max, 1120px)) / 2));
  padding-right: max(16px, calc((100vw - var(--container-max, 1120px)) / 2));
  justify-content: space-between;
}

.module-menu--compact .module-menu__brand {
  margin-right: 16px;
  padding: 8px 0;
}

.module-menu--compact .module-menu__list {
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
}

.module-menu--compact .module-menu__link {
  color: #3b3b3b;
}

.module-menu--compact .module-menu__link.is-active {
  color: #2f2f2f;
  background: transparent;
}

.module-menu--standard .module-menu__brand,
.module-menu--compact .module-menu__brand {
  flex: 0 0 auto;
}

.module-menu--standard .module-menu__brand {
  margin-right: clamp(12px, 1.8vw, 28px);
  padding: 6px 0;
}

.module-menu--standard .module-menu__brand-logo,
.module-menu--compact .module-menu__brand-logo {
  max-height: 44px;
}

/* module-menu__list: common styles are centralized above.
 * Keep only variant-specific rules under module-menu--compact if needed.
 */

.module-menu--standard .module-menu__item,
.module-menu--compact .module-menu__item {
  margin: 0;
}

.module-menu--standard .module-menu__link,
.module-menu--compact .module-menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--menu-height, 42px);
  padding: 0;
  color: #3b3b3b;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
  white-space: nowrap;
}

.module-menu--standard .module-menu__link::after,
.module-menu--compact .module-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 0;
  background: #a8c8d6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.module-menu--standard .module-menu__link:hover,
.module-menu--standard .module-menu__link.is-active,
.module-menu--compact .module-menu__link:hover,
.module-menu--compact .module-menu__link.is-active {
  color: #2f2f2f;
}

.module-menu--standard .module-menu__link:hover::after,
.module-menu--standard .module-menu__link.is-active::after,
.module-menu--compact .module-menu__link:hover::after,
.module-menu--compact .module-menu__link.is-active::after {
  transform: scaleX(1);
}

/* Keep compact menu text style stable (don't inherit standard active color). */
.module-menu--compact .module-menu__link,
.module-menu--compact .module-menu__link:visited,
.module-menu--compact .module-menu__link:hover,
.module-menu--compact .module-menu__link:focus,
.module-menu--compact .module-menu__link.is-active {
  color: #3b3b3b;
}

.module-menu--compact .module-menu__link::after {
  background: #a8c8d6;
}

.module-menu--standard .module-menu__toggle,
.module-menu--compact .module-menu__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Shared hamburger icon for standard/compact. */
.module-menu--standard .module-menu__toggle-icon,
.module-menu--compact .module-menu__toggle-icon,
.module-menu--minimal-underline .module-menu__toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background .2s ease;
  margin: 0 auto;
}

.module-menu--standard .module-menu__toggle-icon::before,
.module-menu--standard .module-menu__toggle-icon::after,
.module-menu--compact .module-menu__toggle-icon::before,
.module-menu--compact .module-menu__toggle-icon::after,
.module-menu--minimal-underline .module-menu__toggle-icon::before,
.module-menu--minimal-underline .module-menu__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .22s ease;
}

.module-menu--standard .module-menu__toggle-icon::before,
.module-menu--compact .module-menu__toggle-icon::before,
.module-menu--minimal-underline .module-menu__toggle-icon::before {
  top: -7px;
}

.module-menu--standard .module-menu__toggle-icon::after,
.module-menu--compact .module-menu__toggle-icon::after,
.module-menu--minimal-underline .module-menu__toggle-icon::after {
  top: 7px;
}

.module-menu--compact .module-menu__toggle {
  color: #3b3b3b;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) {
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 20px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f1f1f1;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.theme-render-page> :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu):first-child,
.theme-render-page>.module-menu--compact:first-child {
  margin-top: 0;
}

.module-menu__banner {
  width: 100%;
  min-height: var(--menu-banner-height, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  background: #f1f1f1;
  padding: 10px clamp(16px, 4vw, 34px) 8px;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-link {
  display: block;
  text-decoration: none;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-logo {
  display: block !important;
  width: auto;
  max-width: min(100%, 320px);
  max-height: 74px;
  object-fit: contain;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand--banner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__banner {
  display: block;
  min-height: 0;
  padding: 0;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__brand--banner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__brand-link {
  display: block;
  width: 100%;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__banner-image {
  display: block;
  width: 100%;
  max-width: none;
  height: var(--menu-banner-height, 120px);
  margin: 0;
  object-fit: cover;
  object-position: center;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-name {
  display: block;
  margin: 0;
  color: #9a9a9a;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-name::after {
  display: block;
  margin-top: 0px;
  color: #b2b2b2;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__line--banner {
  display: none;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner::after {
  display: none;
}

.module-menu__bar--dark,
.module-menu__bar--menu {
  background: #f1f1f1;
  border-top: 0;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #d9d9d9;
  padding: 0 clamp(16px, 3vw, 26px);
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__list {
  display: flex;
  gap: clamp(12px, 1.6vw, 28px);
  min-height: 33px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 4px;
  color: #3b3b3b;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.33;
  white-space: nowrap;
  border-radius: 0;
  opacity: 1;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link:hover {
  color: #242424;
  background: transparent;
}

:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link.is-active {
  color: #242424;
  background: transparent;
  box-shadow: inset 0 -1px 0 #a8c8d6;
}

/* Mobile bar: hidden on desktop */
:is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__mobile-bar {
  display: none;
}

.module-menu--minimal-underline {
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f1f1f1;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 2;
}

.module-menu--minimal-underline .module-menu__bar--minimal {
  min-height: 44px;
  padding: 0 max(16px, calc((100vw - var(--container-max, 1120px)) / 2));
  border-top: 1px solid var(--menu-border, #dbe3ed);
  border-bottom: 1px solid var(--menu-border, #dbe3ed);
  background: #f1f1f1;
}

.module-menu--minimal-underline .module-menu__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 42px;
  overflow-x: auto;
}

.module-menu--minimal-underline .module-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #3b3b3b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.module-menu--minimal-underline .module-menu__link:hover,
.module-menu--minimal-underline .module-menu__link.is-active {
  color: #242424;
  border-bottom-color: #a8c8d6;
}

@media (max-width: 991.98px) {

  .module-menu--standard,
  .module-menu--compact {
    border-radius: 0;
    margin-bottom: 14px;
  }

  .module-menu--standard .module-menu__brand-logo,
  .module-menu--compact .module-menu__brand-logo {
    max-height: 38px;
  }
}

@media (max-width: 768px) {


  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) {
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__bar--menu,
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__bar--dark {
    height: 0;
    min-height: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: clamp(12px, 3vw, 20px);
    top: 0;
    bottom: 0;
    height: auto;
    width: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #3b3b3b;
    z-index: 1003;
  }

  .module-menu--standard,
  .module-menu--compact,
  .module-menu--minimal-underline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    gap: 10px;
    min-height: 0;
  }

  .module-menu--standard .module-menu__toggle,
  .module-menu--compact .module-menu__toggle,
  .module-menu--minimal-underline .module-menu__toggle {
    display: inline-flex;
    z-index: 1002;
  }

  .module-menu__toggle {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
    line-height: 0;
    appearance: none;
    -webkit-appearance: none;
    color: #3b3b3b;
  }

  .module-menu__toggle-icon,
  .module-menu__toggle-icon::before,
  .module-menu__toggle-icon::after {
    background: currentColor;
    height: 2px;
    border-radius: 1px;
    transition: transform .22s ease, background .22s ease;
  }

  /* compact-only mobile behavior */
  .module-menu--compact {
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .module-menu--compact .module-menu__brand {
    padding-left: 0;
    order: 1;
  }

  .module-menu--compact .module-menu__toggle {
    order: 3;
    margin-left: auto;
  }

  .module-menu--compact .module-menu__bar.module-menu__bar--menu {
    order: 2;
    width: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .module-menu__list {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: min(86vw, 320px);
    padding: 76px 20px 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    background: #f1f1f1;
    box-shadow: 8px 0 30px rgba(15, 23, 42, 0.22);
    transform: translateX(-100%);
    transition: transform .24s ease;
    overflow-y: auto;
    z-index: 999999;
  }

  .module-menu--compact .module-menu__list {
    left: auto;
    right: 0;
    background: #f1f1f1;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(100%);
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.22);
    z-index: 999999;
  }

  .module-menu--minimal-underline .module-menu__list {
    left: auto;
    right: 0;
    background: #f1f1f1;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(100%);
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.22);
    z-index: 999999;
    padding: 76px 24px 24px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .module-menu--standard .module-menu__list,
  .module-menu--minimal-underline .module-menu__list {
    z-index: 999999;
  }

  .module-menu--standard .module-menu__item,
  .module-menu--compact .module-menu__item,
  .module-menu--minimal-underline .module-menu__item {
    width: 100%;
  }

  .module-menu--standard .module-menu__link,
  .module-menu--compact .module-menu__link,
  .module-menu--minimal-underline .module-menu__link {
    width: 100%;
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-height: 40px;
    color: #3b3b3b;
  }

  .module-menu--standard .module-menu__link::after,
  .module-menu--compact .module-menu__link::after,
  .module-menu--minimal-underline .module-menu__link::after {
    display: none;
  }

  .module-menu.is-open .module-menu__list {
    transform: translateX(0);
  }

  .module-menu--standard::after,
  .module-menu--compact::after,
  .module-menu--minimal-underline::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .46);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 3000;
  }

  .module-menu--standard.is-open::after,
  .module-menu--compact.is-open::after,
  .module-menu--minimal-underline.is-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .module-menu--standard.is-open,
  .module-menu--compact.is-open,
  .module-menu--minimal-underline.is-open {
    z-index: 3000;
  }

  .module-menu--standard.is-open .module-menu__toggle-icon,
  .module-menu--compact.is-open .module-menu__toggle-icon,
  .module-menu--minimal-underline.is-open .module-menu__toggle-icon {
    background: transparent;
  }

  .module-menu--standard.is-open .module-menu__toggle-icon::before,
  .module-menu--compact.is-open .module-menu__toggle-icon::before,
  .module-menu--minimal-underline.is-open .module-menu__toggle-icon::before {
    transform: translateY(10px) rotate(45deg);
  }

  .module-menu--standard.is-open .module-menu__toggle-icon::after,
  .module-menu--compact.is-open .module-menu__toggle-icon::after,
  .module-menu--minimal-underline.is-open .module-menu__toggle-icon::after {
    transform: translateY(-10px) rotate(-45deg);
  }

  .module-menu--minimal-underline {
    width: 100%;
    max-width: 100%;
    left: auto;
    transform: none;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    padding-left: 16px;
    padding-right: 16px;
  }

  .module-menu--minimal-underline .module-menu__bar--minimal {
    order: 2;
    width: auto;
    min-width: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .module-menu--minimal-underline .module-menu__banner--minimal {
    order: 1;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .module-menu--minimal-underline .module-menu__line--under-logo {
    display: none;
  }

  .module-menu--minimal-underline .module-menu__brand {
    padding-left: 0;
  }

  .module-menu--minimal-underline .module-menu__brand-name {
    display: none;
  }

  .module-menu--minimal-underline .module-menu__brand-logo {
    max-height: 38px;
  }

  .module-menu--minimal-underline .module-menu__toggle {
    order: 3;
    margin-left: auto;
    color: #3b3b3b;
  }

  .module-menu--minimal-underline .module-menu__link {
    color: #3b3b3b;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner {
    width: 100%;
    min-height: var(--menu-banner-height, 120px);
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 14px 14px 10px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand--banner {
    width: 100%;
    padding: 8px 0 2px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-name {
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.12;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-name::after {
    font-size: 12px;
    margin-top: 4px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand-logo {
    max-height: 58px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner::before {
    display: none;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner::after {
    display: none;
  }

  .module-menu__bar--dark,
  .module-menu__bar--menu {
    padding: 0 12px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__list {
    min-height: 46px;
    gap: 14px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link {
    font-size: 18px;
  }

  /* ── brand-name-menu responsive menu ── */

  /* Show compact mobile bar, hide desktop banner + dark bar */
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    background: #f1f1f1;
    position: relative;
    z-index: 1002;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__brand--mobile .module-menu__brand-name {
    display: block;
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #8f8f8f;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner {
    width: 100%;
    min-height: var(--menu-banner-height, 120px);
    display: none;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__banner {
    display: block !important;
    min-height: 0;
    padding: 0;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__banner.module-menu__banner--image {
    display: block !important;
    width: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__brand--banner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__brand-link {
    display: block;
    width: 100%;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__banner-image {
    display: block;
    width: 100%;
    max-width: none;
    height: var(--menu-banner-height, 120px) !important;
    max-height: none !important;
    margin: 0;
    object-fit: cover !important;
    object-position: center center;
    vertical-align: top;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__bar.module-menu__bar--dark {
    display: none;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__bar.module-menu__bar--menu {
    position: absolute;
    top: 10px;
    right: 12px;
    left: auto;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    z-index: 3002;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__toggle {
    margin: 0;
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    color: #ffffff;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).module-menu--has-banner-image .module-menu__toggle-icon {
    width: 18px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__bar--dark,
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__bar--menu {
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  /* Hamburger toggle button */
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #3b3b3b;
    flex-shrink: 0;
    position: relative;
    z-index: 1003;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: background .2s ease;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle-icon::before,
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .22s ease;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle-icon::before {
    top: -7px;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__toggle-icon::after {
    top: 7px;
  }

  /* is-open: hamburger → X */
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open .module-menu__toggle-icon {
    background: transparent;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open .module-menu__toggle-icon::before {
    transform: translateY(7px) rotate(45deg);
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open .module-menu__toggle-icon::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Menu list: right panel (~60% width), slides in from right */
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__list {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: clamp(240px, 60vw, 420px);
    max-width: 60vw;
    height: 100dvh;
    min-height: unset;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    background: #f1f1f1;
    padding: 70px 24px 32px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform .26s ease;
    z-index: 999999;
    scrollbar-width: thin;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open .module-menu__list {
    transform: translateX(0);
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    color: #3b3b3b;
    white-space: normal;
    width: 100%;
    display: flex;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link:hover {
    background: transparent;
    padding-left: 0;
    color: #242424;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu) .module-menu__link.is-active {
    background: transparent;
    padding-left: 0;
  }

  /* Dim backdrop */
  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu)::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .46);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 3000;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  :is(.module-menu--brand-name-menu, .module-menu--banner-menu, .module-menu--brandname-menu).is-open {
    z-index: 3000;
  }
}

/* Compact active state background */
.module-menu--compact .module-menu__link.is-active {
  background: transparent;
}

/* =========================================================
   MENU INTERACTION — TINY BUDDHA
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
  .module-menu__link {
    transition: color 0.24s ease, transform 0.24s ease;
    will-change: transform;
  }

  .module-menu__link:hover,
  .module-menu__link.is-active {
    transform: translateY(-2px) scale(1.02);
  }
}

/* =========================================================
   MENU ICON SAFE SIZE
   ========================================================= */

.module-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  line-height: 1;
}

.module-menu__icon--image {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  border-radius: 2px;
}

.module-menu__icon--font {
  font-size: 16px;
}

.module-menu__label {
  display: inline-block;
  min-width: 0;
}