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

body {
  font-family: Arial, sans-serif;
  background: #120818;
  color: white;
}

.navbar {
  background: #07030a;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #ffdd77;
}

.btn {
  display: inline-block;
  background: #ffdd77;
  color: #120818;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

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

.product-card {
  width: 300px;
  background: white;
  color: #120818;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 221, 119, 0.25);
  transition: 0.3s;
}

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

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-card h3,
.product-card p,
.product-card span {
  padding: 10px 15px;
}

.product-card span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #8a4cff;
}

.product-card button {
  width: 100%;
  padding: 15px;
  border: none;
  background: #8a4cff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.product-card button:hover {
  background: #6d32d9;
}

footer {
  text-align: center;
  padding: 25px;
  background: #07030a;
  margin-top: 60px;
}

.about-page {
  padding: 80px 12%;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.about-page h1 {
  color: #ffdd77;
  margin-bottom: 25px;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin: 8px;
  }
}