:root {
  --bg: #fff7f1;
  --bg-deep: #f5d7d7;
  --surface: rgba(255, 250, 246, 0.7);
  --surface-strong: rgba(255, 250, 246, 0.88);
  --text: #3a2430;
  --muted: #7a5d68;
  --accent: #c85d6f;
  --accent-dark: #8f3148;
  --gold: #dbb572;
  --border: rgba(118, 65, 84, 0.12);
  --shadow: 0 30px 80px rgba(141, 82, 99, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(140deg, var(--bg) 0%, #fde4de 45%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 85%);
  pointer-events: none;
  opacity: 0.35;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
  animation: float 13s ease-in-out infinite;
}

.ambient-one,
.ambient-three {
  top: 4rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 214, 217, 0.95);
}

.ambient-two,
.ambient-four {
  left: -7rem;
  bottom: 3rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 233, 188, 0.58);
  animation-delay: -4s;
}

.site-header,
.hero,
.moments-section,
.wish-layout,
.reminder-layout,
.stress-layout {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.2rem, 4vw, 4rem);
}

.brand,
.nav-link,
.button,
.wish-remove,
.wish-check {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand {
  color: var(--accent-dark);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(14px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(141, 82, 99, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1rem, 4vw, 2rem) clamp(1.2rem, 5vw, 5rem) 4rem;
}

.hero-quiet {
  align-items: stretch;
}

.hero-copy,
.hero-card,
.moment-card,
.wish-panel,
.memory-card,
.reminder-card,
.reminder-list-card,
.stress-copy,
.stress-stage {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: clamp(1.6rem, 4vw, 3.5rem);
  border-radius: 2rem;
}

.eyebrow,
.panel-kicker,
.card-kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.lead,
.letter-card p,
.moment-card p,
.hero-card p,
.wish-intro p,
.wish-item-text {
  line-height: 1.75;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-chip-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-chip {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent-dark);
  font-weight: 600;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.button:hover,
.wish-remove:hover,
.wish-check:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f8;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 18px 34px rgba(143, 49, 72, 0.28);
}

.button-secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(143, 49, 72, 0.2);
}

.hero-card {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 22rem;
}

.quiet-card {
  min-height: auto;
}

.quiet-points {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.card-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.25;
  max-width: 12ch;
}

.heart-cluster {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 8rem;
  height: 8rem;
}

.heart-cluster span {
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, #ffb7c2, #c85d6f);
  transform: rotate(-45deg);
  border-radius: 0.4rem 0.4rem 0 0;
  animation: pulse 4.5s ease-in-out infinite;
}

.heart-cluster span::before,
.heart-cluster span::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 2.2rem;
  background: inherit;
  border-radius: 50%;
}

.heart-cluster span::before {
  top: -1.1rem;
  left: 0;
}

.heart-cluster span::after {
  top: 0;
  left: 1.1rem;
}

.heart-cluster span:nth-child(1) {
  right: 0;
  bottom: 0;
}

.heart-cluster span:nth-child(2) {
  right: 2.5rem;
  bottom: 1.9rem;
  transform: rotate(-45deg) scale(0.8);
  animation-delay: -1.5s;
}

.heart-cluster span:nth-child(3) {
  right: 1rem;
  bottom: 4rem;
  transform: rotate(-45deg) scale(0.62);
  animation-delay: -3s;
}

.memory-strip,
.moments-section,
.wish-layout,
.reminder-layout,
.stress-layout {
  padding: 1rem clamp(1.2rem, 5vw, 5rem) 4rem;
}

.game-section {
  padding: 1rem clamp(1.2rem, 5vw, 5rem) 4rem;
  position: relative;
  z-index: 1;
}

.game-shell {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 2rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.game-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.game-text,
.game-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.game-stats {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
}

.game-reset {
  min-height: 2.8rem;
}

.memory-game {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.game-card {
  position: relative;
  min-height: 5.5rem;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.game-card-face {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 5.5rem;
  border-radius: 1.4rem;
  font-weight: 700;
  text-transform: capitalize;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.game-card-front {
  background: linear-gradient(135deg, rgba(200, 93, 111, 0.95), rgba(143, 49, 72, 0.95));
  color: #fff;
}

.game-card-back {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(143, 49, 72, 0.1);
  opacity: 0;
  transform: scale(0.96);
}

.game-card[data-flipped="true"] .game-card-front,
.game-card[data-matched="true"] .game-card-front {
  opacity: 0;
  transform: scale(0.96);
}

.game-card[data-flipped="true"] .game-card-back,
.game-card[data-matched="true"] .game-card-back {
  opacity: 1;
  transform: scale(1);
}

.game-card[data-matched="true"] .game-card-back {
  background: linear-gradient(135deg, rgba(255, 247, 241, 0.98), rgba(255, 235, 214, 0.98));
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.6rem;
}

.memory-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
}

.memory-card {
  min-height: 16rem;
  padding: 1.3rem;
  border-radius: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.memory-photo {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16)),
    linear-gradient(140deg, rgba(200, 93, 111, 0.26), rgba(219, 181, 114, 0.22));
}

.memory-photo::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(143, 49, 72, 0.28);
}

.memory-note {
  background:
    radial-gradient(circle at top right, rgba(255, 231, 186, 0.7), transparent 35%),
    rgba(255, 250, 246, 0.88);
}

.placeholder-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.memory-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--text);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.moment-card {
  padding: 1.8rem;
  border-radius: 1.7rem;
}

.moment-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  color: var(--gold);
}

.wish-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.reminder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.stress-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.reminder-card,
.reminder-list-card {
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.stress-copy,
.stress-stage {
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.stress-stats {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}

.stress-tools {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.stress-helper {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.folder-status {
  margin: 0.75rem 0 0;
  color: var(--accent-dark);
  line-height: 1.6;
}

.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-label {
  cursor: pointer;
}

.photo-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.photo-picker-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.photo-thumb-card {
  position: relative;
}

.photo-thumb {
  width: 100%;
  padding: 0.25rem;
  border: 2px solid transparent;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.photo-thumb.active {
  border-color: rgba(143, 49, 72, 0.5);
  box-shadow: 0 10px 22px rgba(141, 82, 99, 0.14);
}

.photo-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.75rem;
}

.photo-thumb-remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 1.9rem;
  height: 1.9rem;
  border: none;
  border-radius: 50%;
  background: rgba(58, 36, 48, 0.72);
  color: #fff;
  cursor: pointer;
}

.stress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
}

.stress-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.bag-wrap {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.bag-chain {
  position: absolute;
  top: 0;
  width: 0.4rem;
  height: 7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(143, 49, 72, 0.18), rgba(143, 49, 72, 0.52));
}

.punching-bag {
  position: relative;
  width: min(16rem, 62vw);
  aspect-ratio: 0.72;
  border: none;
  border-radius: 45% 45% 38% 38% / 22% 22% 50% 50%;
  background:
    linear-gradient(180deg, #d96b7e 0%, #b6455c 52%, #8d3148 100%);
  box-shadow:
    inset -14px -18px 0 rgba(90, 23, 40, 0.22),
    inset 10px 12px 0 rgba(255, 211, 220, 0.22),
    0 24px 46px rgba(141, 49, 72, 0.22);
  cursor: pointer;
  transform-origin: top center;
  transition: transform 140ms ease;
}

.punching-bag::before,
.punching-bag::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 243, 245, 0.34);
}

.punching-bag::before {
  top: 28%;
}

.punching-bag::after {
  top: 58%;
}

.bag-highlight {
  position: absolute;
  top: 10%;
  left: 18%;
  width: 22%;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.42), rgba(255, 245, 247, 0));
  transform: rotate(8deg);
}

.bag-photo {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 46%;
  max-width: 7rem;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
  border: 0.28rem solid rgba(255, 250, 247, 0.9);
  box-shadow: 0 12px 24px rgba(58, 36, 48, 0.18);
  transform: translateX(-50%) rotate(-4deg);
  pointer-events: none;
}

.bag-label {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  color: rgba(255, 250, 247, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  letter-spacing: 0.08em;
}

.punching-bag.is-hit {
  animation: bag-swing 420ms ease;
}

.impact-ring {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border: 4px solid rgba(200, 93, 111, 0.28);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.impact-ring.is-live {
  animation: ring-burst 380ms ease;
}

.impact-text {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.55;
}

.impact-text.is-live {
  animation: text-pop 360ms ease;
}

.reminder-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.wish-intro,
.wish-panel {
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.wish-panel {
  background: var(--surface-strong);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.counter {
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(200, 93, 111, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
}

.wish-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.wish-form input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

.wish-form input:focus {
  outline: 2px solid rgba(200, 93, 111, 0.28);
  border-color: rgba(200, 93, 111, 0.35);
}

.wish-helper {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.wish-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.wish-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(143, 49, 72, 0.09);
}

.wish-item.done {
  background: rgba(248, 226, 229, 0.7);
}

.wish-check,
.wish-remove {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
}

.wish-check {
  position: relative;
  display: inline-grid;
  place-items: center;
  background: rgba(200, 93, 111, 0.12);
}

.wish-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.wish-check-mark {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(143, 49, 72, 0.45);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.wish-check input:checked + .wish-check-mark {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: transparent;
}

.wish-check input:checked + .wish-check-mark::after {
  content: "";
  position: absolute;
  left: 0.33rem;
  top: 0.1rem;
  width: 0.26rem;
  height: 0.56rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wish-remove {
  background: rgba(58, 36, 48, 0.08);
  color: var(--text);
  font-size: 1.1rem;
}

.wish-item.done .wish-item-text {
  text-decoration: line-through;
  opacity: 0.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal,
.reveal-delay,
.reveal-more {
  opacity: 0;
  animation: rise 0.9s ease forwards;
}

.reveal-delay {
  animation-delay: 0.16s;
}

.reveal-more {
  animation-delay: 0.3s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(-45deg) scale(1);
  }
  50% {
    transform: rotate(-45deg) scale(1.08);
  }
}

@keyframes bag-swing {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-8deg) scale(1.02);
  }
  55% {
    transform: rotate(7deg) scale(0.99);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes ring-burst {
  0% {
    opacity: 0.65;
    transform: scale(0.45);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes text-pop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-4px) scale(1.08);
  }
  100% {
    opacity: 0.55;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .hero,
  .wish-layout,
  .reminder-layout,
  .stress-layout,
  .memory-grid,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 10ch;
  }

  .wish-form,
  .panel-header,
  .game-topbar {
    grid-template-columns: 1fr;
  }

  .panel-header {
    display: grid;
  }

  .game-topbar {
    display: grid;
  }

  .memory-game {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .game-card,
  .game-card-face {
    min-height: 4.8rem;
  }

  .bag-wrap {
    min-height: 22rem;
  }

  .stress-tools {
    display: grid;
  }

  .photo-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wish-item {
    grid-template-columns: auto 1fr;
  }

  .wish-remove {
    grid-column: 2;
    justify-self: end;
  }
}
