.image-popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.85);z-index:999999;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity 0.3s ease,visibility 0.3s ease;}.image-popup-overlay.active{opacity:1;visibility:visible;}.image-popup-container{position:relative;max-width:90vw;max-height:90vh;display:flex;justify-content:center;align-items:center;}.image-popup-img{max-width:100%;max-height:90vh;object-fit:contain;border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,0.5);transform:scale(0.9);transition:transform 0.3s ease;}.image-popup-overlay.active .image-popup-img{transform:scale(1);}.image-popup-close{position:absolute;top:-40px;right:-40px;background:transparent;border:none;color:white;font-size:40px;cursor:pointer;line-height:1;transition:color 0.2s;z-index:10;}.image-popup-close:hover{color:#E91E63;}@media (max-width:768px){.image-popup-close{top:-40px;right:0;}}