body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #F2E9E9 0%, #FFFFFF 100%);
}
.container {
  width: 100%;
  max-width: 960px;
  margin: 1px auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.toggle-wrapper {
  display: flex;
  background-color: #e7e3ed;
  border-radius: 999px;
  padding: 3px;
  width: 100%;
  max-width: 250px;
  justify-content: space-between;
  margin: 40px auto 1px;
}
.toggle-button {
  width: 50%;
  height: 30px;
  border-radius: 40px;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-button.active {
  background-color: #ffffff;
  border: 1px solid #AAAAAA;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.toggle-button img {
  width: 20px;
  height: 20px;
}
.toggle-labels {
  display: flex;
  justify-content: center;
  margin-top: 1px;
  margin-bottom: 1px;
  gap: 55px;
}
.toggle-label {
  font-weight: bold;
  font-size: 14px;
  color: #000;
  height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
}
.toggle-label.active {
  display: block;
}
.instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.steps-scroll {
  max-height: 588px;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  padding: 16px;
}
.steps-scroll::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.steps-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.step-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.hidden {
  display: none;
}
.instruction-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.instruction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-placeholder {
  width: 48px;
  height: 48px;
  background-color: #eee;
  border-radius: 8px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.instruction-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.label-tag {
  height: 28px;
  line-height: 28px;
  padding: 0px 12px;
  margin: 4px 0px;
  align-items: center;
  justify-content: center;
  border: 1px solid #afafaf;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
}
.info-block {
  display: flex;
  width: 317px;
  height: 130px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  overflow: hidden;
}
.image-wrapper {
  width: 130px;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.image-wrapper::before {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #d9d9d9;
  left: 50%;
  top: 1px;
}
.image-wrapper::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background-color: #d9d9d9;
  top: 50%;
  left: 10%;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.info-text {
  width: 186px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #000;
  line-height: normal;
  word-break: break-word;
  box-sizing: border-box;
  border-left: 1px solid #e0e0e0;
}
.info-text p {
  margin: 0;
  font-weight: 400;
}
.info-text p strong {
  font-weight: 700;
}
.info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.main-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .main-content {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 24px 24px;
  }
  .instruction-box {
    flex: 1;
    max-width: 400px;
  }
  .steps-scroll {
    flex: 1;
    max-width: 500px;
    max-height: 588px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
  }

  .step-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}
