.pk-site__header.is-header__mobile {
  padding: 25px 0;
  background: var(--gray);
}

.pk-site__header.is-header__mobile .pk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.is-header__mobile .site-logo {
  max-width: 184px;
}

/* Menu toggle*/
.is-header__mobile .menu-toggle {
  all: unset;
  display: flex;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.is-header__mobile .menu-icon__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.is-header__mobile .menu-icon__wrap > span {
  color: #231f20;
  line-height: normal;
}

.is-header__mobile .menu-toggle {
  display: block;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.is-header__mobile .menu-toggle .hamburger {
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #231f20;
  transition: all 0.3s ease;
}

.is-header__mobile .hamburger::before,
.is-header__mobile .hamburger::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 999px;
  background: #231f20;
  transition: all 0.3s ease;
}

.is-header__mobile .hamburger::before {
  top: -6px;
}
.is-header__mobile .hamburger::after {
  top: 6px;
}

/* Menu is open */
.is-header__mobile .menu-icon__wrap.menu-active .hamburger {
  background: transparent;
}

.is-header__mobile .menu-icon__wrap.menu-active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.is-header__mobile .menu-icon__wrap.menu-active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Menu */
.is-header__mobile .site-menu {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--gray);
  /* display: none; */
  z-index: 10;
}
.is-header__mobile .site-menu .menu-inner {
  height: 100%;
  padding: 20px;
}

.is-header__mobile .menu-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.is-header__mobile .menu-inner .menu-col {
  padding: 30px;
  border-radius: 5px;
  background: var(--white);
}

.is-header__mobile .menu-inner .menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.is-header__mobile .menu-inner .menu li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
}

.is-header__mobile .menu-inner .menu li::after {
  content: '\f46a';
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 28px;
  line-height: normal;
}

/* CTA WRAP */
.is-header__mobile .cta-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.is-header__mobile .cta-wrap .top-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.is-header__mobile .cta-wrap .top-wrap .pk-cart__btn,
.is-header__mobile .cta-wrap .top-wrap .pk-btn__user {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 5px;
  background: var(--midnight);
}

.is-header__mobile .cta-wrap .top-wrap .pk-cart__btn .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  color: var(--midnight);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 25px;
  min-height: 25px;
  border-radius: 999px;
  background: var(--white);
}

.is-header__mobile .cta-wrap .top-wrap .pk-btn__user {
  background: var(--marine);
}
/* Taal switch */
.is-header__mobile .bottom-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

/* ZOEKVELD */
.is-header__mobile .pk-searchbar__wrap {
  width: 100%;
}

.pk-site__header.is-header__mobile .pk-searchbar__wrap form > div {
  padding: 0 !important;
  border-radius: 0 !important;
}

.pk-site__header.is-header__mobile
  .pk-searchbar__wrap
  form
  > div
  input[type='search'] {
  font-size: 16px !important;
  font-weight: 300;
  min-height: 50px;
  position: relative;
  padding: 16px 20px;
  border-radius: 5px;
  border: 1px solid #0724451a;
  background: var(--white);
}

.pk-site__header.is-header__mobile
  .pk-searchbar__wrap
  form
  > div
  input[type='search']::placeholder {
  color: var(--midnight);
  opacity: 0.5;
}

.pk-site__header.is-header__mobile
  .pk-searchbar__wrap
  form
  > div
  button[type='submit'] {
  left: unset;
  top: 8px;
  right: 16px;
}
