 @font-face {
      font-family: 'Gilroy';
      src: url('Font/Gilroy-Medium.ttf') format('truetype'),
         
      
    }

*{
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: "Gilroy",sans-serif;
  margin-bottom: 0;
}
  
nav {
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 15px;
  margin-top: 16px;
  position: fixed;
  top: 5%;
      left: 50%;
      transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #fff;
}
nav img {
  width: 82px;
  height: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin:0;
  /* flex:1 1;   */
}
nav ul li{
  /* flex: 1; */
   text-align: center;
}
nav ul li a {
  font-family: "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  /* white-space: nowrap; */

  padding: 0.5rem 1rem;
}
nav ul li a:hover{
  background-color: #FDE0E9;
  
  color:#f50026;
  /* text-decoration: underline; */
}

 #Shopnowlink {
  background: #f50026;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding:20px 30px;
  border-radius: 10px;
}
.nav-links-wrapper {
  
  max-height:none;
  transition: max-height 0.48s cubic-bezier(.44,1.1,.23,0.98);
}
.hamburger{
  display:none;
  font-size:30px;
  cursor:pointer;
}

@media screen and (max-width:1700px) {
  nav {
    width: 70%;
  }
  nav ul {
    gap: 20px;
  }
    
}

@media screen and (max-width:1400px) {
    nav {
    width: 80%;
  }
}
@media screen and (max-width:1250px) {

    nav {
        width: 90%;
    }
}
@media screen and (max-width:1100px) {
    nav {
        width: 99%;
    }
    nav ul li a {
      padding: 0.3rem;
    }

}
@media screen and (max-width:950px) {
    nav {
        width: 90%;
    }
  .hamburger {
    display: block;
  }
   #Shopnowlink {
      padding:10px 20px;
  }

  /* Nav links wrapper initially collapsed */
  .nav-links-wrapper {
    display:none;
    max-height:0px;
    height: auto;
    overflow-y: hidden;
    background: rgba(255, 255, 255, 0.37);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 34px #0002;
    width: 100%;
    position: absolute;
    left: 0;
    top: 90px; /* adjust based on navbar height */
    z-index: 15;
    padding: 32px 0 28px 0;
    gap: 24px;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }

  /* When active, expand the nav links wrapper */
  .nav-links-wrapper.show {
    display:flex;
    max-height: 440px; /* Set high enough for full menu */
    pointer-events: auto;
  }

  /* Nav links vertical layout for mobile */
  .nav-links {
    flex-direction: column;
    gap: 24px;
    width: 80%;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }

}