body {
  font-family: "lorimer-no-2", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 1rem;
  background-color: #eeeeee;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  transition: background-color 0.8s ease;
}

h1 {
  font-family: "botanica-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: black;
  -webkit-text-stroke: 1px hsl(0, 0%, 70%);
}

.switches {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 280px;
}


.option-left, .option-right {
  font-family: "lorimer-no-2", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 1.3rem;
  width: 80px;
  text-align: center;
  color: black;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #fc7070;
  border-radius: 34px;
  transition: background-color 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: rgb(244, 242, 242);
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle input:checked + .slider {
  background-color: #7871f2;
}

.toggle input:checked + .slider::before {
  transform: translateX(26px);
}

.image-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.image-display {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.image-display.visible {
  opacity: 1;
}

.category-label {
  font-family: "lorimer-no-2", sans-serif;
  font-weight: 700;
  font-style: bold;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
  color: black;
}
