body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

header {
  background: #f9f9f9;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav {
  position: relative;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-left: 1rem;
}

.cta {
  display: inline-block;
  background: red;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin: 2rem 0;
}

.cta:hover {
  background: darkred;
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
//  background: linear-gradient(to bottom right, #fff, #eee);
}

.hero img {
  max-width: 248px;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  color: red;
  margin: 0.5rem 0;
}

.description {
  max-width: 600px;
  margin: 1rem auto;
}

.note {
  font-size: 0.9rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  position: sticky;
  bottom: 0;
}

footer a {
  color: #ffcccb;
  margin-left: 0.5rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 3rem;
    right: 0;
    border: 1px solid #ccc;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
