
@media (max-width: 1320px) {
  .custom-header__left,
  .custom-header__right,
  .custom-header__cta-search,
  .custom-header__divider {
    display: none !important;
  }

  .mobile-header {
    display: block;
    width: 100%;
    background: var(--header-bg-color);
  }

  .mobile-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
  }

  .mobile-header__logo img {
    width: auto;
    height: 62px;
  }
  
.mobile-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;    
  height: 24px;   
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
  margin-bottom:20px;
  margin-right:10px;
}

.mobile-header__toggle .bar {
  display: block;
  width: 100%;
  height: 3px;                   
  background-color: var(--white-text);
  border-radius: 1.5px;           
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-header__toggle.open .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.mobile-header__toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.mobile-header__toggle.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

  .mobile-header__menu {
    display: none;
    padding: 0 16px 16px;
  }

  .mobile-header__menu.open {
    display: block;
  }

  .mobile-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-header__nav-item {
    border-bottom: 1px solid white;
  }

  .mobile-header__nav-item:last-child {
    border-bottom: none;
  }

  .mobile-header__nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: var(--white-text);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.mobile-header__dropdown {
  max-height: 0;              
  opacity: 0;                   
  padding: 0 0;              
  overflow: hidden;            
  transition:
    max-height 0.7s ease-in-out,
    opacity    0.7s ease-in-out,
    padding    0.7s ease-in-out;
}


.mobile-header__dropdown.open {
  max-height: 500px;
  opacity: 1;
  padding: 8px 0;
}
  .mobile-header__dropdown-items {
    padding: 8px 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-header__dropdown-items a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--white-text);
    text-decoration: none;
  }

  .mobile-header__dropdown img.dropdown-logo {
    display: block;
    margin: 12px auto;
    width: 40px;
    height: auto;
  }
  .mobile-header__cta-search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  .mobile-header__cta-button {
    background: transparent;
    border: 1px solid var(--white-border);
    color: var(--white-text);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: color 1s ease;
    z-index: 1;
    position: relative;
    overflow: hidden;
  }

  .mobile-header__search {
    position: relative;
    width: 100%;
    max-width: 220px;
  }

  .mobile-header__search input {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--white-border);
    color: var(--white-text);
    padding: 12px 0;
    font-size: 1rem;
    width: 100%;
    outline: none;
    font-weight: 400;
  }

  .mobile-header__search input::placeholder {
    color: var(--white-text);
    font-weight: 400;
  }

  .mobile-header__search input:focus {
    border-bottom-color: var(--white-text);
  }

  .mobile-header__search img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  /* center logo */

  .logo-hover-image {
    margin-left: 0;
  }

  .custom-footer__logo-square {
    width: auto;
    height: auto;
    margin: 0;
  }
}