.gallery-modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0,0,0,0.8);
z-index: 9999;
align-items: center;
justify-content: center; overflow: auto;
} .gallery-modal-content {
position: relative; max-width: 90vw;
max-height: 90vh; overflow: auto;
} .gallery-modal-content img {
display: block;
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
border-radius: 4px;
} .gallery-modal-close {
position: absolute;
top: -10px;
right: -10px;
background: #fff;
color: #333;
font-size: 24px;
line-height: 1;
width: 32px;
height: 32px;
text-align: center;
border-radius: 50%;
cursor: pointer;
}