/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES AND RESPONSIVE SCALE */
/*---------------------------------------------------------------------------------------------------------------------------------------*/
:root {
  --top-bar-H: clamp(55px, 5rem, 8rem);
  /* starts growing as soon as 1rem > 11px */
}

/******************************************
  TYPE-SPECIFIC COLOR DEFINITIONS
******************************************/
/* early‑hydration state switches -----------------------------------------*/
.logged-hide,
.side-auth-logged-hide {
  display: flex !important;
}

.logged-show,
.side-auth-logged-show {
  display: none !important;
}

html.logged .logged-hide,
html.logged .side-auth-logged-hide {
  display: none !important;
}

html.logged .logged-show,
html.logged .side-auth-logged-show {
  display: flex !important;
}

/* keep dropdown hidden when not logged */
html:not(.logged) .account-dropdown {
  display: none !important;
}




/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* TOP BAR */
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  width: 100%;
  min-height: var(--top-bar-H);
  margin: 0;
  box-sizing: border-box;
  overflow-y: hidden;
  overflow-x: auto !important;
  background: var(--main-background-color);
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  align-self: stretch;
  box-sizing: border-box;
}

.top-bar .logo-container {
  font-size: var(--font-size-28px);
  padding: .5rem 2rem;
}


@media (max-width:1600px) {
  .top-bar {
    grid-template-columns: auto 1fr 1fr;
  }

  .top-bar .logo-container {
    padding: .5rem 0 .5rem 2rem
  }
}

@media (max-width:1150px) {
  .top-bar {
    overflow-y: visible !important;
    overflow-x: auto !important;
    grid-template-columns: 1fr auto 1fr;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* logo
/*---------------------------------------------------------------------------------------------------------------------------------------*/
.top-bar .logo-container {
  font-size: var(--font-size-28px);
}


.top-bar .logo-container:hover {
  opacity: 0.8;
}

/*──────────── Fallback for browsers without text-box trimming ────────────*/
@supports not (text-box-trim: trim-both) {

  .top-bar .logo-container .site-name .navsitename1,
  .top-bar .logo-container .site-name .navsitename2 {
    line-height: .85em;
    height: .85em;
  }
}




@media (max-width: 1150px) {

  .top-bar>.logo-container {
    justify-self: center;
  }

  .top-bar .logo-container {
    width: 100%;
    gap: 0.15rem;
    padding: 0;
  }

}



@media (max-width: 825px) {

  .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: none;
    min-height: var(--top-bar-H);
    z-index: 95000;
  }

  .mobile-hamburger-menu-icon {
    order: 1;
    margin-right: 1rem;
  }

  .top-bar .logo-container {
    order: 2;
    display: flex;
    flex-direction: row;
    max-width: none;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    margin: 0;
  }

  .top-bar .site-name {
    font-size: var(--font-size-24px);
  }

  .top-bar-right {
    order: 3;
    margin-left: auto;
  }
}



@media (max-width: 600px) {
  .top-bar {
    overflow-x: auto;
    width: 100vw;
  }

  .top-bar .site-name {
    font-size: var(--font-size-22px);
  }
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* top-bar-right
/*---------------------------------------------------------------------------------------------------------------------------------------*/



.nav-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: clamp(1.5rem, 1.5rem + 0.957vw, 2.5rem)
    /* 1150 to 600 2.5rem to 1.5rem */
}

.nav-icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-21px);
  color: var(--white-color-1);
  font-size: 1rem;
  font-family: var(--identity-font);
  font-weight: 500;
  white-space: nowrap;
}



@media (max-width: 600px) {
  .nav-icon {
    font-size: var(--font-size-21px);
  }
}

.nav-icon svg {
  font-size: var(--font-size-22px);
  fill: #ffffff;
  width: auto;
  height: 1em
}

/* Search Icon Sizing */
.search-nav-icon svg {
  width: auto;
  height: 1em
}

/* Settings Icon Sizing */
.settings-nav-icon svg {
  width: auto;
  height: 1em;
}

.tripNav-settings-container {
  display: none;
}

.tripNav-settings-container svg {
  width: auto;
  height: 1em
}

@media (max-width: 1150px) {
  .tripNav-settings-container {
    display: inline-flex;
  }
}


@media (hover: hover) and (pointer: fine) {
  .login-nav-icon:hover svg path {
    fill: url("#navbarThemeGradient1") !important;
  }


  .search-nav-icon:hover svg path {
    fill: url("#navbarThemeGradient3") !important;
  }

  .settings-nav-icon:hover svg path {
    fill: url("#navbarThemeGradient4") !important;
  }

  .tripNav-settings-container:hover svg path {
    fill: url("#navbarThemeGradient5") !important;
  }

}

/*---------------------------------------------------------------------------------------------------------------------------------------*/


.tripNav-settings-container span {
  display: none;
  color: var(--white-color-1);
  font-size: 1rem;
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  line-height: 1rem;
  margin-right: 0.25rem;
  text-align: left;
}


.signup-nav-icon {
  border-radius: 4px;
  padding: .65rem 1.25rem;
  font-size: var(--font-size-14px);
  background: linear-gradient(to right, var(--site-start-color),
      var(--site-start-color));
}

@media (hover: hover) and (pointer: fine) {
  .signup-nav-icon:hover {
    background: linear-gradient(to right, var(--site-start-color),
        var(--site-end-color));
  }
}

.account-nav-icon span,
.login-nav-icon span,
.signup-nav-icon span {
  font-size: var(--font-size-14px);
  margin-right: .5em;
}

@media (max-width: 1600px) {
  .logged-hide.signup-nav-icon {
    display: none !important;

  }
}

@media (max-width: 1150px) {

  .account-nav-icon span,
  .login-nav-icon span,
  .signup-nav-icon span {
    display: none;

  }
}

@media (max-width:1600px) {
  .account-nav-icon span {
    display: none;
  }
}


@media (hover: hover) and (pointer: fine) {
  .nav-icon.login-nav-icon:hover {
    background: linear-gradient(to right, var(--site-end-color),
        var(--site-end-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

}




/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* account-nav dropdown
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.account-nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--font-size-14px);
  font-family: var(--identity-font);
  font-weight: 500;
  color: var(--white-color-1);
  cursor: pointer;
  white-space: nowrap;
  height: 100%;
}

.account-nav-icon span {
  margin-right: .5em;
}

.account-nav-icon svg {
  width: auto;
  height: 1em;
}

@media (hover: hover) and (pointer: fine) {

  .account-nav-icon:hover,
  .account-nav-icon.locked {
    background: linear-gradient(to right, var(--site-end-color), var(--site-start-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .account-nav-icon:hover svg path,
  .account-nav-icon.locked svg path {
    fill: url(#navbarThemeGradient2) !important;
  }
}


/* dropdown */
.account-dropdown {
  position: fixed;
  display: flex;
  flex-direction: column;
  min-width: 11rem;
  max-width: 90vw;
  background-color: var(--section-dark-background-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .4) !important;
  z-index: 99560;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
  border-bottom: 0;
  background-image: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
}

.account-dropdown.open {
  opacity: 1;
  pointer-events: auto;
}

.account-dd-link {
  display: block;
  padding: 1rem 2rem;
  font-size: var(--font-size-14px);
  font-family: var(--identity-font);
  font-weight: 400;
  color: var(--white-color-1);
  text-decoration: none;
  border-bottom: 0;
  white-space: nowrap;
}

.account-dd-link:last-child {
  background-image: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
}

/* ► Sign-out arrow icon */
.account-dd-link svg {
  width: auto;
  height: 1.15em;
  margin-left: .75em;
  flex-shrink: 0;
}

.account-logout {
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {

  .account-dd-link:hover,
  .account-dd-link:focus {
    background-color: #2e343b;
  }
}




/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* MAIN NAV */
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 100%;

}

@media (max-width: 1150px) {
  .main-nav {
    position: absolute;
    width: 100%;
    z-index: 90000;
  }
}


.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-nav .wrapper ul {
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.main-nav .wrapper .nav-links {
  display: flex;
  text-align: center;
  justify-content: center;
  height: 100%;
  text-transform: capitalize;

}

.sub-menu {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-links>li>a,
.sub-menu>a {
  letter-spacing: var(--letter-spacing);
  font-weight: var(--font-weight7);
  margin: 0 clamp(0.455rem, -0.213rem + 0.638vw, 1.273rem)
    /* 2560 to 1150 & 14 to 5 --*/
}



.nav-link {
  display: block;
  font-family: var(--identity-font);
  color: var(--white-color-1);
  text-decoration: none;
  padding: 8px 15px;
  font-size: var(--font-size-14px);
  letter-spacing: 0px;
  position: relative;
}

.nav-link:hover {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  transition: width 0.5s ease;
}

.nav-links>li.sub-menu.locked>a::after {
  width: 80%;
}

.nav-links>li.sub-menu.locked>a {
  color: var(--white-color-1);
}

@media (max-width: 1600px) {
  .nav-links>li:first-child {
    display: none;
  }
}


@media (max-width: 1150px) {
  .main-nav {
    position: absolute;
    width: 100%;
    z-index: 90000;
  }


  .main-nav .wrapper .nav-links {
    width: 100%;
  }


  .nav-link {
    font-size: var(--font-size-15px);
  }
}







.icon-inline {
  display: inline-flex;
  align-items: center;
  color: var(--white-color-1);
  text-decoration: none;
}

.icon-inline svg {
  width: var(--font-size-18px);
  height: var(--font-size-18px);
  margin-right: 0.5rem;
}

.icon-inline:hover svg path {
  fill: url("#navbarThemeGradient") !important;
  color: var(--white-color-1) !important;
}

.icon-inline span {
  align-items: center;
}

/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* MEGA MENU BASE */
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--section-dark-background-color);
  z-index: 94000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100vw;
  max-height: clamp(75vh, calc(100vh - 300px), calc(100vh - var(--top-bar-H)));
  overflow-y: auto;
  overscroll-behavior: contain;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  border-bottom: 1px solid transparent;
}

@media (max-width: 1150px) {
  .mega-menu {
    left: 0;
    transform: translateX(-50%);
  }
}


.games-menu,
.hubs-menu {
  background-image: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  background-repeat: no-repeat;
  background-position: bottom -1px left;
  background-size: 100% 1px;
}

.mega-menu-guides {
  border-bottom: 1px solid var(--navbar-guides-color);
}

.mega-menu-brands {
  border-bottom: 1px solid var(--navbar-brands-color);
}

.mega-menu-vault {
  border-bottom: 1px solid var(--navbar-vault-color);
}


.nav-links>li.locked .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 94000;
}



/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* GAMES MEGA MENU */
/*---------------------------------------------------------------------------------------------------------------------------------------*/

.mega-menu.games-menu {
  z-index: 94000;
  min-width: 900px;
  padding: 2rem;
}

/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* GUIDES & BRANDS MEGA MENU */
/*---------------------------------------------------------------------------------------------------------------------------------------*/
.mega-menu-vault,
.mega-menu-guides,
.mega-menu-brands {
  max-width: 100vw;
  z-index: 94000;
  padding: 2rem 2.5rem 0 2.5rem;
}

.mega-menu-vault-inner,
.mega-manu-inner {
  display: grid;
  grid-template-columns: 20rem 1fr;
  align-items: stretch;
}

@media (max-width: 1600px) {

  .mega-menu-vault-inner,
  .mega-manu-inner {
    margin: 0 auto;
  }
}

.mega-menu-guides .dropdown-column1 ul li a,
.mega-menu-guides .dropdown-column2 ul li a {
  position: relative;
  padding-left: 0;
}

.genre-focused {
  display: inline-block;
}

.hubs-menu {
  padding: 1rem 2rem 1rem 2rem;
  min-width: max-content;
}

.mega-menu-vault,
.mega-menu.games-menu,
.mega-menu-guide,
.mega-menu-brands {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mega-menu-vault.active,
.mega-menu.games-menu.active,
.mega-menu-guides.active,
.mega-menu-brands.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vault-left-column,
.mega-menu-left-column {
  display: flex;
  position: relative;
  flex-direction: column;
  padding-right: 2.5rem;
  min-width: 20rem;
  padding-bottom: 2rem;
}

.vault-left-column::after,
.mega-menu-left-column::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 2rem;
  width: 1px;
  background: #444;
  pointer-events: none;
}



.mega-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: max-content;
  box-sizing: border-box;
  padding: 0 0 0 3rem;
  height: 100%;
}


.mega-menu-left-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.mega-menu-left-column .mega-left-stack {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.mega-left-spacer {
  flex: 1 1 auto;
}

.mega-menu-left-column .mega-menu-bottom-link {
  margin-top: 0;
}

.brand-set,
.guides-set {
  display: none;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 2rem;
  box-sizing: border-box;
}



:root {
  --grid-width: clamp(17rem, 9.333rem + 7.333vw, 20rem)
}

.brand-set-inner,
.guides-set-inner {
  display: grid;
  grid-template-columns: repeat(4, var(--grid-width));
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}



@media (max-width:1600px) {

  .mega-menu.games-menu,
  .mega-menu-guides,
  .mega-menu-brands,
  .mega-menu-vault {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    width: fit-content;
    width: 100% !important;
  }

}



/* -----------------------------------------------
    Vauklt Right
   ----------------------------------------------- */



.vault-right-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding-bottom: 2rem;
  height: unset;
}


.vault-set {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  display: none;
  justify-content: space-between;
}

.vault-set-inner {
  display: grid;
  grid-template-columns: repeat(3, calc((var(--grid-width) * 4 + 6rem - 2rem) / 3));
  grid-auto-rows: minmax(90px, 1fr);
  gap: 1rem;
  align-items: stretch;
  justify-items: center;
}

.vault-set-empty {
  justify-content: center;
  align-items: center;
  width: calc(var(--grid-width) * 4 + 6rem)
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* DROPDOWN COLUMN SIZING */
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.main-nav .mega-menu img.dropdown-header-icon {
  width: auto;
  height: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-top: 1rem;
}

.genre-focused {
  font-size: var(--font-size-12px);
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  color: var(--grey-color-2);
  text-decoration: none;
  cursor: default;
  display: block;
  text-align: left;
  transition: none;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 0px;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.main-nav .mega-menu .category-header h4 a {
  font-family: var(--identity-font);
  font-size: var(--font-size-12px);
  color: var(--white-color-2);
  text-transform: uppercase;
  display: block;
  text-align: left;
  letter-spacing: var(--letter-spacing);
}

.main-nav .mega-menu .dropdown-column1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.main-nav .mega-menu .dropdown-column1 ul {
  text-transform: none;
  list-style-type: none;
}

.main-nav .mega-menu .dropdown-column1 ul li {
  text-align: left;
  word-wrap: break-word;
  display: block;
  margin-bottom: .5rem;
}


.hubs-menu ul li a,
.main-nav .mega-menu .dropdown-column1 ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* allow a second line */
  padding: 1.25rem 0;
  color: var(--white-color-1);
  text-decoration: none;
  font-size: var(--font-size-14px);
  letter-spacing: -.5px;
  font-family: var(--identity-font);
  font-weight: var(--font-weight5);
  width: 100%;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex-shrink: 1;
  min-width: 0;
}

/*──────────────────────────────────────────────────────────────────────────────
  UNDERLINE WRAPPER
  • Reverts to inline-block so each individual span gets its own width.
  • This makes the gradient underline sit snugly under every wrapped word/line.
──────────────────────────────────────────────────────────────────────────────*/
.nav-underline {
  position: relative;
  display: inline-block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hubs-menu ul li a {
  gap: 1rem;
}


.games-menu .dropdown-column1 ul li a:hover .nav-underline {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.games-menu.dropdown-column1 ul li a:hover .nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
}

.mega-menu-guides .dropdown-column1 ul li a:hover .nav-underline {
  color: var(--navbar-guides-color)
}


.mega-menu-brands .dropdown-column1 ul li a:hover .nav-underline {
  color: var(--navbar-brands-color)
}


.mega-menu-guides .dropdown-column1 ul li a:hover .nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: var(--navbar-guides-color)
}


.mega-menu-brands .dropdown-column1 ul li a:hover .nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: var(--navbar-brands-color)
}

.hubs-menu .nav-underline {
  position: relative;
  display: inline-block;
}

.hubs-menu ul li a:not(.active):hover .nav-underline {
  color: var(--card-color);
}

.hubs-menu ul li a:not(.active):hover .category-icon {
  background-color: var(--card-color);
}

.hubs-menu ul li a:not(.active):hover .nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--card-color);
}



/*-----------------------------------------------------------------------------*
/* LEFT COLUMN STYLE
/*-----------------------------------------------------------------------------*/

.mega-menu-left-nav li {
  margin-bottom: .5rem;
}

.mega-menu-left-nav li a {
  display: flex !important;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  font-size: var(--font-size-15px);
  letter-spacing: -.5px;
  text-align: left;
  padding: 1rem 1.75rem 1rem 1.75rem;
  transition: none !important;
  border-radius: 0 8px 8px 0;
  position: relative !important;
  padding-right: 1.75em !important;
}


.mega-menu-guides .mega-menu-left-nav li a::after,
.mega-menu-brands .mega-menu-left-nav li a::after,
.mega-menu-vault .mega-menu-left-nav li a::after {
  content: '\276F' !important;
  position: absolute !important;
  bottom: auto !important;
  left: auto !important;
  top: 50% !important;
  right: 1.25rem !important;
  transform: translateY(-50%) !important;
  color: var(--white-color-1);
  width: auto !important;
  height: auto !important;
  background: none !important;
  margin-left: 2rem;
}


/* Anchor row layout */
.mega-menu-left-nav li a {
  display: flex;
  align-items: center;
  gap: 1em;
  line-height: 1;
}

.category-icon {
  flex: 0 0 1.5em;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--white-color-1);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.vault-link-count {
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  margin-left: 4px;
  margin-bottom: 2px;
}


/*───────────────────────────────────────────────────────────────────────────────
  mega-menu (Guides + Vault) hover handling — FULL REPLACEMENT
  • 2025-06-07 – Generic rules now **exclude `.empty-cat`** so vault “zero-score”
                 items keep their own colour logic.
───────────────────────────────────────────────────────────────────────────────*/

/*━━━━━━━━━━ 1. TEXT HOVER COLORS ━━━━━━━━━━*/
.mega-menu-left-nav li a:not(.empty-cat):hover {
  color: var(--card-color);
}

/*━━━━━━━━━━ 2. “::after” HOVER COLORS ━━━━━━━━━━*/
.mega-menu-left-nav li a:not(.empty-cat):hover::after {
  color: var(--card-color);
}

/*━━━━━━━━━━ 3. ICON BACKGROUND HOVER COLORS ━━━━━━━━━━*/
.mega-menu-left-column .mega-menu-left-nav li a:not(.empty-cat):hover:not(.active) .category-icon {
  background-color: var(--card-color);
}

/*━━━━━━━━━━ 4. ZERO-SCORE / EMPTY CATEGORY (UNCHANGED) ━━━━━━━━━━*/
.mega-menu-vault .mega-menu-left-nav .empty-cat::after {
  color: var(--overall-zero-score) !important;
}

.mega-menu-vault .mega-menu-left-nav .empty-cat:hover {
  color: var(--overall-zero-score);
  /* text itself */
}

.mega-menu-vault .mega-menu-left-nav .empty-cat:hover::after {
  filter: brightness(130%);
}

.mega-menu-vault .empty-cat .category-icon {
  background-color: var(--overall-zero-score) !important;
}

.mega-menu-vault .mega-menu-left-column .mega-menu-left-nav .empty-cat:hover:not(.active) .category-icon {
  filter: brightness(130%);
}

/*━━━━━━━━━━ 5. ACTIVE STATES (UNCHANGED) ━━━━━━━━━━*/
.mega-menu-left-column .mega-menu-left-nav li a.active .category-icon {
  background-color: var(--white-color-1);
}

.mega-menu-vault .mega-menu-left-column .mega-menu-left-nav .empty-cat.active .category-icon {
  background-color: var(--overall-zero-score) !important;
}

.mega-menu-left-column .mega-menu-left-nav li a.active,
.mega-menu-left-column .mega-menu-left-nav li a.active:hover {
  color: var(--white-color-1);
}

.mega-menu-guides .mega-menu-left-column .mega-menu-left-nav li a.active::after {
  color: var(--navbar-guides-color);
}

.mega-menu-brands .mega-menu-left-column .mega-menu-left-nav li a.active::after {
  color: var(--navbar-brands-color);
}

.mega-menu-vault .mega-menu-left-column .mega-menu-left-nav li a.active::after {
  color: var(--navbar-vault-color);
}

.mega-menu-guides .mega-menu-left-column .mega-menu-left-nav li a.active {
  background-color: var(--section-darkest-background-color);
  border-left: 3px solid var(--navbar-guides-color);
}

.mega-menu-brands .mega-menu-left-column .mega-menu-left-nav li a.active {
  background-color: var(--section-darkest-background-color);
  border-left: 3px solid var(--navbar-brands-color);
}

.mega-menu-vault .mega-menu-left-column .mega-menu-left-nav li a.active {
  background-color: var(--section-darkest-background-color);
  border-left: 3px solid var(--navbar-vault-color);
}

/* partial_navbar.css — APPEND this block at the end */

/* Left-column “Explore All” row lives at the bottom, looks like the bottom CTA,
   and uses the site gradient when hovered (background change, not text). */
.mega-menu-left-nav .left-explore-all-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.mega-menu-left-nav .left-explore-all-cta a {
  display: block;
  font-size: var(--font-size-14px);
  text-align: center;
  background-color: var(--section-medium-background-color);
  border-radius: 4px;
  font-weight: var(--font-weight7);
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.mega-menu-left-nav .left-explore-all-cta a::after {
  display: none !important;
}

.mega-menu-left-nav .left-explore-all-cta a:hover {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
}

/* Bottom CTAs in both Guides + Brands use the site gradient on hover (background). */
.mega-menu-guides .mega-menu-bottom-link:hover,
.mega-menu-brands .mega-menu-bottom-link:hover {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color)) !important;
}

/* Hubs “See All” uses the same hover treatment */


/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* NEW STYLES FOR LEFT COLUMN, ACTIVE STATES, AND BOTTOM LINK */
/*---------------------------------------------------------------------------------------------------------------------------------------*/



/*-----------------------------------------------------------------------------*
/* Conetnt
/*-----------------------------------------------------------------------------*/



/* Bottom link styling within each guides-set */
.mega-menu-bottom-link {
  width: 100%;
  cursor: pointer;
  text-align: center !important;
  background-color: var(--section-medium-background-color) !important;
  box-sizing: border-box !important;
  border-radius: 4px !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.all-guides-link {
  color: var(--white-color-1) !important;
  text-decoration: none !important;
  font-family: var(--identity-font) !important;
  font-weight: var(--font-weight7) !important;
  font-size: var(--font-size-14px) !important;
  display: inline-block !important;
  padding: 0.65rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  cursor: pointer;
  position: relative !important;
  width: auto !important;
}


.mega-menu-bottom-link .all-guides-link::after {
  content: '\276F' !important;
  display: inline-block !important;
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  margin-left: 1rem;
  transition: transform 0.3s ease, color 0.3s ease !important;
  color: var(--white-color-1) !important;
}

.mega-menu-guides .mega-menu-bottom-link:hover {
  background-color: var(--navbar-guides-color) !important;
}

.mega-menu-brands .mega-menu-bottom-link:hover {
  background-color: var(--navbar-brands-color) !important;
}


.mega-menu-guides .mega-menu-bottom-link:hover .all-guides-link::after {
  transform: translateX(5px) !important;
  background-color: none !important;
}

.mega-menu-brands .mega-menu-bottom-link:hover .all-guides-link::after {
  transform: translateX(5px) !important;
  background-color: none !important;
}

.hubs-menu .mega-menu-bottom-link {
  margin-top: .5rem;
  background: transparent !important;
}

.hubs-menu .mega-menu-bottom-link:hover {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color)) !important;
}

.hubs-menu .mega-menu-bottom-link .all-hubs-link::after {
  content: '\276F';
  display: inline-block;
  margin-left: 1rem;
  transition: transform .3s ease;
}

.all-hubs-link {
  color: var(--white-color-1) !important;
  text-decoration: none !important;
  font-family: var(--identity-font) !important;
  font-weight: var(--font-weight5) !important;
  font-size: var(--font-size-14px) !important;
  display: inline-block !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  cursor: pointer;
  position: relative !important;
}

.hubs-menu .mega-menu-bottom-link:hover .all-hubs-link::after {
  transform: translateX(5px);
}

/* Hubs “See All” — put the icon next to text and size it like hub items */
.all-hubs-link {
  display: inline-flex !important;
  align-items: center;
  gap: 1rem;
  /* hubs list items use a 1rem gap */
}

/* 1.5em box, same footprint as .category-icon used in hub items */
.see-all-icon {
  flex: 0 0 1.5em;
  width: 1.5em;
  display: inline-flex;
}

.see-all-icon svg {
  width: 80%;
  height: 80%;
  display: block;
  fill: currentColor;
  /* inherits link color */
}

/* Optional: on hover, tint text + icon like hub items (card color) */
@media (hover: hover) and (pointer: fine) {
  .hubs-menu .mega-menu-bottom-link:hover .all-hubs-link {
    color: var(--card-color) !important;
  }
}

/* APPEND to partial_navbar.css — Hubs: force 1-column list and unify “See All” row */

/* Force the UL to be a single column list (override any previous grid styles) */
.hubs-menu>ul {
  display: block !important;
  padding: 0;
  margin: 0;
}

/* Row layout for every link already exists:
   .hubs-menu ul li a { display:flex; gap:1rem; padding:1.25rem 0; ... } */

/* SEE ALL icon: same footprint as .category-icon (1.5em square) */
.hubs-menu .see-all-icon {
  flex: 0 0 1.5em;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color-1);
  /* default to match other rows */
}

.hubs-menu .see-all-icon svg {
  width: 70%;
  height: 70%;
  display: block;
  fill: currentColor;
}

/* SEE ALL: use SITE color on hover (text underline + icon),
   while category rows continue to use per-row --card-color via existing rules. */
.hubs-menu ul li a.see-all-link:hover .nav-underline {
  color: var(--site-color);
}

.hubs-menu ul li a.see-all-link:hover .nav-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* sits right under the text */
  width: 100%;
  height: 1px;
  background: var(--site-color);
}

.hubs-menu ul li a.see-all-link:hover .see-all-icon {
  color: var(--site-color);
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* BRAND SETS (analogous to guides-set) */
/*---------------------------------------------------------------------------------------------------------------------------------------*/

.brand-logo-container {
  flex: 0 0 2.5em;
  width: 2.5em;
  height: 2.5em;
  margin-right: .5rem;
  ;
  border-radius: 50%;
  background-color: var(--section-darkestdark-background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 1.85em;
  height: 1.85em;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-item:hover .brand-logo-container {
  background-color: var(--card-color) !important;
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* GAMES GRID LAYOUT */
/*---------------------------------------------------------------------------------------------------------------------------------------*/

/*───────────────────────────────────────────────────────────────────────────────
  games-menu grid styles — FULL FILE
  • 2025-06-07 – Fixed 12 rem grid + Vanilla-Tilt optimisations
───────────────────────────────────────────────────────────────────────────────*/
.nav-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 12rem);
  column-gap: 1.5rem !important;
  row-gap: 1rem;
  width: max-content;
  margin: 0 auto;
  padding: 0 !important;
  justify-content: center;
}

.nav-game-grid-item {
  width: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: transform .3s ease;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-game-item-link {
  overflow: visible;
}

.nav-game-image-container {
  width: 12rem;
  aspect-ratio: 7/10;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  will-change: transform;
  transform-style: preserve-3d;
}

.nav-game-item-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.nav-game-title {
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  color: var(--white-color-1);
  font-size: var(--font-size-13px);
  line-height: 1.4 !important;
  text-align: center;
  margin: .5rem 0 0 0;
  white-space: normal;
  word-wrap: break-word;
  text-transform: capitalize !important;
  transition: color .3s ease, transform .3s ease, background .3s ease;
}

/* Hover zoom / gradient text */
.nav-game-grid-item:hover .nav-game-item-image {
  transform: scale(1.025);
}

.nav-game-grid-item:hover .nav-game-title {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* VAULT BIN OVERRIDES */
/*---------------------------------------------------------------------------------------------------------------------------------------*/

/* ---------------------------------------- */
/* Vault Bin Button Styles                  */
/* ---------------------------------------- */
.vault-bin-button {
  position: relative;
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;

  border: 3px solid var(--white-color-1);
  border-radius: 0;
  transition: border 0.3s ease-out
}

.vault-bin-menu {
  padding: .35rem;
}


@media (max-width:1150px) {
  .vault-bin-button {
    display: none !important;
  }

  .vault-bin-menu {
    padding: 0
  }
}

.vault-bin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-bin-icon svg {
  display: block;
  width: 1.3em;
  height: 1.3em;
  fill: currentColor;
  transition: transform 0.3s ease;
}



.nav-links>li.sub-menu.vault-bin-menu.locked>a.vault-bin-button::after {
  content: none !important;
}


.sub-menu.vault-bin-menu:hover .vault-bin-icon svg {
  transform: rotate(180deg);
}

.nav-links>li.sub-menu.vault-bin-menu.locked .vault-bin-icon svg {
  transform: rotate(180deg);
}


.nav-links li.sub-menu.vault-bin-menu.locked>a.vault-bin-button:hover {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-links>li.sub-menu.vault-bin-menu.locked>a.vault-bin-button {
  border-color: transparent;
}

@-moz-document url-prefix() {
  .vault-bin-button::before {
    display: none !important;
  }

  .nav-links>li.sub-menu.vault-bin-menu.locked>a.vault-bin-button {
    border-color: var(--white-color-1) !important;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .vault-bin-button::before {
    display: none !important;
  }

  .nav-links>li.sub-menu.vault-bin-menu.locked>a.vault-bin-button {
    border-color: var(--white-color-1) !important;
  }
}


@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
  .vault-bin-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        var(--site-start-color),
        var(--site-end-color));
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;


    pointer-events: none;

    opacity: 0;
    transition: opacity 0.3s ease-out;

    box-sizing: border-box;
    padding: 3px;

    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: xor;
  }
}


.nav-links>li.sub-menu.vault-bin-menu.locked>a.vault-bin-button::before {
  opacity: 1;
}

.nav-vault-item-count-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  color: var(--white-color-1);
  width: 1.55em;
  aspect-ratio: 1;
  font-family: var(--identity-font);
  border-radius: 50%;
  font-size: var(--font-size-12px);
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  min-inline-size: max-content;
  pointer-events: none;
  flex-shrink: 0;
}

.nav-vault-item-count {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1;
}

@media (max-width:1150px) {
  .nav-vault-item-count-wrapper {
    width: 1.35em;
  }
}

/* -----------------------------------------------
    MONBILE VAULT BIN OVERRIDES
   ----------------------------------------------- */


.vault-mobile-icon {
  display: none;
  position: relative;
  cursor: pointer;
  padding: 0 0.25rem;
}

.vault-mobile-icon svg {
  width: auto;
  height: 1.05em;
  transition: transform 0.3s ease;
}


@media (max-width:1150px) {
  .vault-mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1150px) {
  .top-bar:has(.vault-bin-menu.locked.active) .vault-mobile-icon svg {
    transform: rotate(180deg);
  }

  .nav-vault-item-count {
    font-size: var(--font-size-11px);
  }
}

@media (max-width: 600px) {

  .nav-vault-item-count {
    font-size: var(--font-size-10px);
  }
}



/* -----------------------------------------------
   VAULT BIN OVERRIDES
----------------------------------------------- */


.vault-left-nav li a.empty-cat {
  color: var(--overall-zero-score) !important;
}

.vault-left-nav li a.empty-cat:hover {
  filter: brightness(130%);
}

.vault-clear-section {
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid #444;
}

.vault-clear-all-link {
  display: block;
  text-decoration: none;
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  font-size: var(--font-size-15px);
  color: var(--white-color-1);
  padding: 1rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vault-clear-category-link {
  font-family: var(--identity-font);
  font-size: var(--font-size-15px) !important;
  display: block;
  padding: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--white-color-2) !important;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (hover: hover) and (pointer: fine) {

  .vault-clear-all-link:hover {
    color: var(--navbar-vault-color) !important;
  }

  .vault-clear-category-link:hover {
    color: var(--navbar-vault-color) !important;
  }
}

.confirm-timer-bar {
  height: 2px;
  background-color: var(--navbar-vault-color);
  width: 100%;
  transition: width 10s linear;
}




.vault-comparison-row {
  display: flex;
  gap: 1rem;
  box-sizing: border-box;
  align-items: stretch;
  flex-wrap: wrap;
}

.vault-comparison-row .vault-compare-link {
  flex: 1 1 calc(50% - .5rem);
  text-align: center;
}

.vault-compare-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  text-align: center;
  flex-wrap: wrap;
  max-width: 100%;
  background-color: var(--section-medium-background-color);
  border-radius: 4px;
  color: var(--white-color-1);
  padding: 0.65rem 1rem;
  font-family: var(--identity-font);
  font-size: var(--font-size-15px);
  font-weight: var(--font-weight7);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
  box-sizing: border-box;
  line-height: 1.25;
}

@media (hover: hover) and (pointer: fine) {
  .vault-compare-link:hover {
    background-color: var(--navbar-vault-color);
  }
}

.vault-set-empty .vault-set-inner {
  display: none;
}



.vault-nav-loading,
.vault-nav-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  width: 100%;
  margin: auto;
  text-align: center;
  color: var(--grey-color-2);
  font-family: var(--identity-font);
  font-size: var(--font-size-14px);

  border: 1px dashed var(--accent-color-1);
  border-radius: 4px;
  opacity: 0.8;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.navbar-vault-item {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: var(--section-darkest-background-color);
  border: 1px solid var(--navbar-vault-color);
  border-radius: 4px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
}

.navbar-vault-img {
  font-size: var(--font-size-15px);
  width: 4.25em;
  height: 4.25em;
  flex-shrink: 0;
}

.navbar-vault-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-vault-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: .5rem;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  cursor: pointer;
}

.navbar-vault-info a {
  width: 100%;
}

.navbar-vault-info .navbar-vault-brand,
.navbar-vault-info .navbar-vault-model {
  text-decoration: none;
  text-decoration-color: transparent;
}

.navbar-vault-info:hover .navbar-vault-brand,
.navbar-vault-info:hover .navbar-vault-model {
  text-decoration: underline;
  text-decoration-color: var(--navbar-vault-color);
  text-underline-offset: 3px !important;
  text-decoration-thickness: 2px !important;
}


.navbar-vault-brand,
.navbar-vault-model {
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* show at most 2 lines */
  white-space: normal;
  max-width: 100%;
  word-wrap: break-word;
}

/* brand-specific styles */
.navbar-vault-brand {
  font-family: var(--identity-font);
  font-size: var(--font-size-13px);
  font-weight: 400;
  color: var(--white-color-2);
  opacity: .8;
  margin-bottom: 2px;
}

.navbar-vault-model {
  font-family: var(--identity-font);
  font-size: var(--font-size-15px);
  font-weight: 700;
  color: var(--white-color-1);
}

.navbar-vault-remove {
  position: absolute;
  top: 6px;
  right: 4px;
  font-size: var(--font-size-15px);
  width: 1.35em;
  height: 1.35em;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.navbar-vault-remove svg {
  width: 100%;
  height: 100%;
  fill: var(--white-color-1);
}

.navbar-vault-remove:hover {
  transform: scale(1.1);
  color: var(--navbar-vault-color);
}

.navbar-vault-remove:hover svg {
  fill: var(--navbar-vault-color);
}

/* -----------------------------------------------
   COMBINED MEDIA QUERIES
----------------------------------------------- */


@media (max-width: 1150px) {
  .main-nav {
    z-index: -1;
  }

  .nav-links>li:not(.vault-bin-menu) {
    display: none;
  }


  .mega-menu-vault {
    max-height: calc(100dvh - 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    min-width: unset;
  }

  .vault-bin-menu.locked.active .mega-menu-vault {
    transform: translateY(0);
  }

  .mega-menu-vault-inner {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    display: flex;
    flex-direction: row;
    column-gap: 0;
    width: 100%;
  }

  .vault-right-content {
    flex: 1 1 auto;
    padding-left: 2.5rem;
  }

  .vault-left-column {
    min-width: clamp(17rem, 13.727rem + 6vw, 20rem);
    /* 1150 to 600 */
  }



  .vault-set-inner {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }

  .vault-set-empty {
    justify-content: center;
    align-items: center;
    width: 100%
  }
}

@media (max-width: 600px) {

  .vault-left-column::after,
  .mega-menu-left-column::after {
    display: none;
  }

  .mega-menu-vault-inner {
    flex-direction: column;
  }

  .vault-left-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .vault-left-nav>li {
    flex: 1 1 calc(50% - .5rem);
  }

  .vault-left-nav>li:nth-last-child(1):nth-child(odd) {
    flex-basis: 100%;
  }

  .vault-clear-section {
    border-top: none;
    margin: 0;
    padding: 0;
  }

  .mega-menu-vault .mega-menu-left-column .mega-menu-left-nav li a.active {
    background-color: var(--section-darkest-background-color);
    border-left: 3px solid var(--navbar-vault-color);
  }

  .vault-clear-category-link,
  .vault-clear-all-link,
  .mega-menu-left-nav li a {
    border: 1px solid var(--section-medium-background-color);
    border-radius: 4px;
    padding: 1rem 1.75rem 1rem 1.75rem;
  }

  .mega-menu-left-nav li {
    margin: 0;
  }

  .navbar-vault-brand {
    font-size: var(--font-size-12px);
  }

  .navbar-vault-remove,
  .navbar-vault-img,
  .vault-clear-category-link,
  .vault-clear-all-link,
  .vault-compare-link {
    font-size: var(--font-size-14px)
  }

  .navbar-vault-model,
  .mega-menu-left-nav li a {
    font-size: var(--font-size-14px);
  }

  .vault-left-column {
    min-width: clamp(15rem, 11rem + 10vw, 17rem)
  }

  .mega-menu-vault {
    padding: 2rem clamp(1rem, -2rem + 7.5vw, 2.5rem) 0 clamp(1rem, -2rem + 7.5vw, 2.5rem);
  }


  .vault-left-column {
    padding-right: 0;
    min-width: 22em
  }

  .vault-right-content {
    padding-left: 0;
    min-width: 22em
  }

  .vault-clear-section {
    display: none;
  }

  .mega-menu-guides .mega-menu-left-nav li a::after,
  .mega-menu-brands .mega-menu-left-nav li a::after,
  .mega-menu-vault .mega-menu-left-nav li a::after {
    display: none;
  }

}



/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* Hubs Menu
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.navbar-new-badge[data-neutral="true"] {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.navbar-new-badge[data-neutral="true"].gradient-supported {
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.nav-dropdown-arrow {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0px;
  line-height: 1;
}


.nav-dropdown-arrow::after {
  content: '\25BC';
  display: inline-block;
  color: var(--white-color-1);
  transform-origin: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}


.sub-menu.hubs-dropdown:hover .nav-dropdown-arrow::after {
  transform: rotate(180deg);
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.sub-menu.hubs-dropdown.locked .nav-dropdown-arrow::after {
  transform: rotate(180deg);
  background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.sub-menu.hubs-dropdown:hover .mega-menu.hubs-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.sub-menu.hubs-dropdown {
  position: relative;
}





/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* SIDE MENU */
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* MOBILE MENU */
/*---------------------------------------------------------------------------------------------------------------------------------------*/
.mobile-hamburger-menu-icon {
  display: none;
}

.hamburger-menu-icon {
  width: 3.1rem;
  height: 3.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu-icon svg {
  transition: fill 0.3s ease;
  width: 3.1rem;
  height: 3.1rem;
  transform-box: fill-box;
  transform-origin: center;
}

.hamburger-menu-icon svg path {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-menu-icon.open svg path:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger-menu-icon.open svg path:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-icon.open svg path:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}



@media (max-width:1150px) {
  .nav-links>li:not(.vault-bin-menu) {
    display: none !important;
  }

  .mobile-hamburger-menu-icon {
    display: block;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    cursor: pointer;
    max-width: fit-content;
    padding: .5rem .5rem .5rem 2rem
  }

}





/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* SIDE MENU */
/*---------------------------------------------------------------------------------------------------------------------------------------*/

.side-menu {
  position: absolute;
  top: 100%;
  width: 70vw;
  height: calc(100dvh - 100%);
  background-color: var(--section-darkest-background-color);
  left: -70vw;
  font-family: var(--identity-font);
  font-weight: var(--font-weight4) !important;
  display: none;
  overflow: visible;
  overflow-y: hidden;
  overscroll-behavior: contain;
  transition: left 0.4s ease-in-out;
  z-index: 97525 !important;
  border-right: 1px solid;
  border-image: linear-gradient(to top, var(--site-start-color), var(--site-end-color)) 1;
  flex-direction: column;
  justify-content: space-between;
}

/* Extra-wide slide-out for viewports 825 → 600 px */
@media (max-width: 600px) {
  .side-menu {
    width: 80vw;
    left: -80vw;
  }
}


.main-menu {
  padding-bottom: 5rem;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
  background-color: var(--section-darkest-background-color);
}


.menu-item1 {
  font-size: var(--font-size-17px);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.menu-item2 {
  font-size: var(--font-size-15px);
  margin-left: 2rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.menu-item3,
.hubs-dropdown .menu-item2 {
  font-size: var(--font-size-14px);
  font-weight: 600;
  margin-left: 3rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.explore-all-link {
  font-size: var(--font-size-13px) !important;
  font-weight: 600;
  color: var(--grey-color-3) !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}


.side-menu ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--white-color-2);
  text-decoration: none;
  text-transform: capitalize;
  transition: background-color 0.3s ease;
  position: relative;
  margin-left: 1.5rem;
}


.side-menu ul li>a::after {
  content: '\276F';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-15px);
  text-transform: capitalize;
  color: var(--site-color);
}

@supports(selector(:has(*))) {
  .side-menu ul li>a::after {
    content: '\276F';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: var(--font-size-15px);
    background: linear-gradient(to right, var(--site-start-color), var(--site-end-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
  }

  .side-menu ul li:has(> .side-sub-menu.active)>a::after {
    transform: translateY(-50%) rotate(90deg);
  }
}

.side-menu ul li:not(:has(.side-sub-menu))>a::after {
  content: none;
}

.side-sub-menu {
  display: none;
  background-color: var(--main-background-color);
  border-top: 1px solid;
  border-image: linear-gradient(to top, var(--site-start-color), var(--site-end-color)) 1;
}

.side-sub-menu.active {
  display: block;
}



.side-brand-logo-container {
  width: 2em;
  background-color: var(--section-dark-background-color);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: .5em;
  flex-shrink: 0;
}


.side-brand-logo {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  display: block;
}


.side-menu ul li a .brand-logo-container {
  margin-right: .5rem;
}



/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* Shade overlay */
/*---------------------------------------------------------------------------------------------------------------------------------------*/
.shade-overlay {
  position: fixed;
  top: calc(var(--top-bar-H));
  left: 100vw;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 97500 !important;
  transition: left 0.4s ease-in-out;
  pointer-events: none;
  display: none;
}

.shade-overlay.active {
  pointer-events: all;
}



/*---------------------------------------------------------------------------------------------------------------------------------------*/
/* Auth Button
/*---------------------------------------------------------------------------------------------------------------------------------------*/


.side-auth-footer {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--section-darkest-background-color);

  /* layered “top border” shadow */
  box-shadow:
    0px 0px 3px rgba(0, 0, 0, 0.75),
    0px 17px 24px rgba(0, 0, 0, 0.3);

  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
  z-index: 2;
  /* stays above sub-menus while scrolling */
}

.side-auth-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  justify-content: center;
  font-family: var(--identity-font);
  font-weight: 700;
  font-size: var(--font-size-14px);
  color: var(--white-color-1);
  text-decoration: none;
  background-color: var(--section-medium-background-color);
  border-radius: 7px;
  padding: .75rem 1rem;
  box-sizing: border-box;
  white-space: nowrap;
  transition: background-color .2s ease;
}

.side-auth-link:hover {
  background-color: #2e343b;
}

.side-auth-avatar {
  width: 1.65em;
  height: 1.65em;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}






















































/*----------------------------------------------------*/
/*----------------------------------------------------*/

/* ==============================
   VAULT TOAST NOTIFICATIONS
   ============================== */

/* The outer container that holds multiple toasts */
/* ===============================
   Container for all Toasts
   =============================== */
.vault-toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 97550;
  /* On top of most things */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* spacing between toasts */
}

/* ===============================
       Toast Base
       =============================== */
.vault-toast {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid var(--section-medium-background-color);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateX(120%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}

/* Slide + Fade in */
.vault-toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* Top row: pill on left, close button on right */
.vault-toast-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background-color: #2a2a2a;
}

/* The "ADDED" or "REMOVED" pill */
.vault-toast-pill {
  font-size: var(--font-size-14px);
  font-weight: 600;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* Different background for each action */
.vault-toast-pill-added {
  background-color: var(--card-color);
  /* or your green */
}

.vault-toast-pill-removed {
  background-color: #d93025;
  /* or your red */
}

/* The close 'X' button in top-right */
.vault-toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: var(--font-size-19px);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.vault-toast-close:hover {
  opacity: 0.7;
}

/* ===============================
       Main Row: image + brand/model
       =============================== */
.vault-toast-main-row {
  display: flex;
  padding: 8px;
  gap: 8px;
  align-items: center;
  width: clamp(22.273rem, 16.818rem + 10vw, 27.273rem);
}

@media (max-width:600px) {
  .vault-toast-main-row {
    width: clamp(22.5rem, 18.5rem + 10vw, 24.5rem)
  }
}

/* Image container: same blur-to-full style as before */
.vault-toast-img-container {
  position: relative;
  font-size: var(--font-size-10px);
  width: 8em;
  height: 8em;
  overflow: hidden;
  flex-shrink: 0;
}

.vault-toast-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Blurred version visible first */
.blurred-img {
  filter: blur(1px);
  opacity: 1;
}

.full-img {
  opacity: 0;
}

.full-img.loaded {
  opacity: 1;
}

/* Brand + Model text */
.vault-toast-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Brand smaller, on top */
.vault-toast-brand {
  font-size: var(--font-size-15px);
  font-weight: 500;
  margin-bottom: 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Model bigger, below brand */
.vault-toast-model {
  font-size: var(--font-size-17px);
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===============================
       Progress Bar (bottom)
       =============================== */
.vault-toast-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.vault-toast-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--card-color);
  width: 100%;
  animation: vaultToastProgress 2s linear forwards;
}

@keyframes vaultToastProgress {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}