.page-template-wp-custom-template-product-page main.wp-block-group {
  margin-block-start:0;
}

.sticker-body {
  position: relative;
}
.sticky-menu {
  box-shadow: 0 3px 6px rgba(0 0 0 / 10% );
  padding: 0.7rem 1rem 0.7rem 1rem;
  position: relative;
  z-index: 100;
  top: 0;
  background: white;
  display: flex;
  justify-content: center;
}
@supports (position:sticky) {
  .sticky-menu {
    position:sticky;
  }
}
.sticky-menu_logo {
  max-width: 160px;
  max-height: 34px;
}
.sticky-menu_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--alignwide);
  width: 100%;
  gap: 3rem;
}
.sticky-menu_links {
  display: flex;
  gap:1em;
}
@media screen and (max-width:1023.9px) {
  .sticky-menu_logo {
    max-height: 26px;
    max-width: 120px;
    grid-column: 2;
    justify-self:center;
    position: relative;
    z-index: -1;
    order:2;
  }
  .sticky-menu .sticky-menu_inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    display: flex;
    justify-content: space-between;
  }
  .sticky-menu h2 {
    order: 2;
    flex:none!important;
    position: relative;
    z-index: -1;
  }
  .sticky-menu .sticky-menu_links {
    flex-direction: column;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 0.8rem;
    position: absolute;
    top: 0;
    left: 0rem;
    padding: 4rem 1rem 1.2rem 1rem;
    background: white;
    border-bottom-right-radius: 6px;
    z-index: -1;
    box-shadow: 0 6px 6px rgb(0 0 0 / 20%);
    transform: translateX(-120%);
    transition: transform 300ms ease;
  }
  .sticky-menu .sticky-menu_links.open {
    transform: translateX(0%);
  }
  .sticky-menu .sticky-menu_link-wrapper {
    justify-self: flex-start;
    grid-column: 1;
    grid-row:1;
    order:1;
  }
  .sticky-menu .menu-toggle {
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .sticky-menu .menu-toggle i {
    background: var(--wp--preset--color--grey);
    width: 24px;
    height: 2px;
    transition: all 200ms ease;
    margin-bottom:6px;
  }
  .sticky-menu .menu-toggle.active i:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: left;
  }
  .sticky-menu .menu-toggle.active i:nth-child(2) {
    width: 0;
  }
  .sticky-menu .menu-toggle.active i:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: left;
  }
}
.sticky-menu .button_link {
  font-size:15px;
  grid-column: 3;
  padding: 0.8em 1.2em 0.725em;
  justify-self: flex-end;
  order:3;
}

@media screen and (min-width:1080px) {

  .sticky-menu {
    padding: 1rem;
  }
}
.sticky-menu_links.mobile {
  flex-direction: column;
  position: absolute;
  top:100%;
  background: white;
  padding: 1rem 2rem 1rem 1rem;
  box-shadow: 1px 3px 6px rgb(0 0 0 / 10%);
  border-radius: 0 0 6px 6px;
  gap: 0.5rem;
  white-space: nowrap;
}
.sticky-menu_mobile.open .sticky-menu_links {
  display: flex;
}
.sticky-menu_selected {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
span.menu-trigger {
    display: block;
    height: 1rem;
    width: 1rem;
}
.sticky-menu_mobile.open circle {
  fill: var(--wp--preset--color--secondary);
}
.sticky-menu_mobile {
  position: relative;
}
.sticky-menu_links a {
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
  color:inherit;
}
.sticky-menu_links a:hover {
  text-decoration: underline;
  color: var(--wp--preset--color--secondary);
}
.sticky-menu.has_title h2 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin: 0;
  font-weight: 600;
  flex:1;
}
