body {
  font-family: 'Cinzel', serif; /* Elegant mystical font */
  margin: 0;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a); /* Dark background */
  color: #e6e6e6;
  text-align: center;
}

/* 🧙 Header */
header {
  background: linear-gradient(90deg, #1f1f1f, #2e003e); /* Dark purple gradient */
  color: #e0d4f7;
  padding: 1.5em;
  border-bottom: 2px solid #4b0082;
  text-shadow: 0 0 6px #8a2be2;
}

nav a {
  margin: 0 15px;
  color: #d8bfd8;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Cinzel Decorative', serif;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffcc70;
  text-shadow: 0 0 10px #ffcc70;
}

/* 🔮 Section Headings */
h2 {
  margin-top: 40px;
  color: #cbb6f7;
  text-shadow: 0 0 8px #5f2c82;
  font-family: 'Uncial Antiqua', cursive;
  letter-spacing: 2px;
}

/* 🪄 Product Cards */
.product {
  display: inline-block;
  width: 220px;
  margin: 20px;
  padding: 15px;
  border: 1px solid #4b0082;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.9);
  box-shadow: 0 0 15px rgba(91, 33, 182, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #6a0dad;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.7);
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 204, 112, 0.9);
}

/* 🕯️ Footer */
footer {
  margin-top: 40px;
  padding: 15px;
  background: #111;
  color: #b6a3d1;
  font-family: 'Cinzel Decorative', serif;
  border-top: 2px solid #4b0082;
  text-shadow: 0 0 6px #6a0dad;
}
