@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@700&family=Work+Sans:wght@100;200;300;400;500&display=swap");

/*/// NAVBAR STYLE //*/

:root {
  --top-bar-height: 35px;
}

.header-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-view {
  display: none;
}

.main-mobile-nav {
  border-bottom: 0.5px solid #80808036;
}

.mobileheader {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: 0.5s ease;
  border-bottom: 0.5px solid #80808036;
}

.desktop-header {
  padding: 12px 0px;
  transition: 0.3s ease;
}

.white-background {
  background-color: white !important; /* Add !important to override existing styles */
  transition: 0.3s ease;
  border-bottom: 0.5px solid #80808036;
}

.desktop-menu-padding {
  padding: 20px 0px;
  margin-bottom: 0px !important;
  display: flex;
}

.nav-link-container a {
  margin: 0px 20px;
}

.logo {
  transition: 0.3s ease;
}

.dark-logo-path {
  fill: black !important;
  transition: 0.3s ease;
}

.my-nav-link {
  font-family: "Gozel-Book", "sans-serif";
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  color: white;
  transition: 0.3s ease;
}

.main-nav-link {
  font-family: "Gozel-Book", "sans-serif";
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  color: black;
  transition: 0.3s ease;
}

.force-white {
  color: white !important;
}

.dark-nav-links {
  color: black !important;
  transition: 0.3s ease;
}

.my-nav-link:hover {
  color: black;
  text-decoration: none;
}

.main-nav-link:hover {
  color: black;
  text-decoration: none;
}

.my-nav-link::after {
  margin-top: 5px;
  transition: 0.3s ease;
  width: 0%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  background-color: black;
}

.main-nav-link::after {
  margin-top: 5px;
  transition: 0.3s ease;
  width: 0%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  background-color: black;
}

.trans-search-box {
  background-color: transparent !important;
  color: white !important;
}

.my-nav-link:hover::after {
  width: 100%;
}

.main-nav-link:hover::after {
  width: 100%;
}

.header-icon {
  position: relative;
  margin-left: 30px;
}

.top-bar {
  background-color: black;
  color: white;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-mega-menu {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #0000007d;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 555555;
}


.mega-menu-link {
  text-decoration: none;
  color: grey;
  margin-bottom: 10px;
  font-size: 15px;
}

.mega-menu-link:hover {
  text-decoration: none;
  color: black;
  transition: 0.3s ease;
}

.mega-menu-head {
  font-size: 14px;
  margin-bottom: 25px;
}

.no-mega-menu {
  visibility: hidden;
  transition: 0.3s ease;
  animation-name: nomegamenu;
  animation-duration: 0.3s;
}

.mega-menu-active {
  visibility: visible;
  transition: 0.3s ease;
  animation-name: megamenuactive;
  animation-duration: 0.3s;
}

@keyframes megamenuactive {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes nomegamenu {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
    visibility: hidden;
  }
}

/*//// MOBILE NAVBAR ////*/

.mobile-nav-bar {
  display: none;
}

.mobile-cart {
  font-size: 25px !important;
}

.mobile-nav-white {
  color: white !important;
  transition: 0.3s ease-in-out;
}

.mobile-white-background {
  background-color: white !important;
  padding: 5px 0px !important;
}

.mobile-nav {
  background-color: transparent;
  z-index: 888888;
  padding: 5px 0px;
  transition: 0.3s ease-in-out;
}

.mobile-below-header {
  display: flex;
  height: 50px;
  background-color: #f5f5f5;
  padding: 15px 0px;
  align-items: center;
  justify-content: center;
}

.mobile-mega-menu {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 999999;
}

.mobile-mega-menu-content {
  padding-left: 20px;
  padding-right: 10px;
  float: right;
  width: 100%;
  color: #c3c3c3;
  background-color: #111111;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
}

.mobile-mega-menu-content-active {
  transform: translateX(0%) !important;
  transition: 0.3s ease-in-out !important;
}

.mobile-nav-link {
  font-family: "Gozel-Book", "sans-serif" !important;
  font-size: 13px;
  text-decoration: none !important;
  position: relative;
  color: #c3c3c3;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.mobile-nav-link:hover {
  color: grey;
  text-decoration: none;
  transition: 0.3s ease;
}

.mobile-menu-padding {
  padding: 24px 25px;
  margin-bottom: 0px !important;
  border-bottom: 1px solid #80808078;
}

.mobile-menu-padding svg {
  height: 13px;
  padding-right: 10px;
  fill: #c3c3c3;
}

.mobile-mega-menu-icon {
  position: relative;
  margin-right: 20px;
  color: #c3c3c3;
}

.mobile-mega-menu-icon-text {
  font-size: 16px;
  margin-bottom: 0px !important;
}
.my-mobile-mega-menu-icon-text {
  font-size: 16px;
}

.no-mobile-mega-menu {
  visibility: hidden;
}

.mobile-mega-menu-active {
  visibility: visible;
}

.activate-mobile-mega-menu {
  cursor: pointer;
}

.disable-mobile-mega-menu {
  cursor: pointer;
}

/*/// NAVBAR STYLE MEDIA SIZES //*/

@media only screen and (max-width: 1200px) {
  .desktop-nav-bar {
    display: none;
  }

  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

  .search-box:hover > .search-input {
    width: 86% !important;
  }
}

@media only screen and (max-width: 991px) {
  .desktop-header,
  .top-bar {
    display: none;
  }
  .mobile-nav-bar {
    display: block;
    background-color: white;
  }
}

@media only screen and (max-width: 700px) {
  .logo-container svg {
    height: 35px;
  }

  .logo-container img {
    width: 30%;
    height: auto;
  }
}

/*///// NAVBAR Search /*/

.search-form-container {
  position: relative;
}

.search-box {
  display: flex;
  background: #f5f5f5;
  height: 40px;
  border-radius: 40px;
  padding: 10px;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #e6e6e6;
}

.search-btn {
  color: black;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 2s;
}

.search-icon {
  background: #f5f5f5;
  font-size: 20px;
}

.search-input {
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: black;
  font-size: 14px;
  transition: 0.4s;
  line-height: 0px;
  width: 0;
}

.search-box:hover > .search-input {
  width: 170px;
  padding: 0 7px;
}

.mobile-search-form:hover {
  position: fixed;
  width: 100vw;
  top: 0px;
  left: 0px;
  z-index: 999;
  padding: 15px;
  background-color: white;
  border-bottom: 1px solid #e6e6e6;
}

.no-search-blur {
  display: none;
  transition: 0.3s ease;
}

.search-blur {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #0000007d;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  transition: 0.3s ease;
}

.cart-product-count {
  font-size: 10px;
  font-style: normal;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
}

.mobile-mega-menu-head {
  padding-top: 10px;
}

.mobile-mega-menu-head h4 {
  font-size: 18px;
  margin: 0px;
}

.women-mobile-megamenu-link a {
  color: #444444;
}

.shop-link-nav {
  margin-left: 0px !important;
}

.main-header {
  z-index: 999999;
  background-color: white;
  border-bottom: 0.5px solid #80808036;
}

/* Menu Button 5 */
.menu-btn-5 {
  height: 32px;
  width: 40px;
  cursor: pointer;
  z-index: 3;
  background: transparent;
  mix-blend-mode: difference;
}

.menu-btn-5 span:nth-child(1),
.menu-btn-5 span:nth-child(1)::before,
.menu-btn-5 span:nth-child(1)::after {
  background: white;
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  margin-top: 13px;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  mix-blend-mode: difference;
  background-blend-mode: difference;
}

.menu-btn-5 span:nth-child(1)::before {
  margin-top: -8px;

  -webkit-transition: 0.3s ease-in-out 0.3s;
  -moz-transition: 0.3s ease-in-out 0.3s;
  -o-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}

.menu-btn-5 span:nth-child(1)::after {
  margin-top: 8px;

  -webkit-transition: 0.3s ease-in-out 0.3s;
  -moz-transition: 0.3s ease-in-out 0.3s;
  -o-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}

.menu-btn-5 span:nth-child(2) {
  background: white;
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  margin-top: 13px;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  mix-blend-mode: difference;
  background-blend-mode: difference;
}

.menu-btn-5.active span:nth-child(1)::before,
.menu-btn-5.active span:nth-child(1)::after {
  margin-top: 0;
}

.menu-btn-5.active span:nth-child(1) {
  -webkit-transition: 0.5s ease-in-out 0.6s;
  -moz-transition: 0.5s ease-in-out 0.6s;
  -o-transition: 0.5s ease-in-out 0.6s;
  transition: 0.5s ease-in-out 0.5s;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn-5.active span:nth-child(2) {
  width: 40px;

  -webkit-transition: 0.3s ease-in-out 0.8s;
  -moz-transition: 0.3s ease-in-out 0.8s;
  -o-transition: 0.3s ease-in-out 0.8s;
  transition: 0.3s ease-in-out 0.8s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  background: black;
  will-change: transform;
  transform: translateX(100%);
  z-index: 2;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-footer-link {
  font-family: Hara-Regular, Inter, system-ui, Avenir, Helvetica, Arial,
    sans-serif;
  color: var(--color-offWhite);
}

.mobile-nav-link {
  overflow: hidden;
  display: flex;
  cursor: pointer;
}

.mobile-nav-link h4 {
  width: 100%;
  will-change: transform;
}

.bag-row {
  padding: 25px;
  overflow: hidden;
  display: flex;
}

.sub-nav {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5em;
  opacity: 0;
  color: #c3c3c3;
}

.sub-nav p a {
  color: #c3c3c3;
}


/*  */

/* Ensure the parent is the anchor for the absolute positioning */
.shop-wrapper {
    position: relative;
}

/* Mega Menu Container */
.mega-menu {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%; /* Sits right below the 'Shop' text */
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
    border-top: 2px solid #000; /* Optional: style accent */
}

/* Show on Hover */
.shop-wrapper:hover .mega-menu {
    display: block;
}

/* List Styling */
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
     width: 100%;
}

.mega-menu-list li {
    margin-bottom: 15px;
     width: 100%;
}

.mega-menu-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
    margin: 0px !important;
    width: 100%;
    display: block;
}

.mega-menu-list li a:hover {
    color: gray; /* Change to your brand color */
}