* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

:root {
  --body: #667085;
  --primary-color: #001b3d;
  --secondary-color: #087443;
  --accent-color: #f2b544;
  --main-bg: #f7f9f8;
  --heading-color: #102033;
  --second-text: #667085;
  --border-color: #e4e7ec;
  --success-green: #12b76a;
  --error-red: #d92d20;
  --warning-color: #f79009;
  --icon-color: #fff;
  --icon-hover-bg: #12b76a;
  --button-bg: #087443;
  --white-text-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}

button,
input,
select,
option,
optgroup,
textarea {
  outline: none;
  border: none;
}

/*  */

.empty-wishlist-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100vh;
}

.empty-wishlist {
  /* padding: 20px 100px; */
  text-align: center;
  max-width: 600px;
}

.empty-wishlist img {
  width: 300px;
}

.empty-wishlist h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
}

.empty-wishlist p {
  margin-bottom: 30px;
}

.empty-wishlist a {
  background-color: var(--secondary-color);
  color: var(--white-text-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.5s ease;
}

.empty-wishlist a:hover {
  background-color: var(--icon-hover-bg);
}

@media (max-width: 480px) {
  .empty-wishlist {
    padding: 20px;
  }

  .empty-wishlist h1 {
    font-size: 32px;
  }

  .empty-wishlist p {
    font-size: 14px;
  }

  .empty-wishlist a {
    font-size: 14px;
  }
}
