/* HELLO KITTY CURSOR */
* {
  cursor: url(* {
  cursor: url("hellokitty-cursor.png"), auto;
}), auto;
}

/* BODY */
body {
  margin: 0;
  font-family: "Comic Sans MS", cursive;
  background-image: url("http://dl4.glitter-graphics.net/pub/577/577814mxl3zplgr.gif");
  background-repeat: repeat;
  background-attachment: fixed;
  color: #5a2a2a;
}

/* ☰ MENU BUTTON */
.menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 28px;
  background: #ffb6c1;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -270px;
  width: 260px;
  height: 100%;
  background: #ffe4ef;
  padding: 20px;
  transition: 0.3s;
  z-index: 1000;
  box-shadow: 4px 0 10px rgba(0,0,0,0.2);
}

.side-menu h2 {
  margin-top: 50px;
}

.side-menu a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #a46a4a;
  font-weight: bold;
}

.side-menu a:hover {
  color: #ff4d88;
}

.side-menu hr {
margin: 15px 0;
}

.custom {
  color: #ff2f92;
}

/* HEADER */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ffb6c1;
  padding: 20px;
  border-bottom: 4px solid #a46a4a;
}

.logo {
  width: 45px;
  image-rendering: pixelated;
}

/* MAIN CONTENT */
.container {
  background: rgba(255, 240, 246, 0.92);
  margin: 20px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.intro {
  max-width: 500px;
  margin: auto;
}

/* PRODUCTS */
.products {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #fff0f6;
  border: 2px solid #a46a4a;
  padding: 15px;
  width: 180px;
  border-radius: 15px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #ffb6c1;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}