.product-popup{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;display:none;align-items:center;justify-content:center;padding:2rem}.product-popup.is-active{display:flex}.product-popup__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.75);cursor:pointer;display:block!important;animation:fadeIn .3s ease}.product-popup__content{position:relative;width:100%;line-height:0;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.3);animation:slideUp .3s ease;z-index:1}.product-popup--portrait .product-popup__content{max-width:420px}.product-popup--horizontal .product-popup__content{max-width:860px}.product-popup__link{display:block;position:relative}.product-popup__link img{display:block;width:100%;height:auto;max-height:85vh;object-fit:cover}.product-popup__close{position:absolute;top:1rem;right:1rem;width:36px;height:36px;background:rgba(0,0,0,.45);border:none;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:50%;backdrop-filter:blur(2px);transition:background .2s ease,transform .2s ease;z-index:2}.product-popup__close:hover{background:rgba(0,0,0,.7);transform:rotate(90deg)}@media (max-width:600px){.product-popup{padding:1rem}.product-popup__content{max-width:100%!important}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}