/* Image Comparison Widget – functional styles only */
.icw{position:relative;overflow:hidden;contain:layout style;user-select:none;-webkit-user-select:none;touch-action:pan-y}
.icw img{display:block;width:100%;height:auto;pointer-events:none}
.icw-after{position:relative}
.icw-before{position:absolute;inset:0;overflow:hidden;will-change:clip-path}
.icw-before img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* Handle */
.icw-handle{position:absolute;top:0;bottom:0;width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:2;cursor:ew-resize;outline:none}
.icw-handle__line{flex:1;width:var(--icw-line,2px);background:var(--icw-color,#fff)}
.icw-handle__grip{display:flex;align-items:center;justify-content:center;gap:2px;width:44px;height:44px;border-radius:50%;background:rgba(0,0,0,.45);border:var(--icw-line,2px) solid var(--icw-color,#fff);color:var(--icw-color,#fff);flex-shrink:0;backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px)}
.icw-handle__arrow{display:flex;width:14px;height:14px}
.icw-handle__arrow svg{width:100%;height:100%}

/* Labels */
.icw-label{position:absolute;bottom:12px;padding:4px 10px;font-size:13px;line-height:1;color:var(--icw-color,#fff);background:rgba(0,0,0,.45);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);pointer-events:none}
.icw-label--before{left:12px}
.icw-label--after{right:12px}
