body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 2rem;
  background: #f9f6f7;
  color: #4a4a4a;
  text-align: center;
}

h1 {
  margin-bottom: 2rem;
  color: #c26df3;
  font-weight: 700;
}

.widget-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.widget {
  background: #fff6f8;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(184, 154, 202, 0.3);
  width: 300px;
  padding: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.widget:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(184, 154, 202, 0.5);
}

.widget img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #92bef8;
}

.widget h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
  color: #926aa6;
  font-weight: 600;
}

.widget p {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #6b5b7b;
}

.socials {
  margin: 2rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.socials a {
  display: inline-flex;
  transition: transform 0.3s ease;
  padding: 0;
  margin: 0;
}

.socials a:hover {
  transform: scale(1.2);
}

.special-orders {
  background: #fff6f8;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(184, 154, 202, 0.3);
  padding: 2.5rem 2rem;
  max-width: 400px;
  margin: 0 auto 3rem;
  color: #926aa6;
}

.special-orders h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.special-orders a {
  color: #c26df3;
  text-decoration: none;
  font-weight: 600;
}

.special-orders a:hover {
  text-decoration: underline;
}