/* Top-nav header — pixel match for https://top-nav.replit.app/
 * Font: DM Sans only (layouts load the Google Fonts stylesheet). */
.tn-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  font-family: "DM Sans", sans-serif !important;
  transition: box-shadow 0.3s ease;
  overflow: visible;
}

/* Stick to top only after scroll */
.tn-header.is-scrolled {
  position: fixed;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Prevent layout jump when header leaves document flow */
.tn-header-spacer {
  display: none;
  height: 64px;
  width: 100%;
  pointer-events: none;
}

.tn-header-spacer.is-active {
  display: block;
}

/* Force DM Sans on all header + drawer UI (overrides Product Sans / Poppins / etc.) */
.tn-header,
.tn-header *,
.tn-header *::before,
.tn-header *::after,
.tn-header__drawer,
.tn-header__drawer *,
.tn-header__drawer *::before,
.tn-header__drawer *::after {
  font-family: "DM Sans", sans-serif !important;
}

.tn-header *,
.tn-header *::before,
.tn-header *::after {
  box-sizing: border-box;
}

.tn-header a {
  text-decoration: none;
  color: inherit;
}

.tn-header button {
  font-family: "DM Sans", sans-serif !important;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  /* Do not inherit page/body color (UPM dark pages set light text on body). */
}

.tn-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tn-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 64px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: visible;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .tn-header {
    overflow-x: clip;
  }

  .tn-header__inner {
    gap: 4px;
    padding: 0 10px;
    overflow: hidden;
  }

  .tn-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0;
  }

  .tn-header__menu-wrap--start {
    flex-shrink: 0;
  }

  .tn-header__logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .tn-header__logo img {
    height: 26px;
    max-width: min(120px, 34vw);
  }

  .tn-header__actions {
    gap: 0;
    flex-shrink: 0;
  }

  .tn-header__icon-group {
    gap: 0;
    min-width: 0;
  }

  .tn-header__icon-btn {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
  }

  .tn-header__icon-btn svg {
    height: 17px;
    width: 17px;
  }

  .tn-header__menu-btn {
    height: 32px;
    width: 32px;
  }

  .tn-header__menu-btn svg {
    height: 22px;
    width: 22px;
  }

  .tn-header__shortlist-count,
  .tn-header .shortlist-count,
  .tn-header .cart-count {
    top: 0;
    right: 0;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    font-size: 9px;
    line-height: 14px;
  }
}

/* Very narrow phones: keep essentials; support is also in the drawer */
@media (max-width: 360px) {
  .tn-header__phone {
    display: none;
  }

  .tn-header__logo img {
    max-width: min(100px, 30vw);
    height: 24px;
  }
}

@media (min-width: 640px) {
  .tn-header__inner {
    padding: 0 24px;
  }
}

.tn-header__brand {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  z-index: 2;
  min-width: 0;
}

.tn-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.tn-header__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.tn-header__nav {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  align-items: center;
  gap: 32px;
  height: 64px;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

@media (min-width: 768px) {
  .tn-header__nav {
    display: flex;
  }
}

.tn-header.is-scrolled .tn-header__nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
}

.tn-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
}

.tn-header__nav-btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  color: #475569;
  transition: color 0.15s ease;
}

.tn-header__nav-btn:hover,
.tn-header__nav-item.is-open .tn-header__nav-btn {
  color: #0f172a;
}

.tn-header__panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.tn-header__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tn-header__panel-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.tn-header__panel--premium .tn-header__panel-card { width: 1000px; max-width: 95vw; }
.tn-header__panel--register .tn-header__panel-card { width: 720px; max-width: 95vw; }
.tn-header__panel--naming .tn-header__panel-card { width: 720px; max-width: 95vw; }
.tn-header__panel--partners .tn-header__panel-card { width: 760px; max-width: 95vw; }
.tn-header__panel--about .tn-header__panel-card { width: 600px; max-width: 95vw; }

.tn-header__grid {
  display: grid;
}

.tn-header__grid--premium { grid-template-columns: 380px 1fr 1fr; }
.tn-header__grid--register { grid-template-columns: 380px 340px; }
.tn-header__grid--naming { grid-template-columns: 380px 1fr; }
.tn-header__grid--partners { grid-template-columns: 1fr 1fr; }
.tn-header__grid--about { grid-template-columns: 380px 220px; }

@media (max-width: 900px) {
  .tn-header__grid--premium,
  .tn-header__grid--register,
  .tn-header__grid--naming,
  .tn-header__grid--partners,
  .tn-header__grid--about {
    grid-template-columns: 1fr;
  }
}

.tn-header__col {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}

.tn-header__col + .tn-header__col {
  border-left: 1px solid #f1f5f9;
}

@media (max-width: 900px) {
  .tn-header__col + .tn-header__col {
    border-left: none;
    border-top: 1px solid #f1f5f9;
  }
}

.tn-header__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  transition: background-color 0.15s ease;
}

.tn-header__feature:hover {
  background: #f8fafc;
}

.tn-header__feature-icon {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.tn-header__feature-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  line-height: 1.25;
}

.tn-header__feature-title svg {
  height: 16px;
  width: 16px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.tn-header__feature:hover .tn-header__feature-title svg {
  transform: translateX(2px);
}

.tn-header__feature-desc {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.625;
  color: #64748b;
}

.tn-header__col-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}

.tn-header__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tn-header__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #475569;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.tn-header__link:hover {
  color: #4c69fb;
}

.tn-header__link--about:hover {
  color: #0f172a;
}

.tn-header__link svg {
  height: 16px;
  width: 16px;
  color: #94a3b8;
  flex-shrink: 0;
}

.tn-header__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: #eef0fc;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #4c69fb;
  line-height: 1.4;
}

.tn-header__badge--new {
  background: #dbeafe;
  color: #2563eb;
}

.tn-header__badge--atompay {
  height: 19px;
  background: #2a3c8f;
  padding: 0 10px;
}

.tn-header__badge--atompay img {
  height: 10px;
  width: auto;
  display: block;
}

.tn-header__search {
  display: none;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: visible;
}

/* Mobile search expands under the icon bar when toggled */
@media (max-width: 767px) {
  .tn-header.is-mobile-search-open .tn-header__search {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 8px 16px 12px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    z-index: 40;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .tn-header--dark.is-mobile-search-open .tn-header__search,
  body.upm .tn-header.is-mobile-search-open .tn-header__search,
  body.upm-layout-product-page-full .tn-header.is-mobile-search-open .tn-header__search {
    background: #0a0f1c;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
}

@media (min-width: 768px) {
  .tn-header__search {
    display: flex;
  }

  .tn-header.is-mobile-search-open .tn-header__search {
    position: static;
    padding: 0 12px;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }
}

.tn-header.is-scrolled .tn-header__search {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tn-header__search-wrap {
  position: relative;
  width: 100%;
  max-width: 42rem;
  min-width: 0;
  height: 48px;
  overflow: visible;
}

.tn-header__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  color: #64748b;
  pointer-events: none;
  z-index: 2;
}

.tn-header__search-input {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  padding: 0 108px 0 40px !important;
  font-size: 14px !important;
  line-height: 48px;
  color: #0f172a !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.tn-header__search-input::placeholder {
  color: #94a3b8;
}

.tn-header__search-input:focus {
  border-color: #60a5fa !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3) !important;
}

.tn-header button.tn-header__search-btn,
.tn-header__search-btn {
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 3;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 0 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap;
  color: #fff !important;
  background: #4c69fb !important;
  background-image: none !important;
  box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.35) !important;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.tn-header button.tn-header__search-btn:hover,
.tn-header__search-btn:hover {
  background: #3b5ce6 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.03) !important;
  box-shadow: 0 12px 20px -4px rgba(59, 130, 246, 0.4) !important;
}

.tn-header button.tn-header__search-btn:active,
.tn-header__search-btn:active {
  transform: translateY(-50%) scale(0.98) !important;
}

.tn-header button.tn-header__search-btn:focus,
.tn-header__search-btn:focus {
  outline: none !important;
  color: #fff !important;
}

.tn-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  z-index: 5;
  position: relative;
}

@media (min-width: 640px) {
  .tn-header__actions {
    gap: 8px;
  }
}

.tn-header__icon-group {
  display: flex;
  align-items: center;
  gap: 0;
  color: #475569;
}

@media (min-width: 640px) {
  .tn-header__icon-group {
    gap: 4px;
  }
}

.tn-header__mobile-search-btn {
  display: inline-flex;
}

@media (min-width: 768px) {
  .tn-header__mobile-search-btn {
    display: none !important;
  }
}

.tn-header__dropdown {
  position: relative;
}

.tn-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 6px;
  color: #475569;
  transition: color 0.15s ease, background-color 0.15s ease;
  position: relative;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer;
}

.tn-header__icon-btn:hover,
.tn-header__dropdown.is-open > .tn-header__icon-btn {
  color: #0f172a;
  background: #f1f5f9 !important;
}

.tn-header__icon-btn svg {
  height: 18px;
  width: 18px;
}

.tn-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 80;
}

.tn-header__dropdown.is-open > .tn-header__dropdown-menu:not(.d-none) {
  display: block;
}

.tn-header__dropdown-menu.d-none,
.tn-header__dropdown-menu[style*="display:none"],
.tn-header__dropdown-menu[style*="display: none"] {
  display: none !important;
}

.tn-header__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #334155 !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tn-header__dropdown-item:hover {
  background: #f8fafc;
  color: #4c69fb !important;
}

.tn-header__shortlist-count,
.tn-header .shortlist-count,
.tn-header .cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 9999px;
  background: #4c69fb;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.tn-header__menu-wrap {
  display: flex;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mobile: hamburger stays left of logo. Desktop: use right-side hamburger. */
.tn-header__menu-wrap--start {
  display: flex;
}

.tn-header__menu-wrap--end {
  display: none;
}

@media (min-width: 768px) {
  .tn-header__menu-wrap--start {
    display: none;
  }

  .tn-header__menu-wrap--end {
    display: flex;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .tn-header.is-scrolled .tn-header__menu-wrap--end {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.tn-header__menu-btn svg {
  height: 24px;
  width: 24px;
}

/* Mobile drawer */
.tn-header__drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 70;
}

.tn-header__drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.tn-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  box-shadow: -20px 0 40px rgba(15, 23, 42, 0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tn-header__drawer.is-open {
  transform: translateX(0);
}

.tn-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.tn-header__drawer-head img {
  height: 28px;
  width: auto;
}

.tn-header__drawer-body {
  overflow-y: auto;
  padding: 8px 0 32px;
  flex: 1;
}

.tn-header__drawer-section > summary,
.tn-header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  list-style: none;
  cursor: pointer;
}

.tn-header__drawer-section > summary::-webkit-details-marker {
  display: none;
}

.tn-header__drawer-section > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.tn-header__drawer-section[open] > summary::after {
  transform: rotate(-135deg);
}

.tn-header__drawer-sub {
  padding: 0 12px 12px;
}

.tn-header__drawer-sub a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.tn-header__drawer-sub a .tn-header__badge {
  margin-left: 0;
  flex-shrink: 0;
}

.tn-header__drawer-sub a:hover {
  background: #f8fafc;
  color: #4c69fb;
}

.tn-header__drawer-sub .tn-header__drawer-subhead {
  padding: 12px 12px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.tn-header-open {
  overflow: hidden;
}

/* Offset page content under fixed header on home */
body.has-tn-header .header-redesign,
body.has-tn-header .notify-top,
body.has-tn-header .top-banner {
  display: none !important;
}

/* Slim /name landing mode: logo + right actions only */
.tn-header--minimal .tn-header__nav,
.tn-header--minimal .tn-header__panel,
.tn-header--minimal .tn-header__search,
.tn-header--minimal .tn-header__mobile-search-btn {
  display: none !important;
}

.tn-header--minimal .tn-header__icon-group {
  display: flex;
}

.tn-header--minimal .tn-header__menu-wrap--start {
  display: flex;
}

.tn-header--minimal .tn-header__menu-wrap--end {
  display: none;
}

.tn-header--minimal.is-scrolled {
  position: fixed;
}

/* UPM-only dark header bar (not all darkmode /name pages).
   Mega-menu panels + dropdowns stay white with dark text. */
body.upm .tn-header,
body.upm-layout-product-page-full .tn-header,
.tn-header--dark {
  background: #0a0f1c;
  border-bottom: 1px solid #353535;
  color: #fff;
}

body.upm .tn-header.is-scrolled,
body.upm-layout-product-page-full .tn-header.is-scrolled,
.tn-header--dark.is-scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.35);
}

body.upm .tn-header__nav-btn,
body.upm-layout-product-page-full .tn-header__nav-btn,
.tn-header--dark .tn-header__nav-btn {
  color: rgba(255, 255, 255, 0.85);
}

body.upm .tn-header__nav-btn:hover,
body.upm .tn-header__nav-item.is-open .tn-header__nav-btn,
body.upm-layout-product-page-full .tn-header__nav-btn:hover,
body.upm-layout-product-page-full .tn-header__nav-item.is-open .tn-header__nav-btn,
.tn-header--dark .tn-header__nav-btn:hover,
.tn-header--dark .tn-header__nav-item.is-open .tn-header__nav-btn {
  color: #fff;
}

body.upm .tn-header__icon-group,
body.upm .tn-header__menu-btn,
body.upm-layout-product-page-full .tn-header__icon-group,
body.upm-layout-product-page-full .tn-header__icon-btn,
body.upm-layout-product-page-full .tn-header__menu-btn,
.tn-header--dark .tn-header__icon-group,
.tn-header--dark .tn-header__icon-btn,
.tn-header--dark .tn-header__menu-btn {
  color: rgba(255, 255, 255, 0.9);
}

body.upm .tn-header__dropdown.is-open > .tn-header__icon-btn,
body.upm-layout-product-page-full .tn-header__icon-btn:hover,
body.upm-layout-product-page-full .tn-header__dropdown.is-open > .tn-header__icon-btn,
.tn-header--dark .tn-header__icon-btn:hover,
.tn-header--dark .tn-header__dropdown.is-open > .tn-header__icon-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.upm .tn-header__search-input,
body.upm-layout-product-page-full .tn-header__search-input,
.tn-header--dark .tn-header__search-input {
  border-color: #334155 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  color: #f8fafc !important;
}

body.upm .tn-header__search-input::placeholder,
body.upm-layout-product-page-full .tn-header__search-input::placeholder,
.tn-header--dark .tn-header__search-input::placeholder {
  color: #94a3b8;
}

body.upm .tn-header__search-input:focus,
body.upm-layout-product-page-full .tn-header__search-input:focus,
.tn-header--dark .tn-header__search-input:focus {
  border-color: #60a5fa !important;
  background: #0f172a !important;
}

body.upm .tn-header__search-icon,
body.upm-layout-product-page-full .tn-header__search-icon,
.tn-header--dark .tn-header__search-icon {
  color: #94a3b8;
}

/* Keep mega menus / account dropdowns readable on white cards */
body.upm .tn-header__panel,
body.upm .tn-header__panel-card,
body.upm .tn-header__dropdown-menu,
body.upm-layout-product-page-full .tn-header__panel,
body.upm-layout-product-page-full .tn-header__panel-card,
body.upm-layout-product-page-full .tn-header__dropdown-menu,
.tn-header--dark .tn-header__panel,
.tn-header--dark .tn-header__panel-card,
.tn-header--dark .tn-header__dropdown-menu {
  color: #0f172a;
}

body.upm .tn-header__feature-title,
body.upm .tn-header__col-title,
body.upm .tn-header__dropdown-item,
body.upm-layout-product-page-full .tn-header__feature-title,
body.upm-layout-product-page-full .tn-header__col-title,
body.upm-layout-product-page-full .tn-header__dropdown-item,
.tn-header--dark .tn-header__feature-title,
.tn-header--dark .tn-header__col-title,
.tn-header--dark .tn-header__dropdown-item {
  color: #0f172a !important;
}

body.upm .tn-header__feature-desc,
body.upm .tn-header__link,
body.upm-layout-product-page-full .tn-header__feature-desc,
body.upm-layout-product-page-full .tn-header__link,
.tn-header--dark .tn-header__feature-desc,
.tn-header--dark .tn-header__link {
  color: #475569 !important;
}

body.upm .tn-header__link:hover,
body.upm-layout-product-page-full .tn-header__link:hover,
.tn-header--dark .tn-header__link:hover {
  color: #4c69fb !important;
}

body.upm .tn-header__link svg,
body.upm-layout-product-page-full .tn-header__link svg,
.tn-header--dark .tn-header__link svg {
  color: #94a3b8 !important;
}

body.upm .tn-header__feature-title svg,
body.upm-layout-product-page-full .tn-header__feature-title svg,
.tn-header--dark .tn-header__feature-title svg {
  color: #94a3b8 !important;
}

body.upm .tn-header__dropdown-item:hover,
body.upm-layout-product-page-full .tn-header__dropdown-item:hover,
.tn-header--dark .tn-header__dropdown-item:hover {
  color: #4c69fb !important;
}
