#header, #footer, #social, #shop-button, .font-buttons, .cd-top {
	display: none;
}

#wrapper {
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
}

#content-wrapper, .content-large {
	margin: 0 auto 100px auto;
	width: 100%;
	padding: 0 20px;
}

.gallery-masonry {
	column-width: 220px;
	column-gap: 16px;
	margin-top: 30px;
}

.gallery-masonry-item {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	margin-bottom: 16px;
}

.gallery-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	cursor: zoom-in;
}

.gallery-masonry-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	transition: transform 0.4s ease;
}

.gallery-link:hover img {
	transform: scale(1.05);
}

/* Lightbox */
.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.92);
}

.gallery-lightbox.is-active {
	display: flex;
}

.gallery-lightbox img {
	max-width: 92vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
	position: absolute;
	border: 0;
	background: rgba(255,255,255,0.12);
	color: #fff;
	cursor: pointer;
	font-size: 34px;
	line-height: 1;
	width: 48px;
	height: 48px;
	border-radius: 999px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
	background: rgba(255,255,255,0.24);
}

.gallery-lightbox-close {
	top: 24px;
	right: 24px;
}

.gallery-lightbox-prev {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.gallery-lightbox-next {
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 1200px) {
	.gallery-masonry {
		column-count: 4;
	}
}

@media (max-width: 900px) {
	.gallery-masonry {
		column-count: 3;
	}
}

@media (max-width: 768px) {
	.gallery-masonry {
		column-count: 1;
	}

	#content-wrapper, .content-large {
		padding: 20px 0;
	}

	.gallery-masonry {
		column-width: 300px;
		column-gap: 30px;
		margin-top: 0px;
	}


}


