.vhcm-gallery {
	--vhcm-black: #090909;
	--vhcm-card: #11110f;
	--vhcm-gold: #b59570;
	--vhcm-light-gold: #d8b78e;
	--vhcm-white: #ffffff;
	--vhcm-muted: #aaa39c;
	--vhcm-line: rgba(216,183,142,.22);
	width: 100%;
}

.vhcm-gallery-box {
	overflow: hidden;
	border: 1px solid var(--vhcm-line);
	border-radius: 24px;
	background: var(--vhcm-card);
}

.vhcm-gallery-viewer {
	position: relative;
	display: grid;
	min-height: 620px;
	padding: 28px;
	place-items: center;
	overflow: hidden;
}

.vhcm-gallery-main-image {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 650px;
	object-fit: contain;
	border-radius: 16px;
	transition: opacity .22s ease;
}

.vhcm-gallery-main-image.is-changing {
	opacity: .15;
}

.vhcm-gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: grid;
	width: 52px;
	height: 52px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	color: var(--vhcm-white);
	background: rgba(0,0,0,.62);
	cursor: pointer;
	font-size: 22px;
	transform: translateY(-50%);
	transition: .3s ease;
}

.vhcm-gallery-arrow:hover {
	color: var(--vhcm-black);
	background: var(--vhcm-gold);
	border-color: var(--vhcm-gold);
}

.vhcm-gallery-prev {
	left: 20px;
}

.vhcm-gallery-next {
	right: 20px;
}

.vhcm-gallery-caption {
	position: absolute;
	left: 24px;
	bottom: 22px;
	padding: 14px 18px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	background: rgba(0,0,0,.7);
	backdrop-filter: blur(8px);
}

.vhcm-gallery-category {
	display: block;
	margin-bottom: 5px;
	color: var(--vhcm-light-gold);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.vhcm-gallery-title {
	margin: 0;
	color: var(--vhcm-white);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
}

.vhcm-gallery-thumbnails {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding: 18px;
	border-top: 1px solid var(--vhcm-line);
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--vhcm-gold) rgba(255,255,255,.06);
}

.vhcm-gallery-thumb {
	min-width: 92px;
	width: 92px;
	height: 72px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 12px;
	background: none;
	cursor: pointer;
	opacity: .55;
	transition: .3s ease;
}

.vhcm-gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vhcm-gallery-thumb:hover {
	opacity: .85;
	transform: translateY(-2px);
}

.vhcm-gallery-thumb.is-active {
	opacity: 1;
	border-color: var(--vhcm-light-gold);
}

.vhcm-gallery-counter {
	margin: 18px 0 0;
	color: var(--vhcm-muted);
	text-align: center;
	font-size: 12px;
	letter-spacing: 1px;
}

.vhcm-gallery-empty {
	padding: 20px;
	color: #fff;
	background: #11110f;
}

@media (max-width: 600px) {
	.vhcm-gallery-viewer {
		min-height: 420px;
		padding: 15px 15px 95px;
	}

	.vhcm-gallery-main-image {
		max-height: 470px;
	}

	.vhcm-gallery-arrow {
		top: auto;
		bottom: 24px;
		width: 45px;
		height: 45px;
		transform: none;
	}

	.vhcm-gallery-prev {
		right: 76px;
		left: auto;
	}

	.vhcm-gallery-next {
		right: 20px;
	}

	.vhcm-gallery-caption {
		right: 130px;
		bottom: 22px;
		padding: 10px 12px;
	}

	.vhcm-gallery-title {
		font-size: 21px;
	}

	.vhcm-gallery-thumb {
		min-width: 76px;
		width: 76px;
		height: 60px;
	}
}
