 *{
  margin: 0;
  padding: 0;
 }
 
 
 body {

      font-family: 'Montserrat', sans-serif;
      background: #fff9f5;
    
    }

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.logo img {
  width: 180px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e0c4f3;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding-bottom: 10px;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      text-decoration: none;
      font-weight: 600;
      color: #444;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #c78b3f;
    }

}

    .wishlist-container {
      padding: 40px 20px;
    }
    .wishlist-title {
      text-align: center;
      font-family: 'Playfair Display';
      font-size: 2rem;
      margin-bottom: 30px;
    }
    .wishlist-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .product-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 15px;
      width: 280px;
      text-align: center;
      position: relative;
    }
    .product-card img {
      width: 100%;
      border-radius: 10px;
    }
    .product-card h4 {
      margin-top: 10px;
      font-family: 'Playfair Display';
    }
    .product-card p {
      margin: 8px 0;
      font-weight: 600;
      color: #555;
    }
    .whatsapp-btn, .remove-btn {
      border: none;
      padding: 10px 18px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 0.9rem;
      margin: 8px 4px;
    }
    .whatsapp-btn {
      background-color: #25d366;
      color: white;
    }
    .remove-btn {
      background-color: #e74c3c;
      color: white;
    }

    @media (max-width: 768px) {
      .wishlist-grid {
        flex-direction: column;
        align-items: center;
      }
    }