/* nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.logo img {
  height: 50px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-style: italic;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a.active-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}


.profile-circle {
  width: 38px;
  height: 38px;
  background-color: #000;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  border: 1px solid #000;
}
.profile-circle:hover {
  transform: scale(1.1);
}

.cart-container {
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  font-weight: bold;
}

.connect-btn {
  background: #000;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}
.logout-style {
  background-color: #c0392b !important;
}

.desktop-only {
  display: flex !important;
}
.mobile-only {
  display: none !important;
}


.hero-header {
  position: relative;
  height: 100vh;
  background-image: url("https://images.pexels.com/photos/4050388/pexels-photo-4050388.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.header-content h1 {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.hero-button {
  padding: 15px 30px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2100;
  }
  .burger span {
    display: block;
    height: 3px;
    width: 25px;
    background: black;
    transition: 0.3s ease-in-out;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
} */
