.site-header2 {
  padding: 10px 40px;
}

.site-header2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border: 1px solid #ddd;
  border-radius: 50px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-header2-logo img {
  height: 40px;
  width: auto;
}

.site-header2-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header2-toggle .icon-close {
  display: none;
}

.site-header2-toggle.is-active .icon-menu {
  display: none;
}

.site-header2-toggle.is-active .icon-close {
  display: block;
}

.site-header2 ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header2 ul li a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.site-header2 .site-header2-search {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header2 .site-header2-search-input {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 10px 46px 10px 18px;
  font-size: 14px;
  outline: none;
  min-width: 180px;
  width: 100%;
}

.site-header2 .site-header2-search-input:focus {
  border-color: #4caf50;
}

.site-header2 .site-header2-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #4caf50;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.site-header2-banner {
  display: block;
}

.site-header2-banner-img {
  display: block;
  width: calc(100% - 80px);
  height: auto;
  object-fit: cover;
  margin: 24px 40px 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .site-header2 {
    padding: 10px 16px;
  }

  .site-header2-inner {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .site-header2-logo img {
    height: 24px;
  }

  .site-header2-inner {
    flex-wrap: wrap;
  }

  .site-header2-toggle {
    display: flex;
  }

  .site-header2 .site-header2-search {
    order: 1;
    width: 100%;
    margin-top: 16px;
  }

  .site-header2 ul {
    display: none;
    order: 2;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }

  .site-header2 ul.is-open {
    display: flex;
  }

  .site-header2 ul li:not(:last-child) a {
    border-bottom: 1px solid #eee;
  }

  .site-header2 ul li a {
    display: block;
    padding: 14px 18px;
  }

  .site-header2 .site-header2-search-input {
    min-width: 0;
    flex: 1;
    padding: 8px 40px 8px 14px;
  }

  .site-header2 .site-header2-search-btn {
    width: 28px;
    height: 28px;
    right: 3px;
  }

  .site-header2-banner-img {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
  }
}