/* Surekha Virtual Reviews - review photos on the product page */

.svr-review-images {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 4px;
}

.svr-review-image {
	display: block;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 6px;
	background: none;
	cursor: zoom-in;
	overflow: hidden;
	line-height: 0;
	transition: transform .15s ease, box-shadow .15s ease;
}

.svr-review-image:hover,
.svr-review-image:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
	outline: none;
}

.svr-review-image img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	margin: 0;
	border-radius: 0;
}

/* Lightbox */
.svr-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .86);
	padding: 24px;
}

.svr-lightbox img {
	max-width: 92vw;
	max-height: 86vh;
	width: auto;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.svr-lightbox button {
	position: absolute;
	appearance: none;
	border: 0;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.svr-lightbox button:hover,
.svr-lightbox button:focus-visible {
	background: rgba(255, 255, 255, .3);
	outline: none;
}

.svr-lightbox .svr-lb-close {
	top: 18px;
	right: 18px;
	font-size: 22px;
}

.svr-lightbox .svr-lb-prev {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.svr-lightbox .svr-lb-next {
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.svr-lightbox .svr-lb-count {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
}

@media (max-width: 600px) {
	.svr-review-image img {
		width: 64px;
		height: 64px;
	}
}
