header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;

  &:after {
    content: "";
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("/wp-content/uploads/2025/05/me22d-1.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
  }

  &:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-yellow);
    position: absolute;
    z-index: -1;
  }
}

.mobile_header {
  display: none;
}
a.mobile_burger {
  display: none;
}

.header_right,
.header_left {
  margin-top: 20px;
  width: 90%;
  height: 70px;
}

.header_center {
  margin: 0 20px;
  margin-top: -2px;
}
.header_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  & nav {
    & ul {
      justify-content: space-between;
    }
  }
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_img {
  min-width: 205px;
}

.hedaer_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  nav {
    & ul {
      display: flex;
      align-items: center;
      gap: clamp(0.9375rem, 0.2184rem + 2.4221vw, 3.125rem);

      & a {
        font-size: 20px;
        text-transform: uppercase;
        font-weight: bold;
      }
    }
  }
}
.header_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0px 16px 24px rgba(0, 0, 0, 0.06),
    0px 2px 6px rgba(0, 0, 0, 0.04),
    0px 0px 1px rgba(0, 0, 0, 0.04);
  transition: 0.4s;

  & .icon {
    width: 30px;
    height: 30px;

    & svg {
      width: 100%;
      height: 100%;
    }
  }

  &:hover {
    background-color: #e5e5e5;
  }
}

.header_right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hedaer_icon-cart_count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-green);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_menu {
  justify-content: flex-end;
  align-items: flex-start;

  & .modal_inner {
    max-width: 400px;
    height: 100%;
    border-radius: 24px 0 0 24px;
    translate: 100% 0;
    transition: 0.4s;
  }

  &.active {
    & .modal_inner {
      translate: 0 0;
    }
  }

  & nav {
    & ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    & li {
      padding-left: 16px;
      position: relative;
      display: flex;
      align-items: center;

      & a {
        transition: 0.4s;
        font-size: 20px;
        font-weight: bold;
      }
      &:hover {
        & a {
          color: var(--color-green);
        }
      }

      &.current-menu-item {
        & a {
          color: var(--color-green);
        }
      }
    }
  }

  & .modal_inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 30px;
  }

  & .modal_close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #fff;
    box-shadow:
      0px 16px 24px rgba(0, 0, 0, 0.06),
      0px 2px 6px rgba(0, 0, 0, 0.04),
      0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    position: static;
    translate: 0;
  }
}

.modal_menu.modal_inner {
  overflow-y: auto;
}
.modal_menu li.current-menu-item {
  padding-left: 0px;
}
.modal_menu li.current-menu-item::before {
  content: "";
  width: 23px;
  background-color: #a9d944;
  height: 5px;
  flex: 0 0 23px;
  margin-right: 12px;
  display: block;
}
.modal_menu .modal_inner-top {
  justify-content: flex-end;
  padding: 16px;
  margin-bottom: 0px;
}
.modal_menu .modal_inner {
  position: relative;
}
.modal_menu .modal_inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
}

.min_order_amount {
  font-size: 14px;
}

.irs--big.irs-with-grid {
  padding: 0 10px;
}

