html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #a5a982;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
}

.outer-bg {
  padding: 2vw 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.card-grid {
  width: 370px;
  margin: 0 auto;
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 18px;
}

.card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px #0001;
  padding: 18px 13px 16px 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 260px;
}

.card-right {
  align-items: center;
  justify-content: flex-start;
  padding-left: 18px;
  padding-right: 18px;
}

.pink-row .card-left,
.pink-row .card-right {
  background: #f6c7c6;
}

.green-row .card-left,
.green-row .card-right {
  background: #b6c7a3;
}

.card-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ad5b6e;
  margin: 0 0 8px 0;
  line-height: 1.1;
}

.card-title .script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #ad5b6e;
  display: block;
  margin-top: -6px;
  margin-bottom: 2px;
  letter-spacing: 2px;
}

.card-desc {
  font-size: 0.97rem;
  color: #7b4254;
  margin-bottom: 18px;
  margin-top: 0;
}

.card-btn {
  background: #fff;
  border: 2px solid #ad5b6e;
  color: #ad5b6e;
  border-radius: 24px;
  padding: 6px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 0;
  box-shadow: 0 1px 2px #0001;
  transition: background 0.18s, color 0.18s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.card-btn:hover {
  background: #ad5b6e;
  color: #fff;
}

.card-right {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.bag-svg {
  width: 90px;
  height: 100px;
  margin: 0 auto 8px auto;
  display: block;
}

.essentials-list {
  font-size: 0.93rem;
  color: #7b4254;
  margin: 0;
  padding: 0 0 0 14px;
  list-style: disc;
  line-height: 1.55;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 470px) {
  .card-grid {
    width: 99vw;
  }
  .card-row {
    flex-direction: column;
    gap: 8px;
  }
  .card {
    min-height: 0;
    padding: 14px 10px 12px 10px;
  }
  .bag-svg {
    width: 70px;
    height: 80px;
  }
}
