* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: black;
  color: white;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 600;
}

header nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1596464716127-f2a82984de30') center/cover;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.hero-text {
  color: white;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: hotpink;
  color: white;
  text-decoration: none;
  margin-top: 10px;
}

/* Products */
.products {
  padding: 50px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card button {
  margin-top: 10px;
  padding: 8px 15px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

/* About */
.about {
  padding: 50px;
  background: #f9f9f9;
  text-align: center;
}

/* Contact */
.contact {
  padding: 50px;
  text-align: center;
}

/* Footer */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}