.siz-dishwasher-story {
  position: relative;
  min-height: 1000vh;
  margin: 0;
  background: #f5faf8;
  color: #101820;
  overflow: clip;
}

.siz-dishwasher-story,
.siz-dishwasher-story * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.siz-dishwasher-story__stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245,250,248,0.94), rgba(226,241,238,0.88)),
    linear-gradient(135deg, #ffffff, #dff1ee 55%, #f7fbff);
}

.siz-dishwasher-story__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: var(--siz-transition, 0);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.96), rgba(229, 247, 245, 0.72) 46%, rgba(229, 247, 245, 0) 72%),
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

.siz-dishwasher-story__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.siz-dishwasher-story__scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.siz-dishwasher-story__copy {
  position: absolute;
  z-index: 3;
  top: clamp(112px, 14vh, 150px);
  left: max(24px, calc((100vw - 1220px) / 2));
  width: min(390px, calc(100% - 48px));
  pointer-events: none;
}

.siz-dishwasher-story__step {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.siz-dishwasher-story__step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.siz-dishwasher-story__eyebrow {
  margin: 0 0 12px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.siz-dishwasher-story__step h2 {
  margin: 0;
  max-width: 370px;
  color: #101820;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
}

.siz-dishwasher-story__body {
  margin: 16px 0 0;
  color: #31424a;
  font-size: 16px;
  line-height: 1.65;
}

.siz-dishwasher-story__body > :first-child {
  margin-top: 0;
}

.siz-dishwasher-story__body p {
  margin: 16px 0 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.siz-dishwasher-story.is-dark-focus .siz-dishwasher-story__eyebrow {
  color: #7ed8ff;
}

.siz-dishwasher-story.is-dark-focus .siz-dishwasher-story__step h2,
.siz-dishwasher-story.is-dark-focus .siz-dishwasher-story__body,
.siz-dishwasher-story.is-dark-focus .siz-dishwasher-story__body p {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.siz-dishwasher-story__progress {
  position: absolute;
  z-index: 4;
  right: 28px;
  top: 50%;
  width: 3px;
  height: 190px;
  transform: translateY(-50%);
  background: rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.siz-dishwasher-story__progress span {
  display: block;
  width: 100%;
  height: var(--siz-progress, 0%);
  background: #0071e3;
  border-radius: inherit;
}

.siz-dishwasher-story__final {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.siz-dishwasher-story__fact {
  position: absolute;
  width: min(220px, 22vw);
  padding: 14px 15px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #101820;
  box-shadow: 0 16px 34px rgba(20, 70, 82, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.siz-dishwasher-story__fact.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.siz-dishwasher-story__fact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: 8px;
  background: #e5f4ff;
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.siz-dishwasher-story__fact strong {
  display: block;
  margin-top: 10px;
  color: #101820;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.siz-dishwasher-story__fact small {
  display: block;
  margin-top: 5px;
  color: #3d4d55;
  font-size: 13px;
  line-height: 1.35;
}

.siz-dishwasher-story__fact--top-left {
  top: 10vh;
  left: max(18px, calc((100vw - 1220px) / 2));
}

.siz-dishwasher-story__fact--top-right {
  top: 12vh;
  right: max(18px, calc((100vw - 1220px) / 2));
}

.siz-dishwasher-story__fact--bottom-left {
  bottom: 14vh;
  left: max(18px, calc((100vw - 1220px) / 2));
}

.siz-dishwasher-story__fact--bottom-right {
  right: max(18px, calc((100vw - 1220px) / 2));
  bottom: 16vh;
}

.siz-dishwasher-story__checkout {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #101820;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 26px));
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.siz-dishwasher-story__final.is-checkout-visible .siz-dishwasher-story__checkout {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.siz-dishwasher-story__pack {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  color: #101820;
}

.siz-dishwasher-story__pack img,
.siz-dishwasher-story__pack-fallback {
  width: min(174px, 30vw);
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 18px 28px rgba(17, 68, 84, 0.2));
}

.siz-dishwasher-story__pack-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(214,246,255,0.88)),
    linear-gradient(135deg, #0071e3, #11b8a6);
  border: 1px solid rgba(0, 113, 227, 0.24);
}

.siz-dishwasher-story__pack-fallback span {
  color: #0071e3;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.siz-dishwasher-story__pack-fallback small {
  margin-top: 10px;
  color: #23343c;
  font-size: 12px;
  line-height: 1.35;
}

.siz-dishwasher-story__pack strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.siz-dishwasher-story__pack > span {
  color: #4a5960;
  font-size: 13px;
  line-height: 1.35;
}

.siz-dishwasher-story__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: #0071e3;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 113, 227, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}

.siz-dishwasher-story__buy:hover {
  background: #005bb8;
  color: #fff;
  transform: translateY(-2px);
}

.siz-dishwasher-story__fallback {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #eef8f6;
  color: #101820;
  text-align: center;
}

.siz-dishwasher-story.is-webgl-missing .siz-dishwasher-story__fallback {
  display: flex;
}

@media (max-width: 900px) {
  .siz-dishwasher-story {
    min-height: 1080vh;
  }

  .siz-dishwasher-story__stage {
    min-height: 100vh;
    min-height: 100svh;
  }

  .siz-dishwasher-story__stage::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 22vh;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 250, 248, 0.86), rgba(245, 250, 248, 0.48) 58%, rgba(245, 250, 248, 0));
  }

  .siz-dishwasher-story__copy {
    z-index: 3;
    top: 30px;
    left: 16px;
    width: calc(100% - 32px);
    max-width: 330px;
  }

  .siz-dishwasher-story__step h2 {
    max-width: 300px;
    font-size: 26px;
    line-height: 1.08;
  }

  .siz-dishwasher-story__step p {
    max-width: 305px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .siz-dishwasher-story__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .siz-dishwasher-story__progress {
    right: 10px;
    width: 2px;
    height: 104px;
  }

  .siz-dishwasher-story__final {
    inset: 0;
  }

  .siz-dishwasher-story__fact {
    width: min(156px, calc(50vw - 22px));
    padding: 10px;
  }

  .siz-dishwasher-story__fact span {
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    font-size: 10px;
  }

  .siz-dishwasher-story__fact strong {
    margin-top: 7px;
    font-size: 13px;
  }

  .siz-dishwasher-story__fact small {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.25;
  }

  .siz-dishwasher-story__fact--top-left {
    top: 18px;
    left: 12px;
  }

  .siz-dishwasher-story__fact--top-right {
    top: 18px;
    right: 12px;
  }

  .siz-dishwasher-story__fact--bottom-left {
    bottom: 134px;
    left: 12px;
  }

  .siz-dishwasher-story__fact--bottom-right {
    right: 12px;
    bottom: 134px;
  }

  .siz-dishwasher-story__checkout {
    top: 50%;
    width: min(230px, calc(100vw - 32px));
  }

  .siz-dishwasher-story__final.is-checkout-visible .siz-dishwasher-story__fact--bottom-left,
  .siz-dishwasher-story__final.is-checkout-visible .siz-dishwasher-story__fact--bottom-right {
    opacity: 0;
    transform: translateY(12px);
  }

  .siz-dishwasher-story__pack {
    gap: 5px;
  }

  .siz-dishwasher-story__pack img,
  .siz-dishwasher-story__pack-fallback {
    width: min(154px, 42vw);
  }

  .siz-dishwasher-story__pack strong {
    margin-top: 4px;
    font-size: 17px;
  }

  .siz-dishwasher-story__pack > span {
    max-width: 260px;
    font-size: 12px;
  }

  .siz-dishwasher-story__pack-fallback {
    padding: 16px;
  }

  .siz-dishwasher-story__pack-fallback span {
    font-size: 24px;
  }

  .siz-dishwasher-story__pack-fallback small {
    margin-top: 10px;
    font-size: 11px;
  }

  .siz-dishwasher-story__buy {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
  }

  .siz-dishwasher-story__buy:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 420px) and (max-height: 740px) {
  .siz-dishwasher-story__copy {
    max-width: 285px;
  }

  .siz-dishwasher-story__step h2 {
    font-size: 23px;
  }

  .siz-dishwasher-story__step p {
    font-size: 12px;
  }

  .siz-dishwasher-story__pack img,
  .siz-dishwasher-story__pack-fallback {
    width: 132px;
  }

  .siz-dishwasher-story__fact small {
    display: none;
  }
}
