.gallery-modal{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--global-modal-z,9999);display:flex;align-items:center;justify-content:center;animation:galleryModalFadeIn .3s ease-out;touch-action:none}.gallery-modal__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.9);backdrop-filter:blur(5px);cursor:zoom-out}.gallery-modal__content{position:relative;width:95vw;height:95vh;max-width:1600px}.gallery-modal__close-btn,.gallery-modal__content{display:flex;align-items:center;justify-content:center}.gallery-modal__close-btn{position:absolute;top:40px;right:40px;width:48px;height:48px;background-color:rgba(255,255,255,.1);border:none;border-radius:50%;color:white;cursor:pointer;transition:all .2s ease;z-index:2}.gallery-modal__close-btn:hover{background-color:rgba(255,255,255,.2);transform:scale(1.1)}.gallery-modal__nav{position:absolute;top:0;bottom:0;width:15%;min-width:80px;background:none;border:none;cursor:pointer;display:flex;align-items:center;padding:0 20px;z-index:1;transition:opacity .2s ease}.gallery-modal__nav--prev{left:0;justify-content:flex-start;background:linear-gradient(90deg,rgba(0,0,0,.3),transparent);opacity:0}.gallery-modal__nav--next{right:0;justify-content:flex-end;background:linear-gradient(270deg,rgba(0,0,0,.3),transparent);opacity:0}.gallery-modal__nav:hover{opacity:1}.gallery-modal__nav--disabled{cursor:not-allowed;opacity:.3}.gallery-modal__nav--disabled:hover{opacity:.3}.gallery-modal__nav-icon{width:48px;height:48px;background-color:rgba(255,255,255,.9);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#000;transition:all .2s ease;box-shadow:0 2px 8px rgba(0,0,0,.3)}.gallery-modal__nav:hover .gallery-modal__nav-icon{transform:scale(1.1);background-color:white}.gallery-modal__nav--disabled .gallery-modal__nav-icon{background-color:rgba(255,255,255,.3)}.gallery-modal__image-wrapper{position:relative;width:calc(100% - 160px);height:100%;display:flex;align-items:center;justify-content:center}.gallery-modal__image{position:relative!important;object-fit:contain;width:100%!important;height:100%!important}.gallery-modal__image--hidden{opacity:0}.gallery-modal__loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:10}.gallery-modal__loader-spinner{width:40px;height:40px;border:3px solid rgba(255,255,255,.2);border-top-color:white;border-radius:50%;animation:spin .8s linear infinite}.gallery-modal__error{display:flex;flex-direction:column;align-items:center;gap:16px;color:white;text-align:center}.gallery-modal__error svg{opacity:.7}.gallery-modal__error p{margin:0;font-size:16px;opacity:.9}.gallery-modal__counter{position:fixed;bottom:30px;left:50%;transform:translateX(-50%);background-color:rgba(0,0,0,.7);color:white;padding:8px 16px;border-radius:20px;font-size:14px;font-weight:500;backdrop-filter:blur(5px);z-index:10}@keyframes galleryModalFadeIn{0%{opacity:0}to{opacity:1}}@keyframes spin{to{transform:rotate(1turn)}}@media (max-width:768px){.gallery-modal__content{width:100vw;height:100vh}.gallery-modal__close-btn{top:20px;right:20px;width:40px;height:40px}.gallery-modal__nav{width:80px;min-width:unset;padding:0 10px}.gallery-modal__nav--next,.gallery-modal__nav--prev{background:none}.gallery-modal__nav-icon{width:40px;height:40px}.gallery-modal__nav--next,.gallery-modal__nav--prev{opacity:1}.gallery-modal__image-wrapper{width:calc(100% - 160px)}.gallery-modal__counter{bottom:20px;font-size:12px}.gallery-modal__error p{font-size:14px}}@media (max-width:480px){.gallery-modal__nav{width:60px;padding:0 5px}.gallery-modal__image-wrapper{width:calc(100% - 120px)}}@media (hover:none){.gallery-modal__nav--next,.gallery-modal__nav--prev{opacity:1}}body:has(.gallery-modal){overflow:hidden!important}