body {
  margin: 0;
  background-color: #0c0c0c;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 70px;
  background: #000;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.navbar a.active {
  color: #7fff00;
}

.navbar a:hover {
  color: #7fff00;
}


.item {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.item img {
  width: 100%;
  border-radius: 12px;
}

.item h3 {
  margin: 15px 0 5px;
}

.item p {
  color: #7fff00;
}

.item button {
  background: #7fff00;
  border: none;
  color: black;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.item button:hover {
  background: #aaff66;
}

.pricing-section {
  text-align: center;
  padding: 100px 20px;
  background: #111;
}

.pricing-section h1 {
  font-size: 36px;
  color: #7fff00;
  margin-bottom: 40px;
}

.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plan {
  background: #000;
  border-radius: 20px;
  padding: 40px 30px;
  width: 280px;
  transition: 0.3s;
}

.plan.highlight {
  border: 2px solid #7fff00;
  transform: scale(1.05);
}

.plan h2 {
  margin-bottom: 15px;
}

.price {
  font-size: 40px;
  color: #7fff00;
}

.price span {
  font-size: 16px;
  color: white;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan ul li {
  margin: 10px 0;
}

.plan button {
  background: #7fff00;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.plan button:hover {
  background: #aaff66;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 14px;
  color: #777;
}



.shop-section {
  text-align: center;
  padding: 80px 20px;
}

.shop-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.subtitle {
  color: #bbb;
  margin-bottom: 50px;
  font-size: 16px;
}



.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 15px;
  width: 260px;
  text-align: center;
  padding: 25px 15px 40px;
  transition: 0.3s;
}

.product:hover {
  border-color: #c5ff41;
  transform: translateY(-8px);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.price {
  color: #c5ff41;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product button {
  background-color: #c5ff41;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.product button:hover {
  background-color: #b4f232;
}
