/* Elementor Tool Cinematics — shared widget styles.
 * All selectors are scoped under `.etc-*` to avoid leaking into the editor. */

/* ───── Curtain Reveal ─────────────────────────────────────────────── */
.etc-curtain { position: relative; height: var(--etc-curtain-distance, 300vh); }
.etc-curtain__sticky {
	position: sticky; top: 0; height: 100dvh; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}
.etc-curtain__panel {
	position: absolute; top: 0; bottom: 0; width: 50%;
	display: flex; align-items: center; z-index: 2;
	color: var(--etc-curtain-panel-text, #fff);
	will-change: transform;
}
.etc-curtain__panel--left { left: 0; background: var(--etc-curtain-left, #111); justify-content: flex-end; padding-right: 40px; }
.etc-curtain__panel--right { right: 0; background: var(--etc-curtain-right, #111); justify-content: flex-start; padding-left: 40px; }
.etc-curtain__panel h2 {
	font-size: clamp(36px, 7vw, 80px); font-weight: 700;
	letter-spacing: -0.04em; line-height: 0.95; margin: 0;
}
.etc-curtain__content {
	position: absolute; inset: 0; z-index: 1;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 40px;
}

/* ───── Zoom Parallax ──────────────────────────────────────────────── */
.etc-zoom { position: relative; height: 500vh; }
.etc-zoom__sticky {
	position: sticky; top: 0; min-height: 100dvh; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	perspective: 1000px;
}
.etc-zoom__layer { position: absolute; inset: 0; will-change: transform; display: flex; align-items: center; justify-content: center; }
.etc-zoom__fg { z-index: 50; }
.etc-zoom__headline {
	font-size: clamp(48px, 12vw, 160px); font-weight: 700;
	letter-spacing: -0.04em; text-align: center; line-height: 0.95;
	color: var(--etc-zoom-text, #fff); opacity: 0.9;
}
.etc-zoom__product { z-index: 60; opacity: 0; }
.etc-zoom__card {
	background: #fff; color: #111;
	border-radius: 24px; padding: 56px 48px; text-align: center;
	max-width: 460px; box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.etc-zoom__card h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 12px; }
.etc-zoom__card p { font-size: 16px; opacity: 0.7; line-height: 1.6; margin: 0 0 24px; }
.etc-zoom__btn {
	display: inline-block; padding: 12px 32px; background: #ff6b35; color: #fff;
	border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 500;
	transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.etc-zoom__btn:hover { transform: translateY(-1px) scale(1.03); }

/* ───── Color Shift ────────────────────────────────────────────────── */
.etc-color-shift {
	min-height: 100dvh;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; padding: 60px 24px;
}
.etc-color-shift__inner { max-width: 720px; }
body.etc-color-shift-active { transition: background 0.8s, color 0.8s; }

/* ───── Sticky Cards / Stack ───────────────────────────────────────── */
.etc-sticky { max-width: 960px; margin: 0 auto; padding: 0 24px 200px; }
.etc-sticky__label {
	text-align: center; font-size: 12px; font-weight: 400;
	letter-spacing: 0.15em; text-transform: uppercase;
	opacity: 0.5; margin-bottom: 32px; padding-top: 20px;
}
.etc-sticky__card {
	position: sticky;
	border-radius: 24px; padding: 48px 40px; margin-bottom: 32px;
	min-height: 320px;
	display: flex; flex-direction: column; justify-content: flex-end;
	box-shadow: 0 20px 60px rgba(0,0,0,0.12);
	will-change: transform;
}
.etc-sticky__num { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; }
.etc-sticky__card h3 { font-size: clamp(24px, 4vw, 36px); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.15; }
.etc-sticky__card p { font-size: 16px; opacity: 0.85; line-height: 1.6; max-width: 50ch; margin: 0 0 16px; }
.etc-sticky__cta {
	display: inline-block; align-self: flex-start; padding: 10px 22px;
	background: rgba(255,255,255,0.15); border: 1px solid currentColor;
	border-radius: 999px; text-decoration: none; color: inherit; font-size: 14px;
}
.etc-sticky__media img { max-width: 100%; height: auto; border-radius: 12px; margin-bottom: 16px; }

/* ───── Mesh Gradient ──────────────────────────────────────────────── */
.etc-mesh {
	position: relative; min-height: 100dvh; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
}
.etc-mesh__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.etc-mesh__content {
	position: relative; z-index: 2; text-align: center;
	max-width: 680px; padding: 40px; color: #fff;
}
.etc-mesh__content h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 600; letter-spacing: -0.025em; margin: 0 0 12px; }
.etc-mesh__content p { font-size: 17px; opacity: 0.85; line-height: 1.6; margin: 0 0 24px; }
