.cv-logo img {
  width: 100px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .cv-logo img {
    width: 80px;
  }
}

.cv-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.cv-header {
  background: #0f1115;
  border-bottom: 1px solid #1f2229;
}

.cv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px 20px;
}

.cv-logo {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 22px;
}

.cv-nav {
  display: flex;
  gap: 25px;
}

.cv-mobile-menu a,
.cv-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.cv-header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cv-search {
  background: #1b1e24;
  border: none;
  padding: 8px 10px;
  color: #fff;
}

.cv-hamburger {
  display: none;
  cursor: pointer;
}
.cv-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.cv-hamburger span {
  width: 22px;
  height: 2px;
  background: white;
  display: block;
}

.cv-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #0f1115;
  padding: 40px 30px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 99999;
}

.cv-mobile-menu.active {
  right: 0;
}

.cv-mobile-menu__close {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

.cv-mobile-menu__close .line {
  width: 22px;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.cv-mobile-menu__close .line:first-of-type {
  transform: translateX(-50%) rotate(45deg);
}

.cv-mobile-menu__close .line:last-of-type {
  transform: translateX(-50%) rotate(-45deg);
}

.cv-search-wrapper {
  position: relative;
}

.cv-search-input {
  background: #1b1e24;
  border: none;
  padding: 8px 10px;
  color: #fff;
}

.cv-search-input:focus {
  outline: none;
}

.cv-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #1b1e24;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.cv-search-item {
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.cv-search-item:hover {
  background: #2a2f37;
}

.cv-search-item img {
  max-width: 60px;
  height: auto;
  object-fit: contain;
}

.cv-search-text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.cv-search-price {
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .cv-nav {
    display: none;
  }

  .cv-hamburger {
    display: flex;
    gap: 4px;
  }

  .cv-logo {
    flex: 0 0 80px;
  }

  .cv-search-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .tc-header__inner {
    padding: 12px 20px;
  }
  .tc-header__cta,
  .tc-header__nav {
    display: flex !important;
    flex-flow: row;
  }

  .tc-header__hamburger {
    display: none;
  }

  .tc-header__nav .menu {
    display: flex;
    flex-flow: row;
    gap: 22px;
    align-items: center;
    justify-content: center;
  }
}
