body {
  background-color: #FFE0EB;
  color: #ff7db9;
  font-family: 'Patrick Hand SC';
}

.site-title {
  margin: 40px 0 0;
  font-size: 4em;
  color: #ff7db9;
  font-family: 'Patrick Hand SC';
  text-align: center;
}

.intro {
  text-align: center;
  font-size: 2em;
  margin-top: -15px;
}

.nav {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: #ff98c7;
  border: 2px solid #ff7db9;
  margin-top: 10px;
  width: 100%;
}

.nav li {
  flex: 1;
  text-align: center;
}

.nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  color: #ef356a;
  font-weight: bold;
  font-family: 'Patrick Hand SC', cursive;
  padding: 12px 0;
  background-color: #ff98c7;
  transition: all 0.3s ease;
  font-size: 2em;
  width: 100%;
}

.nav li:hover a {
  background-color: #ffafd6;
  color: white;
}

.nav li a::before,
.nav li a::after {
  content: "";
  font-size: 0.8em;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.nav li a::before {
  margin-right: 6px;
}

.nav li a::after {
  margin-left: 6px;
}

.nav li:hover a::before,
.nav li:hover a::after {
  content: "🍓";
  opacity: 1;
}

.wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

.wishlist a {
  color: #ff7db9;
  font-family: 'Patrick Hand SC';
  font-size: 1.1em;
  font-weight: bold;
  background-color: #fff0f6;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.strawberry-box {
  background-color: #fac8e2;
  border: 5px solid #f14172;
  border-radius: 30px;
  padding: 25px 30px;
  max-width: 600px;
  width: fit-content;
  margin-top: 40px;
  margin-left: 30px;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 5px #f14172, 0 0 8px #ffafd6, inset 0 0 2px #ffafd6;
}

.strawberry-box .corner,
.strawberry-box .side {
  position: absolute;
  font-size: 2.7em;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.strawberry-box:hover .corner,
.strawberry-box:hover .side {
  opacity: 1;
}

.corner.tl { top: -18px; left: -18px; }
.corner.tr { top: -18px; right: -18px; }
.corner.bl { bottom: -18px; left: -18px; }
.corner.br { bottom: -18px; right: -18px; }

.side.l { top: 50%; left: -18px; transform: translateY(-50%); }
.side.r { top: 50%; right: -18px; transform: translateY(-50%); }

.strawberry-box .corner::before,
.strawberry-box .side::before {
  content: "✨";
}

.favorite-title {
  margin-top: 0;
  font-size: 1.8em;
  color: #f14172;
  text-align: left;
}

.favorite-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.favorite-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
  font-size: 1.7em;
  font-weight: bold;
  color: #ef356a;
}

.favorite-list li::before {
  content: "♡";
  position: absolute;
  left: 12px;
  color: #f14172;
  font-size: 0.9em;
}

@keyframes sparkle-glow {
  0% {
    box-shadow: 0 0 10px #f14172, 0 0 20px #ffafd6, inset 0 0 5px #ffafd6;
  }
  50% {
    box-shadow: 0 0 20px #f14172, 0 0 30px #ffafd6, inset 0 0 10px #ffafd6;
  }
  100% {
    box-shadow: 0 0 10px #f14172, 0 0 20px #ffafd6, inset 0 0 5px #ffafd6;
  }
}
