
body {
  background: #0e0e0e;
  color: white;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 15px 30px;
}
.logo {
  font-weight: bold;
  font-size: 22px;
  color: white;
}
.logo span {
  color: #ff2f9f;
}
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}
nav a.active {
  border-bottom: 2px solid #ff2f9f;
}
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  background: #111;
}
.hero-text h1 {
  font-size: 36px;
  max-width: 500px;
}
.cta {
  display: inline-block;
  margin-top: 20px;
  background: #ff2f9f;
  padding: 12px 24px;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.shipping-info {
  margin-top: 10px;
  color: #aaa;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 20px;
  background: #181818;
}
.feature {
  background: #222;
  padding: 20px;
  border-radius: 10px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}
.product-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.product-card img {
  width: 100%;
  max-width: 180px;
}
.price {
  color: #5ef0c3;
}
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: #aaa;
}

a.product-card {
  display: block;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
a.product-card:hover {
  background: #2a2a2a;
  transform: scale(1.02);
}
a.product-card img {
  width: 100%;
  max-width: 180px;
  margin-bottom: 10px;
}
a.product-card h2 {
  font-size: 18px;
  margin: 10px 0 5px;
}
a.product-card .price {
  color: #5ef0c3;
}
