/* style.css */
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: #fafafa;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

nav a:hover {
  color: #027aff;
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero input {
  width: 60%;
  max-width: 500px;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.collections {
  padding: 40px 20px;
  text-align: center;
}

.collections h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 160px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #222;
  color: #fff;
  margin-top: 60px;
}
