@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 //*/

.stop-scroll {
  height: 100vh;
  width: 100%;
  overflow-y: hidden !important;
  padding-right: 15px;
}

.header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: 0.5s ease;
}

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

.mobileheader {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: 0.5s ease;
}

.desktop-header {
  padding: 5px 0px;
  position: relative;
  /* border-bottom: 1px solid #f5efe8; */
  background-color: #161616;
  z-index: 666666;
}

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

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

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 0px !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.logo svg {
  height: 22px;
  width: auto;
}

.my-nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  font-weight: 400;
  color: white;
  transition: 0.3s ease;
}

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

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

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

.header-icon {
  position: relative;
  color: white;
}

.below-header {
  background-color: #f5f5f5;
  padding: 15px 0px;
}

.slide-item {
  transform: rotate(-90deg);
  margin-bottom: 0px !important;
  font-size: 13px;
}

.slide-carousel-inner {
  overflow: unset !important;
}

.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-content {
  background-color: white;
  padding: 40px 0px 70px 0px;
}

.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-nav {
  background-color: #161616;
  z-index: 888888;
  padding: 5px 0px;
  /* border-bottom: 1px solid #f5f5f5; */
}

.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;
  background-color: #0000007d;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999999;
}

.mobile-mega-menu-content {
/*   padding-left: 20px; */
  float: right;
  width: 80%;
  background-color: #f5efe8;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s ease;
}

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

.mobile-nav-link {
  font-size: 18px;
  text-decoration: none !important;
  position: relative;
  color: black;
}

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

.mobile-menu-padding {
  padding: 11px 0px;
  margin-bottom: 0px !important;
}

.mobile-menu-padding svg {
  height: 20px;
  padding-right: 10px;
}

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

.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;
}

.mobile-mega-menu-links h4{
  font-weight: 400;
}

.women-mobile-mega-menu-content {
  position: fixed;
  right: 0px;
/*   padding-left: 20px; */
  float: right;
  width: 80%;
  background-color: #f5efe8;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s ease;
}

.women-mobile-mega-menu-content-active {
  transform: translateX(0%) !important;
  transition: 0.3s ease !important;
  z-index: 1000 !important;
}



.women-mobile-megamenu-link a {
  font-size: 17px !important;
  color: #161616;
}

.women-mobile-megamenu-link a:hover {
  color: black !important;
  transition: 0.3s ease;
}

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

.disable-women-mobile-mega-menu-content {
  cursor: pointer !important;
}

.women-mobile-megamenu-link svg {
  fill: grey !important;
}

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

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

  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

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

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

/*///// 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%);
}

.bottom_bar_col {
  transform: rotate(90deg);
}

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





/* Dropdown */

.nav-dropdown-menu{
  background-color: #161616;
    color: white;
    border-top: 1px solid rgb(245, 239, 232);
    border-radius: 0px;
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate3d(0px, 59px, 0px);
}

.nav-dropdown-menu li a{
  color: #f5efe8;
    font-size: 14px;
}

.nav-dropdown-menu li a:hover{
  background-color: #f5efe8;
}