.ex-reviews-page {
	font-size: 14px;
	max-width: 1600px;
	width: auto;
}

@media (min-width: 480px) and (max-width: 1600px) {
    .ex-reviews-page {
        margin: 0 3rem;
    }
}

.ex-product-image {
	align-self: stretch;
	justify-content: flex-start;
	flex-shrink: 0;
	position: relative;
}

.ex-product-image img {
	border-radius: var(--ex-radius-md);
	padding: 10px;
	object-fit: contain;
}

.review-button-container {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0;
}

.ex-btn-glass {
	background: rgba(255, 255, 255, 0.58);
	padding: 10px 20px;
	backdrop-filter: var(--ex-blur-light);
	-webkit-backdrop-filter: var(--ex-blur-light);
	width: 100%;
}

.ex-review-caption {
	flex: 3;
	align-self: stretch;
	justify-content: flex-start;
	padding: 15px;
	width: 100px;
}

.review-inner-container {
	justify-content: stretch;
	align-items: flex-start;
}

.ex-reviews-page .ex-review-block {
	padding: 0;
	overflow: hidden;
}

.ex-reviews-page .ex-zoom.active{
	transform: scale(4) translateX(30px) translateY(26px);
}

.ex-product-name {
	padding: 10px;
	text-align: center;
}

.ex-nav-panel {
	margin-bottom: 10px;
}

.ex-nav-item a {
	padding: 4px 8px;
	font-size: 0.9em;
	background: var(--ex-bg-light);
	border-radius: 22px;
	border: 1px solid var(--ex-border-light);
	display: block;
	color: inherit;
}

.ex-nav-item.active a {
	color: var(--ex-text-link-hover);
	border: 1px solid var(--ex-border);
}

.ex-nav-title {
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
}

.gap-10 {
	gap: 10px;
}

.ex-reviews-row {
	gap: 20px;
	align-items: flex-start;
}

.ex-products-section {
	margin: 16px 0 22px;
}

.ex-products-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

.ex-products-grid {
	display: grid;
	grid-template-columns: repeat(var(--ex-products-cols-desktop, 4), minmax(0, 1fr));
	gap: 12px;
}

.ex-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--ex-card-border);
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--ex-card-bg) 0%, var(--ex-card-bg-alt) 100%);
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ex-product-card:hover {
	transform: translateY(-4px);
	border-color: var(--ex-card-border-hover);
	box-shadow: var(--ex-card-shadow);
}

.ex-product-card__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	border-bottom: 1px solid var(--ex-border-light);
}

.ex-product-card__image {
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	padding: 0;
}

.ex-product-card__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	padding: 12px;
	flex: 1;
	min-height: 80px;
}

.ex-product-card__name {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--ex-card-title);
	max-height: 58px;
	overflow: hidden;
}

.ex-product-card__name:hover {
	color: var(--ex-text-link-hover);
}

.ex-product-card__actions {
	margin-top: auto;
}

.ex-product-card__price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
}

.ex-product-card__price .price-old {
	font-size: 13px;
	color: var(--ex-card-price-old);
	text-decoration: line-through;
	font-weight: 400;
}

.ex-product-card__price .price-normal {
	color: var(--ex-card-title);
}

.ex-product-card__cart {
	width: 100%;
	margin: 0;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
}

.ex-products-sentinel {
	height: 2px;
}

.ex-products-loader {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.ex-products-empty {
	padding: 12px;
	text-align: center;
	color: var(--ex-empty-text);
}

.hidden {
	display: none !important;
}

.reviews-stack-container {
	order: 1;
	flex: 1;
	width: 100%;
}

.review-rating-info-block {
	order: 2;
	flex: 0;
	border-radius: var(--ex-radius-lg);
	padding: 30px;
	position: sticky;
	top: 10px;
	border: var(--ex-border-default);
}

.ex-product-name a {
	color: var(--ex-text-dark);
	font-weight: 500;
}

.ex-product-name a:hover {
	color: var(--ex-text-link-hover);
}

.ex-product-info-block {
	flex: 1;
	position: relative;
}

@media (max-width: 991px) {
	.ex-reviews-row {
		flex-direction: column;
	}
	.review-rating-info-block {
		order: 0;
		width: 100%;
		position: relative;
	}
	.ex-reviews-page .ex-zoom.active {
    transform: scale(3) translateX(6px) translateY(22px);
  }
}

@media (max-width: 480px) {
	.review-inner-container {
		flex-direction: column;
		align-items: center;
	}
	.ex-review-caption {
		width: 100%;
	}
	.ex-product-image img {
		margin: 0 auto;
		max-height: 250px;
	}
	.ex-nav-item a{
		padding: 2px 5px;
	}
	.ex-reviews-page .ex-zoom.active{
		transform: scale(3) translateX(6px) translateY(3px);
	}
}

@media (max-width: 767px) {
	.ex-products-grid {
		grid-template-columns: repeat(var(--ex-products-cols-mobile, 2), minmax(0, 1fr));
	}

	.ex-product-card__image-wrap {
		height: 180px;
	}

	.ex-product-card__body {
		padding: 10px;
	}

	.ex-product-card__name {
		font-size: 13px;
		max-height: 52px;
	}

	.ex-product-card__price {
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.ex-products-grid {
		grid-template-columns: repeat(var(--ex-products-cols-tablet, 3), minmax(0, 1fr));
	}
}

.ex-nav-panel .ex-nav-items {
    flex-wrap: wrap;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ex-nav-items.expanded {
    max-height: 3000px !important;
}

.ex-nav-toggle {
	cursor: pointer;
	color: var(--ex-text-link);
	font-size: 13px;
	padding: 5px 0;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
}

.ex-nav-toggle:hover {
    color: var(--ex-text-link-hover);
}

.ex-nav-toggle .toggle-less {
    display: none;
}

.ex-nav-toggle.expanded .toggle-more {
    display: none;
}

.ex-nav-toggle.expanded .toggle-less {
    display: inline;
}

.ex-nav-toggle .ex-nav-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
		fill: currentColor;
}

.ex-nav-toggle.expanded .ex-nav-arrow {
    transform: rotate(180deg);
}