body{

font-family: system-ui;

background:
linear-gradient(
135deg,
#ffd6e7,
#ffeef7
);

padding:40px;

}

h1{

margin-bottom:30px;

}

.stats{

display:flex;

gap:20px;

margin-bottom:30px;

}

.stat{

background:white;

padding:20px;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

#wishlist{

display:grid;

grid-template-columns:
repeat(auto-fill,minmax(260px,1fr));

gap:20px;

}

.card{

background:white;

padding:20px;

border-radius:16px;

box-shadow:
0 15px 40px rgba(0,0,0,0.1);

}

.priority{

font-weight:bold;

}

.high{

color:red;

}

.medium{

color:orange;

}

.low{

color:green;

}

button{

border:none;

padding:8px 14px;

border-radius:8px;

cursor:pointer;

background:#ff4fa3;

color:white;

margin-top:10px;

}

button:hover{

opacity:0.85;

}

.purchased{

opacity:0.5;

text-decoration:line-through;

}

#randomResult{

margin:30px 0;

font-size:22px;

font-weight:bold;

}
