/* Header top bar extracted from checkout.html inline styles */
.top-nav-bar {
background: radial-gradient(1200px 200px at 200px 0, rgba(122, 94, 255, 0.35), transparent 40%), radial-gradient(900px 180px at 260px 0, rgba(36, 154, 255, 0.35), transparent 42%), linear-gradient(90deg, #160b43 0%, #1e0e4f 35%, #1b0c43 100%);
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
.top-nav-bar .top-menu {
  list-style: none;
  display: flex;
  gap: 3px;
  margin: -40px;
  padding: 0;
}
.top-nav-bar .top-menu a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.top-nav-bar .top-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ff6aa8;
  transition: width 0.25s ease;
}
.top-nav-bar .top-menu a:hover,
.top-nav-bar .top-menu a.active {
  color: #ff6aa8;
}
.top-nav-bar .top-menu a:hover::after,
.top-nav-bar .top-menu a.active::after {
  width: 100%;
}

.email-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  margin-right: 20px;
}
.email-pill .icon {
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5aa5, #ff7a7a);
  color: #fff;
  
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) inset;
}
.email-pill a { color: #fff; font-weight: 600; font-size: 14px; }

.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(220% 120% at 50% -20%, rgba(167, 80, 255, 0.3), transparent 60%);
}
.header-social a:hover { border-color: #fff; color: #cfe1ff; }

@media (max-width: 991.98px) {
  .top-nav-bar { padding: 12px 0; }
  .top-nav-bar .top-menu { display: none; }
  /* Mobile layout: email + social stacked on the left, menu toggle on the right */
  .top-nav-bar .row.align-items-center {
    position: relative;
    align-items: flex-start;
  }

  /* Menu icon fixed on the right, vertically centered */
  .top-nav-bar .col-auto.d-lg-none {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }

  /* Email + social block on the left, stacked */
  .top-nav-bar .col-lg-3,
  .top-nav-bar .col-lg-2 {
    max-width: 260px;
    flex: 0 0 100%;
  }

  .top-nav-bar .col-lg-3 {
    margin-bottom: 6px;
  }

  /* Extra top space for email and social on mobile */
  .top-nav-bar .email-pill,
  .top-nav-bar .header-social {
    margin-top: 8px;
  }
}

/* Mobile offcanvas menu color customization */
.vs-menu-wrapper .mobile-logo {
 background: linear-gradient(135deg, #0e1631 0%, #040815 30%, #101836 100%);
}

.vs-menu-wrapper .vs-menu-area {
  background: linear-gradient(135deg, #0e1631 0%, #040815 30%, #101836 100%);
  border-left: 4px solid #0e1631;
}

.vs-menu-wrapper .vs-menu-toggle {
  color: #ffffff;
}

.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: transparent;
  color: #ffffff;
}

/* Mobile menu link hover/active */
.vs-mobile-menu ul li a {
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}
.vs-mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ff6aa8;
  transition: width 0.25s ease;
}
.vs-mobile-menu ul li a:hover,
.vs-mobile-menu ul li a.active {
  color: #ff6aa8;
}
.vs-mobile-menu ul li a:hover::after,
.vs-mobile-menu ul li a.active::after {
  width: 100%;
}
