* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: white;
  height: 2000px;
}

header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  gap: 1rem;
}
.side-panel{
  display: none;
}
header button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

header button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.viewer-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

.main-image{
  display: none;
}

.welcomwe {
  display: none;
}
.content {
  padding: 1rem;
  /* max-width: 800px; */
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  color: #C9A86A;
  font-size: 30px;
}

.navbar {
  width: 100%;
  padding: 0.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.nav-left, .nav-right {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-right: 2rem;
}




.nav-item {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-item:hover {
  color: #ff9800; /* Warm gold color for a luxurious effect */
  transform: scale(1.05);
}




#searchInput {
  padding: 12px 20px;
  border: none;
  border-radius: 0;
  /* border-bottom: 2px solid #000; */
  margin-bottom: 30px;
  width: 300px;
  max-width: 100%;
  font-size: 14px;
  
  outline: none;
  background: rgba(255, 255, 255, 0);
  
  border-bottom: 2px solid #C9A86A;
  color: #F6F1EB;
}

#searchInput:focus {
  border-bottom: 2px solid #C9A86A;
}

::placeholder {
  font-size: 16px;
  color: #fffefe;
  opacity: 0.5; /* Adjusts the opacity of the placeholder text */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  max-height: 0;
  
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 120%;
  left: 0;
  
  background: rgba(0, 0, 0, 0.571);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  white-space: nowrap;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  transform: scaleY(1);
  padding: 0.8rem 1rem;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(140, 140, 140, 0.919);
  transform: translateX(10px);
}

.nav-right .nav-item {
  font-size: 1.2rem;
  display: flex;
  gap: 1rem;
}

.nav-right .nav-item span {
  font-size: 1.6rem;
}

.navbar .nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 1rem;
}

.navbar .nav-center .search-bar {
  font-size: 1rem;
}

#wrapper {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  padding: 0 20px;
}


.perfume {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2px;
  padding: 6px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.perfumeImage {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.perfumeImage:hover{
  transform: scale(1.05);
}

.name {
  font-size: 18px;
  font-weight: normal;
  /* color: #2a2a2a; */
  color: #F6F1EB;
  margin: 10px 0 5px;
  text-align: center;
}

.price {
  font-size: 16px;
  /* color: #5a5a5a; */
  color: #C9A86A;
  
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}

.btn {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: auto;
}

.addToCartButton {
  font-family: 'Montserrat', sans-serif;
  width: 105%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F6F1EB;
  padding: 10px 18px;
  border-radius: 2px;
  margin-top: 12px;
  font-size: 12px;
  transition: all 0.3s ease;
  
}

.addToCartButton:hover {
  
  background: rgba(255, 255, 255, 0.15);
  color: #C9A86A;
}


.view-all {
  
  margin-top: 40px;
  text-align: center; /* Center the button */
}

.view-all a {
  font-family: 'Montserrat', sans-serif;
  width: 200px; /* Set width to auto for better flexibility */
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F6F1EB;
  padding: 12px 20px; 
  border-radius: 5px; 
  font-size: 14px;
  display: inline-block; 
  transition: all 0.3s ease;
}

.view-all a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #C9A86A;
  border: 2px solid #8b795e; /* Luxe Gold */
}

.momo {
  
  display: flex;
  justify-content: center; /* Centering the content inside the div */
  margin-top: 30px;
}

.hero-content > img{
  margin-top: 5rem;
  width: 100%;
  height: auto;
 
}

.mobile-image{
  display: none;
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: -1;
}

.hero-content2 {
  
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero-content2 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #C9A86A; /* Gold */
}

.hero-content2 p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f6f1eb; /* Ivory */
}

.luxury-categories {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: -4px;
}

.luxury-categories h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  padding: 1rem;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.why-aromatte {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.why-aromatte h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}


#about {
  font-family: 'Montserrat', sans-serif;
  margin-top: 80px;
  text-align: center;
  background-color: #0e0e0e; /* Rich dark background */
  padding: 60px 20px;
}

#about h2 {
  font-size: 32px;
  color: #f6f1eb; /* Ivory */
  margin-bottom: 16px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #d0c7b7; /* Soft warm text */
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: #1a1a1a; /* Sleek black card */
  padding: 24px;
  border-radius: 14px;
  width: 240px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2); /* gold border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.15);
}

.card h3 {
  color: #d4af37; /* Gold */
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #e0dcd5;
}

#contact {
  background-color: #121212; /* darker contrast section */
  padding: 60px 20px;
  color: #f6f1eb;
  text-align: center;
}

#contact h2 {
  font-size: 28px;
  color: #f6f1eb;
}

.social-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a i {
  color: #f6f1eb;
  font-size: 26px;
  transition: color 0.3s ease;
}

.social-icons a:hover i {
  color: #d4af37; /* gold on hover */
}

.contact-text {
  font-size: 15px;
  color: #d0c7b7;
  margin-top: 20px;
}

.contact-text a {
  color: #d4af37;
  text-decoration: none;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }

  .navbar .nav-left, .navbar .nav-right {
    margin: 0;
    gap: 1rem;
  }

  .navbar .nav-center {
    margin-top: 1rem;
  }

  #wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .perfumeImage {
    height: 200px;
  }
}
@media (max-width: 480px) {


   /* Base Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
  }

  body {
    background-color: #0e0e0e;
    color: #fff;
  }
 
  html, body {
   width: 100%;
   overflow-x: hidden;
  }


  .navbar > .nav-left, .navbar > .nav-right {
    display: none;
  }
  .navbar > .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }
  /* Hamburger Icon */
  .hamburger {
    width: 30px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    /* background-color: #0E0E0E; */
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
  }

  .hamburger span {
    display: block;
    height: 3px;
   
    background: #d4af37; /* gold */
    
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  
  /* Side Panel */
  .side-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 220px;
    height: 100%;
    /* background-color: #1a1a1a; */
    background: rgba(9, 1, 1, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 30px;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .side-panel a {
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
  }

  .side-panel a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
  }

  .side-panel a:hover::after {
    width: 100%;
  }

  /* Active class for menu open */
  .side-panel.open {
    left: 0;
  }
  
  .viewer-container > spline-viewer {
    display: none;
  }

  .main-image {

    background: cover no-repeat center center;
    display: block; 
    width: 100%;
    height: 30rem;
  }
  .welcome{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    color: #C9A86A; /* Gold */
    text-align: center;
    margin-top: 20px;
  }
  .info-cards > .card {

    display: flex;
    align-items: center;
    text-align: left;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .about-text {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #d0c7b7; /* Soft warm text */
  }

  .about-text h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  #about h2 {
    font-size: 1.5rem;
  }

  #contact{
    /* height: 20rem; */
    padding: 40px 20px;
    margin-top: 20px;
  }

  .contact-text {
    font-size: 0.8rem;
    margin-top: 1rem;
  } 
  .contact-text a {
    font-size: 0.8rem;
  }
  .social-icons a i {
    font-size: 1.5rem;
  }

  .hero-image{
    display: none;
  margin-top: 5rem;
  width: 100%;

}

.mobile-image{
  display: block;
  width: 100%;
  height: auto;
}

#wrapper .btn {
  gap: 0.5rem;       /* ≈8 px – plenty on a 150 px card */
}

#wrapper .addToCartButton {
  width: 100%;       /* never exceed the card */
}
   .luxury-categories {
    padding: 2rem 1rem;
  }

  .luxury-categories h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

   .card-container {
    display: grid;
    grid-template-columns: repeat(2, 135px); /* Smaller card width */
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
  }

  .card {
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* background: #fff; */
    /* background: rgba(255, 255, 255, 0.05); */
    width: 100%;
  }

  .card img {
    height: 90px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .card h3 {
    font-size: 0.75rem;
    text-align: center;
    /* color: #333; */
    font-weight: 500;
  }

    .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 140px); /* Smaller card width */
    justify-content: center;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .why-card {
    /* background-color: #f8f8f8; */
    padding: 1rem 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .why-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
  }

  .why-card h3 {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
  }
}


