/* intro v16 — Metropolis reel: film-perforation strips, image cover, load stagger, radius morph */

/* Film-perforation edge strips: colour comes from Tailwind bg-* on the element; mask punches holes */
.intro-reel__perf {
    -webkit-mask: radial-gradient(circle at center, transparent 0 0.28rem, black 0.3rem) center / 1.5rem 2.2rem;
    mask: radial-gradient(circle at center, transparent 0 0.28rem, black 0.3rem) center / 1.5rem 2.2rem;
    z-index: 1;
}

/* Background image fills the band, keeps aspect via object-fit (no BS utility) */
.intro-reel__row {
    min-height: 18rem;
    transition: border-radius 320ms ease;
    opacity: 0;
    animation: intro-reel-rise 520ms ease forwards;
}
.intro-reel__img {
    object-fit: cover;
    object-position: center;
}

/* Border-radius morph on hover */
.intro-reel__row:hover {
    border-radius: 2.25rem 0.5rem 2.25rem 0.5rem;
}

/* Stagger children — 80ms delay each on load */
.intro-reel__row:nth-child(1) { animation-delay: 0ms; }
.intro-reel__row:nth-child(2) { animation-delay: 80ms; }
.intro-reel__row:nth-child(3) { animation-delay: 160ms; }
.intro-reel__row:nth-child(4) { animation-delay: 240ms; }
.intro-reel__row:nth-child(5) { animation-delay: 320ms; }
.intro-reel__row:nth-child(6) { animation-delay: 400ms; }

@keyframes intro-reel-rise {
    from { opacity: 0; transform: translateY(1.5rem); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .intro-reel__row { animation: none; opacity: 1; }
}

.split-product__cart-btn.split-product__cart-btn--added {
  opacity: 0.6;
  cursor: not-allowed;
  transform: scale(1);
}

.split-product__cta-hover:hover { transform: scale(1.05); transition: transform .2s ease; }

.split-product__btn-hover:hover { transform: scale(1.05); transition: transform .2s ease; }

.split-product__grid-gap {
    gap: 4rem;
}

/* Flex + gap: two col-md-50% rows overflow; mirror Tailwind md:w-1/2 + flex-1 min-w-0 */
.split-product__media-slot {
    width: 100%;
}

.split-product__detail-slot {
    width: 100%;
    min-width: 0;
}

@media (min-width: 768px) {
    .split-product__media-slot {
        flex: 0 0 auto;
        width: 50%;
        max-width: 50%;
    }

    .split-product__detail-slot {
        flex: 1 1 0%;
        min-width: 0;
        width: auto;
    }
}

.split-product__cover {
    max-height: 28rem;
}

.split-product__dot {
    width: 0.5rem;
    height: 0.5rem;
}

@media (min-width: 768px) {
    .split-product__sticky-col {
        position: sticky;
        top: 2rem;
    }
}

.mxw-6xl { max-width: 72rem !important; }

/* v24 terminal — scanline overlay (no BS analog for repeating-linear-gradient) */
.perks-terminal__scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.015) 2px,
        rgba(0, 0, 0, 0.015) 4px
    );
    pointer-events: none;
}

/* traffic light dots — fixed size (no BS util for w-3 h-3) */
.perks-terminal__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* terminal line hover highlight */
.perks-terminal__line:hover {
    background-color: rgba(99, 102, 241, 0.04);
}

/* Маркери таймлайну: як TW w-4/h-4 та w-3/h-3 (border-box, сукупний розмір) */
.timeline-success-story__node {
    width: 1rem;
    height: 1rem;
    padding: 0;
    box-sizing: border-box;
}

.timeline-success-story__node--sm {
    width: 0.75rem;
    height: 0.75rem;
    padding: 0;
    box-sizing: border-box;
}

