/* Header rework */
.dvt-header-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 24px 0 10px;
  border: 1px solid rgba(202, 167, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1;
}

.dvt-header-select::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-64%) rotate(45deg);
  opacity: 0.8;
  pointer-events: none;
}

.dvt-header-select span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.dvt-header-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.dvt-social-icons > a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(202, 167, 255, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.dvt-social-icons > a:hover {
  color: var(--dvt-text);
  border-color: rgba(202, 167, 255, 0.36);
  background: rgba(139, 61, 255, 0.16);
  transform: translateY(-1px);
}

.dvt-logo-image-link {
  gap: 0;
  max-width: min(180px, 32vw);
}

.dvt-logo-image,
.dvt-logo-inline svg {
  display: block;
  width: min(175px, 30vw);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(0, 220, 255, 0.12)) drop-shadow(0 0 10px rgba(139, 61, 255, 0.10));
}

.dvt-logo-inline svg {
  max-height: 64px;
}

.dvt-header-main-inner {
  min-height: 96px;
  align-items: center;
}

.dvt-header-actions {
  margin-left: auto;
}

.dvt-header-cart-link {
  position: relative;
}

.dvt-header-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border: 2px solid rgba(8, 5, 16, 0.95);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2f6d 0%, #a855f7 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.42);
}

.dvt-header-cart-count[aria-hidden="true"] {
  display: none;
}

.dvt-header-nav-inner .dvt-menu {
  gap: clamp(24px, 4vw, 54px);
}

@media (max-width: 900px) {
  .dvt-header-top-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 7px 0;
  }

  .dvt-header-top-inner p {
    width: 100%;
    text-align: center;
  }

  .dvt-utility-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dvt-header-main-inner {
    min-height: 86px;
  }

  .dvt-logo-image,
  .dvt-logo-inline svg {
    width: min(150px, 42vw);
  }
}

@media (max-width: 720px) {
  .dvt-header-actions .dvt-header-cart-link {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  .dvt-logo-image,
  .dvt-logo-inline svg {
    width: min(118px, 32vw);
  }

  .dvt-header-actions {
    gap: 7px !important;
  }

  .dvt-header-cta {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
  }

  .dvt-header-icon-link {
    width: 38px;
    height: 38px;
  }

  .dvt-header-cart-count {
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .dvt-logo-image,
  .dvt-logo-inline svg {
    width: min(106px, 30vw);
  }

  .dvt-header-cta {
    min-height: 40px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
  }

  .dvt-header-icon-link {
    width: 36px;
    height: 36px;
  }

  .dvt-menu-toggle {
    width: 40px !important;
    height: 40px !important;
  }
}
