@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes zoomIn{0%{transform:scale(.95);opacity:0}to{transform:scale(1);opacity:1}}.zoom-overlay{position:fixed;inset:0;z-index:9999;background-color:rgba(0,0,0,.85);backdrop-filter:blur(8px);cursor:zoom-out;animation:fadeIn .3s ease-out}.zoom-content,.zoom-overlay{display:flex;align-items:center;justify-content:center}.zoom-content{position:relative;width:90vw;height:90vh;animation:zoomIn .3s cubic-bezier(.16,1,.3,1)}.zoom-image{object-fit:contain;width:100%;height:100%}.zoom-close{position:absolute;top:24px;right:24px;z-index:10000;width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:50%;background-color:rgba(255,255,255,.1);color:white;border:none;cursor:pointer;transition:background-color .2s,transform .2s}.zoom-close:hover{background-color:rgba(255,255,255,.2);transform:scale(1.1)}.zoom-close svg{width:24px;height:24px}.zoomable-trigger{cursor:zoom-in;transition:transform .3s cubic-bezier(.16,1,.3,1)}.zoomable-trigger:hover{transform:scale(1.02)}