* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --black: #0b0b0b;
  --pink: #d94b7f;
  --light: #f9f9f9;
  --gray: #777;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--black);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
}

.logo img {
  width: 40px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  height: 90vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.products {
  padding: 80px 40px;
  background: var(--light);
  text-align: center;
}
 .products{
  display:flex;
  justify-content:center;
  margin-top:40px;
}
.logo {
  max-width: 180px;
  height: auto;
}
.buy-btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  background:#000;
  color:#fff;
}
.buy-btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  background:#000;
  color:#fff;
}

.buy-btn:hover{
  opacity:0.9;
  transform:translateY(-1px);
}

.product{
  text-align:center;
  max-width:300px;
}
.buy-btn{
  display:inline-block;
  margin-top:15px;
  padding:14px 26px;
  border-radius:30px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:all .2s ease;
}

.buy-btn:hover{
  transform:translateY(-2px);
  opacity:0.9;
}
.product img{
  width:100%;
  border-radius:12px;
}