.tindalos-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.tindalos-lightbox-container {
    position: relative;
}

.tindalos-lightbox-full {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    cursor: grab;
}

.tindalos-lightbox-close,
.tindalos-lightbox-zoom {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10001;
}

.tindalos-lightbox-zoom {
    right: 60px;
}
/*
.tindalos-lightbox-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
*/
.tindalos-lightbox-item {
	text-align: center;
}

.tindalos-lightbox-item img {
	max-width: 100%;
	height: auto;
	cursor: pointer;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.tindalos-lightbox-item img:hover {
	transform: scale(1.02);
}

.tindalos-title {
	margin-top: 8px;
	font-weight: bold;
}

.tindalos-caption {
	margin-top: 4px;
	color: #666;
	font-size: 0.95em;
}
/*
@media (min-width: 728px) {

.tindalos-lightbox-frontend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
}
*/
.tindalos-gallery-item {
    text-align: center;
}

.tindalos-gallery-item img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

