:root {
  --kv-sequence-v68-pull-duration: 1033ms;
  --kv-sequence-v68-pull-ease: cubic-bezier(.35, .5, .25, .9);
}

.kv-sequence-v68__page {
  position: relative;
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #fff !important;
  color: #0b0b0d;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.kv-sequence-v68__media {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.kv-sequence-v68__media > img,
.kv-sequence-v68__media picture,
.kv-sequence-v68__media picture > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.kv-sequence-v68__media > img,
.kv-sequence-v68__media picture > img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.014);
  transform-origin: center;
  transition: transform 1200ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

/* Keep the square candy artwork constrained to the viewport, rather than
   letting its intrinsic size expand the media grid and clip the lower phone. */
#p07-kv-candy .kv-sequence-v68__media > picture {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
}

.kv-sequence-v68__page.is-visible .kv-sequence-v68__media > img,
.kv-sequence-v68__page.is-visible .kv-sequence-v68__media picture > img {
  transform: scale(1);
}

.kv-sequence-v68__page--detail,
.kv-sequence-v68__media--detail {
  background: #f8fcf5 !important;
}

.kv-sequence-v68__detail-clip {
  position: relative;
  width: min(100vw, 84.99svh);
  aspect-ratio: 3579 / 4211;
  overflow: hidden;
}

.kv-sequence-v68__detail-clip > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  transform: scale(1.012);
  transform-origin: center top;
  transition: transform 1200ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.kv-sequence-v68__page.is-visible .kv-sequence-v68__detail-clip > img {
  transform: scale(1);
}

html.kv-sequence-v68--pulling,
html.kv-sequence-v68--pulling body {
  overscroll-behavior: none;
}

html.kv-sequence-v68--pulling body {
  overflow: hidden;
}

.kv-sequence-v68__pull-placeholder {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  background: #fff;
}

.kv-sequence-v68__page--sku.is-pull-layer {
  position: fixed;
  z-index: 260;
  inset: 0;
  transform: translate3d(0, 100%, 0);
  box-shadow: 0 -28px 72px rgba(10, 16, 26, .18);
  transition: none;
  will-change: transform, box-shadow;
}

.kv-sequence-v68__page--sku.is-pull-layer.is-pull-running {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 -2px 16px rgba(10, 16, 26, 0);
  transition:
    transform var(--kv-sequence-v68-pull-duration) var(--kv-sequence-v68-pull-ease),
    box-shadow 520ms ease 480ms;
}

@media (prefers-reduced-motion: reduce) {
  .kv-sequence-v68__media > img,
  .kv-sequence-v68__media picture > img,
  .kv-sequence-v68__detail-clip > img {
    transform: none;
    transition: none;
  }
}