body {
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  padding: 32px 24px 0 24px;
  background: #089da1; 
  color: #003366; 
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.wishlist-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  margin-bottom: 20px;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

.wishlist-item:hover {
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.35);
  transform: translateY(-6px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wishlist-item img {
  width: 140px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  background: #e9f0ff;
  margin-right: 20px;
}

.wishlist-details {
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #003366;
}

.remove-btn {
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 40px;
  align-self: flex-start;
}

.remove-btn:hover {
  background: #066a73;
}

.empty-wishlist {
  text-align: center;
  margin-top: 80px;
  font-size: 1.5rem;
  color: #ffffff;
  font-style: italic;
}

.checkout-btn {
  display: block;
  margin: 40px auto 60px auto;
  padding: 14px 40px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  background-color: #2c3e50;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  width: 240px;
  box-shadow: 0 6px 15px rgba(44, 62, 80, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-btn:hover {
  background-color: #066a73;
  box-shadow: 0 8px 20px rgba(6, 106, 115, 0.6);
}
