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

.header {
  width: 100%;
  min-height: 90px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;

  background: #fff;

  border-bottom: 1px solid #e5e5e5;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  text-decoration: none;

  font-size: 42px;

  font-family: "Volkhov", serif;

  color: #000;

  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-links a {
  text-decoration: none;

  color: #000;

  font-size: 17px;

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: #777;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.icon-link {
  text-decoration: none;

  color: #000;

  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.icon-link:hover {
  color: #777;
}

.profile-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;

  top: 45px;
  right: 0;

  width: 220px;

  background: #fff;

  border-radius: 12px;

  padding: 15px;

  display: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-btn {
  border: none;
  background: none;
  cursor: pointer;

  color: #000;

  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-btn:hover {
  color: #777;
}

.dropdown-content {
  position: absolute;

  top: 45px;
  right: 0;

  width: 220px;

  background: #fff;

  border-radius: 12px;

  padding: 15px;

  display: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-content.show {
  display: block;
}
.dropdown-content p {
  margin-bottom: 10px;

  font-size: 14px;

  color: #444;

  font-family: "Poppins", sans-serif;
}

.dropdown-content a {
  display: block;

  margin-top: 12px;

  text-decoration: none;

  color: #000;

  font-size: 15px;

  font-family: "Poppins", sans-serif;
}

.dropdown-content a:hover {
  color: #777;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.signin-btn {
  text-decoration: none;

  color: #000;

  font-size: 17px;

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  transition: 0.3s;
}

.signin-btn:hover {
  color: #777;
}

.signup-btn {
  text-decoration: none;

  background: #000;

  color: #fff;

  padding: 12px 28px;

  border-radius: 12px;

  font-size: 16px;

  font-family: "Poppins", sans-serif;

  font-weight: 500;

  transition: 0.3s;
}

.signup-btn:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .header {
    padding: 20px 30px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .logo a {
    font-size: 34px;
  }

  .signup-btn {
    padding: 10px 22px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;

    justify-content: center;

    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;
  }

  .header-icons {
    flex-wrap: wrap;

    justify-content: center;
  }

  .logo a {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .logo a {
    font-size: 26px;
  }

  .icon-link {
    font-size: 18px;
  }

  .dropdown-content {
    width: 180px;
  }

  .auth-buttons {
    gap: 12px;
  }

  .signup-btn {
    padding: 10px 18px;

    font-size: 14px;
  }

  .signin-btn {
    font-size: 14px;
  }
}
.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;

  min-width: 20px;
  height: 20px;

  padding: 0 6px;

  border-radius: 50%;

  background: #e5e5e5;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 600;
  line-height: 1;

  border: 1px solid #cfcfcf;
}
.wishlist-icon {
  position: relative;
}

.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e5e5e5;
  color: #000000;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
