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

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffe6eb;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8a1b1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

.cart {
  font-size: 18px;
  color: #fff;
}

.hero {
  height: 400px;
  background-color: #f8c1c9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  padding: 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d9758a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.products {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

.products h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

.product {
  margin: 20px;
  width: 200px;
  background-color: #ffe6eb;
  padding: 10px;
  border-radius: 5px;
}

.product svg {
  width: 100%;
  height: auto;
}

.product h3 {
  margin-top: 10px;
  font-size: 18px;
}

.product p {
  margin-top: 5px;
  color: #666;
}

footer {
  background-color: #f8a1b1;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
}

.social-media a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
}

footer p {
  margin-top: 10px;
}