

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Mulish', sans-serif;
  color: #141420;
  background-color: #fff;
}

.favorites-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.favorites-header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-bottom: 3rem;
  gap: 1rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #141420;
  text-decoration: none;
  cursor: pointer;
}

.back-button::before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='16' viewBox='0 0 30 16' fill='none'><path d='M0.292892 7.29289C-0.0976315 7.68342 -0.0976315 8.31658 0.292892 8.70711L6.65685 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41421 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928932C7.68054 0.538408 7.04738 0.538408 6.65685 0.928932L0.292892 7.29289ZM30 8V7L1 7V8V9L30 9V8Z' fill='%23141420'/></svg>");
  display: inline-block;
  vertical-align: middle;
}

.favorites-title {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.favorites-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 10rem;
    max-width: 600px;
    width: 100%;
}
.heart-icon {
    /* position: relative; */
    /* width: 15%; */
    /* aspect-ratio: 1 / 1; */
    /* border: 2.3px solid #203C8F; */
    /* border-radius: 50%; */
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-icon svg {
  width: 50%;
  height: 50%;
}

.favorites-empty-title {
  font-family: 'Bitter', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #203C8F;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.favorites-empty-desc {
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #141420;
  padding: 0 5%;
}
