/* Lightbox Viewer Styles */
.zoom-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 10000; flex-direction: column; align-items: center; justify-content: center; }
.zoom-controls { position: absolute; top: 20px; display: flex; gap: 15px; z-index: 10001; }
.zoom-controls button { background: #111; color: #fff; border: 1px solid #333; padding: 10px 20px; border-radius: 50px; cursor: pointer; transition: 0.3s; }
.zoom-controls button:hover { background: #fff; color: #111; }
.zoom-img-container { width: 90%; height: 80%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.zoom-img-container img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: grab; user-select: none; -webkit-user-drag: none; }

@media (max-width: 768px) {
    .zoom-controls { bottom: 20px; top: auto; width: 100%; justify-content: center; }
}
