.navbar {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: black;
  box-shadow: 2px 2px 13px 0px #2e2e2e;
  padding: 0.8rem 2rem;
  flex-wrap: wrap;
}

.logo-div {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 20px;
}

.nav-links a:hover {
  color: #035efc;
}

.navbar img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: white;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    border-top: 1px solid #eee;
  }

  .menu-toggle {
    display: block;
    color: black;
  }
}
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;

  background: #f4f4f4;
}

header {

  font-size: 30px;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.card p {
  color: #555;
  font-size: 0.9rem;
}

.price {
  font-weight: bold;
  color: #4f46e5;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn:hover {
  background: #3730a3;
}