#shopline-section-sections--header-group__my-header {
  position: sticky;
  z-index: 99;
  top: 0;
}

.my-header {
  position: relative;
  background-color: var(--color-black-1);
}

.my-header__inner {
  position: relative;
  z-index: 2;
}

.my-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.my-header .my-header__logo {
  display: flex;
  color: #eef4ff;
}

.header__logo-image-black {
  display: none;
}

.my-header__menus {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

.my-header__menu {
  position: relative;
}

.my-header__menu .my-header__menu-trigger {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.my-header__menu .my-header__menu-trigger:hover {
  color: var(--color-main);
}

.my-header__menu .my-header__menu-trigger:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-main);
}

.my-header__menu .tab-trigger {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  padding: 0;
  margin: 0;
  color: #fff;
  height: 100%;
  opacity: 0;
  background: unset;
  border: unset;
}

.my-header__menu .tab-trigger:focus-visible {
  opacity: 1;
}

.my-header__menu .tab-trigger svg {
  transform: rotate(-90deg);
}

.my-header__menu.menu-open .tab-trigger svg {
  transform: rotate(90deg);
}

.my-header__menu-content {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  padding: 40px 0;
  width: 100%;
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.3s ease;
}

.my-header__menu.menu-open .my-header__menu-content {
  display: flex;
  flex-direction: column;
  animation: menuFadeIn 0.3s ease forwards;
}

.my-header__menu-content__mask {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00000033;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.my-header:has(.my-header__menu.menu-open) .my-header__menu-content__mask {
  display: block;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.my-header__menu-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.my-header__menu-product {
  width: calc((100% - 48px) / 4);
}

.my-header__menu-product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.my-header__menu-product__image-wrapper {
  aspect-ratio: 3 / 2;
  padding: 16px;
  background-color: #F9FAFB;
  border-radius: 12px;
  overflow: hidden;
}

.my-header__menu-product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.my-header__menu-product__title {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-black-1);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.my-header__menu-product__desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.my-header__menu-imagetexts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.my-header__menu-imagetext {
  width: calc((100% - 48px) / 4);
}

.my-header__menu-imagetext-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.my-header__menu-imagetext-link:hover .my-header__menu-imagetext__image {
  transform: scale(1.1);
}

.my-header__menu-imagetext-link:hover .my-header__menu-imagetext__title {
  text-decoration: underline;
}

.my-header__menu-imagetext__image-wrapper {
  aspect-ratio: 3 / 2;
  background-color: #F9FAFB;
  border-radius: 12px;
  overflow: hidden;
}

.my-header__menu-imagetext__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.my-header__menu-imagetext__title {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--color-black-1);
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.my-header__menu-imagetext__desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.my-header__menu-texts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.my-header__menu-text {
  display: flex;
}

.my-header__menu-text-link {
  padding: 14px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-black-1);
}

.my-header__menu-text-link:hover {
  background-color: var(--color-black-1-hover);
}

.my-header__search-trigger {
  display: flex;
  padding: 0;
  margin: 0;
  background: unset;
  border: none;
  color: #fff;
}

.my-header__search-trigger:hover {
  color: var(--color-main);
}

.my-header__search-popver {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 686px;
}

theme-my-header.search-open .my-header__search-popver {
  display: block;
}

theme-my-header.search-open .my-header {
  background-color: #fff;
  border-bottom: 1px solid #EAEAEA;
}

theme-my-header.search-open .my-header .my-header__logo {
  color: var(--color-black-1);
}

theme-my-header.search-open .header__logo-image:not(.header__logo-image-black) {
  display: none;
}

theme-my-header.search-open .header__logo-image-black {
  display: block;
}

theme-my-header.search-open .my-header__menus {
  display: none;
}

.search-action-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
}

.search-icon {
  display: flex;
  color: #666;
}

.search-input {
  flex: 1;
  height: 24px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-black-1);
}

.search-input::placeholder {
  color: #999;
}

.search-input:focus-visible {
  outline: none;
}

.search-close-btn {
  display: flex;
  padding: 0;
  margin: 0;
  background: unset;
  border: none;
  color: #666;
}

.search-close-btn:hover {
  color: var(--color-black-1);
}

.search-result-wrap {
  display: none;
  position: relative;
  border-top: 1px solid #eaeaea;
  border-radius: 12px;
  background-color: #fff;
  min-height: 160px;
  max-height: 400px;
  overflow: auto;
  scrollbar-width: thin;
  box-shadow: 0 0 20px 0 rgba(14, 20, 36, 0.12);
}

.search-result-wrap.shown {
  display: block;
}

.search-result-wrap__loading {
  display: none;
  position: absolute;
  z-index: 2;
  inset: 0;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  color: #666;
  background-color: #FFFFFFCC;
}

.search-result-wrap.loading .search-result-wrap__loading {
  display: flex;
}

.search-result-wrap__spinner {
  width: 24px;
  height: 24px;
  transform-origin: center;
  animation: myHeaderSearchSpinner 0.9s linear infinite;
}

@keyframes myHeaderSearchSpinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.search-result-list {
  padding: 12px 0;
}

.my-header-predictive-results__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-header-predictive-results__item {
  margin: 0;
  padding: 0;
}

.my-header-predictive-results__link {
  display: flex;
  gap: 12px;
  padding: 8px 20px;
  color: #191919;
  text-decoration: none;
}

.my-header-predictive-results__link:hover {
  background-color: #0E14240F;
}

.my-header-predictive-results__image-wrap {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f4f5f7;
}

.my-header-predictive-results__image,
.my-header-predictive-results__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-header-predictive-results__image-placeholder {
  width: 100%;
  height: 100%;
}

.my-header-predictive-results__content {
  flex: 1;
  min-width: 0;
}

.my-header-predictive-results__type {
  font-size: 12px;
  line-height: 18px;
  text-transform: capitalize;
  color: #999;
}

.my-header-predictive-results__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-header-predictive-results__empty {
  padding: 16px var(--main-padding) 20px;
  font-size: 14px;
  color: #666;
}

.my-header-search-highlight {
  background-color: #26E3DD33;
}

.my-header__search-menu-trigger {
  display: flex;
  padding: 0;
  margin: 0;
  color: #fff;
  background-color: unset;
  border: unset;
}

.my-header__search-menu-trigger-close {
  display: none;
  padding: 0;
  margin: 0;
  color: #fff;
  background-color: unset;
  border: unset;
}

@media (min-width: 992px) {
  .my-header__search-menu-trigger {
    display: none;
  }

  .my-header__menu .icon-arrow-mb {
    display: none;
  }

  .my-header__menu-head-mb {
    display: none;
  }
}

@media (max-width: 991px) {
  .my-header__wrapper {
    height: 48px;
  }

  .my-header__menus {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 var(--main-padding);
    width: 100%;
    height: calc(100vh - 48px);
    background-color: #fff;
  }

  theme-my-header.menu-drawer-open .my-header__search-trigger,
  theme-my-header.menu-drawer-open .my-header__search-menu-trigger {
    display: none;
  }

  theme-my-header.menu-drawer-open .my-header__menus {
    display: block;
  }

  theme-my-header.menu-drawer-open .my-header__search-menu-trigger-close {
    display: flex;
  }

  .my-header__menu .my-header__menu-trigger {
    color: var(--color-black-1);
    border-bottom: 1px solid #EAEAEA;
  }

  .my-header__menu .my-header__menu-trigger:hover {
    color: var(--color-black-1);
  }

  .my-header__menu .my-header__menu-trigger:hover::after {
    display: none;
  }

  .my-header__menu .my-header__menu-trigger .icon-arrow-mb {
    color: #666;
    transform: rotate(180deg);
  }

  .my-header__logo svg,
  .my-header__logo img {
    width: auto;
    height: 20px;
  }

  .my-header__right {
    display: flex;
    gap: 20px;
  }

  .my-header__search-popver {
    width: 100%;
    background-color: #fff;
  }

  .search-action-wrap {
    height: 48px;
    padding: 0 var(--main-padding);
  }

  .search-result-wrap {
    max-height: calc(100vh - 120px);
    border-radius: 0;
  }

  .search-result-list {
    padding: 20px 0 12px;
  }

  .search-result-wrap__spinner {
    width: 32px;
    height: 32px;
  }

  .my-header__menu-content {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
  }

  .my-header__menu-head-mb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px var(--main-padding);
    border-bottom: 1px solid #EAEAEA;
  }

  .my-header__menu-head-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .my-header__menu-head-mb button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #666;
    background-color: unset;
    border: none;
  }

  .my-header__menu-head-title {
    color: var(--color-black-1);
    font-size: 14px;
    line-height: 20px;
  }

  .my-header__valki-main-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
  }

  .my-header__valki-main-container:has(.my-header__menu-texts) {
    padding: 0;
  }

  .my-header__menu-products,
  .my-header__menu-imagetexts {
    justify-content: flex-start;
    gap: 16px 8px;
    height: fit-content;
  }

  .my-header__menu-product,
  .my-header__menu-imagetext {
    width: calc((100% - 8px) / 2);
  }

  .my-header__menu-product__title,
  .my-header__menu-imagetext__title {
    margin-top: 8px;
  }

  .my-header__menu-product__desc,
  .my-header__menu-imagetext__desc {
    font-size: 12px;
  }

  .my-header__menu-texts {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .my-header__menu-text {
    border-bottom: 1px solid #EAEAEA;
  }

  .my-header__menu-text-link {
    padding: 16px 0;
  }

  .my-header__menu-text-link:hover {
    background-color: unset;
  }

  .my-header__menu .tab-trigger {
    display: none;
  }
}