section.menu-container {
  width: 100%;
  top: 0;
  right: 0;
  z-index: 3;
}

section.menu-container .menu-content {
  width: calc(100% - 2rem);
  padding: 0 1rem;
}

section.menu-container > .menu-content .logo-container,
section.menu-container > .menu-content .space-filler {
  width: 7%;
}

.logo-container {
  line-height: 0;
}

.logo-container > a > img {
  width: 100%;
}

.nav-container {
  width: 60%;
  z-index: 5;
}

.nav-container li {
  text-align: center;
  width: calc(100% / 6);
  padding: 1rem;
  cursor: pointer;
}

.nav-container li:hover {
  color: var(--gold) !important;
}
/* Desktop SubNav */
#desktopSubNavContainer {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

#desktopSubNavContainer.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#desktopSubNavContainer.hide {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.sub-nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
}

.sub-nav li a {
  color: var(--black);
  transition: color 0.3s ease;
}

.sub-nav li a:hover {
  color: var(--gold);
}

.products-sub-nav img {
  width: 150px;
}

.products-sub-nav > li a {
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* .show-sub-nav {
  animation: showSubNav 1s ease forwards;
} */

/* .hide-sub-nav {
  animation: hideSubNav 0.3s ease forwards;
} */

.mobile-menu {
  display: none;
  cursor: pointer;
}

#mobileNavContainer {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  z-index: 6;
}

.mobile-nav-content {
  width: 60%;
  background-color: var(--white);
  top: 0;
  right: -100%;
  padding: 1rem;
}

.mobile-nav-content .top-header {
  padding-bottom: 1rem;
}

.mobile-nav-content > nav {
  width: 100%;
}

.mobile-nav-content > nav > li {
  border-bottom: 1px solid rgb(237, 237, 237);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.mobile-nav-content > nav > li > i {
  color: rgb(195, 195, 195);
}

.mobile-nav-content > nav > li > a {
  color: var(--black);
}

/* Products-tabs */
#mobileProductsTab > nav > li {
  width: 100%;
  border: 0;
  text-align: center;
}

#mobileProductsTab > nav > li > a {
  display: block;
  margin: 0 auto;
  width: 70%;
}

#mobileProductsTab > nav > li > a > img {
  width: 100%;
}

#mobileProductsTab > nav > li > a span {
  font-size: 1.1rem;
  font-family: "Times New Roman", Times, serif;
}

/* Animation */
.showNavContent {
  animation: showNav 1s ease forwards;
}

.hideNavContent {
  animation: hideNav 0.5s ease forwards;
}

.showNavContainer {
  animation: showNavConatiner 0.5s ease forwards;
}

.hideNavContainer {
  animation: hideNavConatiner 1s ease forwards;
}

@keyframes showNav {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@keyframes showNavConatiner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hideNav {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

@keyframes hideNavConatiner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showSubNav {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -100%;
  }
}

@keyframes hideSubNav {
  0% {
    bottom: -100%;
  }
  100% {
    bottomp: 100%;
  }
}

/* Responsive */
@media screen and (max-width: 14450px) {
  .nav-container {
    width: 75%;
  }
}
@media screen and (max-width: 1200px) {
  .space-filler {
    display: none !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu {
    display: inline-block !important;
  }

  section.menu-container {
    background-color: var(--white);
    padding: 1rem 0;
  }

  section.menu-container > .menu-content .logo-container {
    width: 15%;
  }

  .mobile-menu i {
    color: var(--black) !important;
    font-size: 1.1rem;
  }
}
