/* Modal Default Hidden State */
.rating-modal {
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	padding: 20px;
	transition: opacity 0.2s;
}

.rating-modal .modal-content-wrapper {
	display: flex;
	flex-direction: column;
	background-color: #fefefe;
	margin: auto;
	width: 100%;
	max-width: 1460px;
	opacity: 0;
	transform: translateY(10%);
	transition: opacity 0.4s ease 1s, transform 0.5s ease 1s;
	position: relative;
}

.rating-modal.is-active {
	display: flex;
	opacity: 1;
}

.rating-modal.is-active .modal-content-wrapper {
	opacity: 1;
	transform: translateY(0);
}

.rating-modal-content {
	padding-top: 60px;
	padding-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	max-width: 688px;
	width: 100%;
	position: relative;
}

.rating-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: transparent;
	border: 2px solid var(--golden-grass-50);
	border-radius: 50%;
	color: var(--golden-grass-50);
	font-size: 24px;
	z-index: 20;
}

.modal-intro {
	display: flex;
	flex-direction: column;
	gap: 50px;
	background-color: var(--midnight-blue);
	color: #fff;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.modal-intro--m1 {
	width: 100%;
	max-width: 571px;
	background-repeat: no-repeat;
}

.modal-intro__content {
	margin-bottom: auto;
	position: relative;
	padding-top: 60px;
	padding-left: 60px;
	padding-right: 30px;
	z-index: 10;
}

.modal-intro__h3 {
	margin-top: 10px;
}

.modal-intro__images {
	display: none;
	margin-bottom: 65px;
	margin-top: auto;
	padding-left: 30px;
	position: relative;
	z-index: 10;
}

.modal-intro__images img {
	width: 176px;
	max-width: 33.3%;
	text-align: center;
	font-size: 14px;
	color: var(--midnight-blue-40);
}

.modal-intro__bg-img {
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	right: 30px;
	margin: auto;
	max-width: 1400px;
	z-index: 1;
}

.modal-intro__p {
	font-size: 15px;
	margin-top: 40px;
	margin-bottom: 30px;
	opacity: .6;
}

.rating-modal-body {
	padding-top: 20px;
	padding-bottom: 20px;
}

.comment-respond {
	padding-left: 20px;
	padding-right: 20px;
}

.review-author-thanks {
	margin-top: 0;
}

.rating-modal .review-notes {
	font-size: 16px;
}

.rating-modal #reply-title,
.rating-modal .comment-notes {
	display: none;
}

.rating-modal .form-submit {
	margin-bottom: 0;
}

/* ===== POM TSR – Material-ish checkboxes ===== */
:root {
	--tsr-brand: #c29716;
	/* brand accent */
	--tsr-on-brand: #fff;
	/* tick color on brand */
	--tsr-outline: #b6b6b6;
	/* unchecked border */
	--tsr-focus: rgba(194, 151, 22, .28);
}

/* Layout/typography for the consent block */
.tsr-consents {
	margin: 10px 0 14px;
}

.tsr-consents .consent-item {
	margin: 0 0 8px;
}

.tsr-consents label {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	cursor: pointer;
	user-select: none;
	font-size: 90%;
	line-height: 1.45;
	margin-bottom: 10px;
}

/* Progressive enhancement fallback (older browsers) */
.tsr-consents input[type="checkbox"] {
	accent-color: var(--tsr-brand);
}

/* Enhanced Material skin where supported */
@supports (appearance: none) {
	.tsr-consents input[type="checkbox"] {
		appearance: none;
		inline-size: 22px;
		block-size: 22px;
		margin: 2px 0 0;
		/* align with first text line */
		border: 2px solid var(--tsr-outline);
		border-radius: 4px;
		/* MD3-ish rounded square */
		background: #fff;
		position: relative;
		top: 1px;
		flex: 0 0 auto;
		transition: border-color .2s ease, background-color .2s ease,
			box-shadow .2s ease, transform .08s ease;
	}

	/* Hover/press */
	.tsr-consents input[type="checkbox"]:hover {
		box-shadow: 0 0 0 6px rgba(0, 0, 0, .04);
	}

	.tsr-consents input[type="checkbox"]:active {
		transform: scale(.96);
	}

	/* Focus ring (keyboard) */
	.tsr-consents input[type="checkbox"]:focus-visible {
		outline: none;
		box-shadow: 0 0 0 4px var(--tsr-focus);
	}

	/* Tick mark */
	.tsr-consents input[type="checkbox"]::after {
		content: "";
		position: absolute;
		left: 7px;
		top: 8px;
		width: 16px;
		height: 8px;
		border-left: 3px solid var(--tsr-on-brand);
		border-bottom: 2px solid var(--tsr-on-brand);
		transform: rotate(-45deg) scale(0);
		transform-origin: left bottom;
		transition: transform .18s ease-out;
	}

	/* Checked state */
	.tsr-consents input[type="checkbox"]:checked {
		background: var(--tsr-brand);
		border-color: var(--tsr-brand);
	}

	.tsr-consents input[type="checkbox"]:checked::after {
		transform: rotate(-45deg) scale(1);
	}

	/* Disabled state (if you ever use it) */
	.tsr-consents input[type="checkbox"]:disabled {
		opacity: .45;
		cursor: not-allowed;
		box-shadow: none;
	}
}

/* Dark mode polish */
@media (prefers-color-scheme: dark) {
	.tsr-consents label {
		color: #e6e1e5;
	}

	@supports (appearance: none) {
		.tsr-consents input[type="checkbox"] {
			background: #1c1b1f;
			border-color: #4a4a4a;
		}

		.tsr-consents input[type="checkbox"]:hover {
			box-shadow: 0 0 0 6px rgba(255, 255, 255, .06);
		}
	}
}


.rating-modal textarea,
.rating-modal input[type="text"],
.rating-modal #tsr_tour_select,
.rating-modal .flatpickr-mobile,
.rating-modal input[type="email"] {
	background-color: transparent;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #B3B3B3;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #535353;
	display: block;
	font-size: var(--body-text);
	font-size: 1.125rem;
	line-height: 1.555556;
	margin-top: 0;
	margin-bottom: 0;
	max-width: 100%;
	width: 100%;
	outline: none;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
}

.rating-modal textarea:focus,
.rating-modal input[type="text"]:focus,
.rating-modal #tsr_tour_select:focus,
.rating-modal .flatpickr-mobile:focus,
.rating-modal input[type="email"]:focus {
	border-bottom-color: #C29716;
}

.rating-modal textarea:focus,
.rating-modal input[type="text"]:focus,
.rating-modal .flatpickr-mobile:focus,
.rating-modal input[type="email"]:focus {
	color: #C29716;
}

.rating-modal #tsr_tour_select,
.rating-modal .flatpickr-mobile {
	height: 46px;
}

.rating-modal label {
	color: #535353;
}

/* Text input + textarea placeholder */
.rating-modal input[type="text"]::placeholder,
.rating-modal input[type="email"]::placeholder,
.rating-modal input[type="number"]::placeholder,
.rating-modal textarea::placeholder {
	color: #535353;
	opacity: 1;
	transition: color .2s;
}

/* Fake placeholder for <select> */
.rating-modal select option[disabled][selected] {
	color: #535353;
}

/* Placeholder on focus */
.rating-modal input[type="text"]:focus::placeholder,
.rating-modal input[type="email"]:focus::placeholder,
.rating-modal input[type="number"]:focus::placeholder,
.rating-modal textarea:focus::placeholder {
	color: #bbb;
}

.rating-modal select:focus option[disabled][selected] {
	color: #bbb;
}

:root {
	--req-asterisk-color: #c00;
}

/* Make room for the asterisk inside the input */
.rating-modal p input[required],
.rating-modal p select[required],
.rating-modal p textarea[required] {
	padding-right: 1.25rem;
}

/* Position asterisk on the wrapper if it HAS a required control */
.rating-modal p {
	position: relative;
}

/* Asterisk on the right inside the field */
.rating-modal p:has(> input[required])::after,
.rating-modal p:has(> textarea[required])::after,
.rating-modal p:has(> select[required])::after {
	content: "*";
	position: absolute;
	right: 1rem;
	top: 20px;
	transform: translateY(-50%);
	color: var(--req-asterisk-color);
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
	opacity: .5;
}

.rating-modal p:has(> select[required])::after {
	/* right: -0.5rem; */
}

@media (min-width: 961px) {

	.rating-modal textarea,
	.rating-modal input[type="text"],
	.rating-modal #tsr_tour_select,
	.rating-modal .flatpickr-mobile,
	.rating-modal input[type="email"] {
		font-size: 1.25rem;
		line-height: 1.6;
	}

	.rating-modal #tsr_tour_select,
	.rating-modal .flatpickr-mobile {
		height: 50px;
	}

	.buttons-review {
		margin-bottom: -25px;
	}

}

.buttons-review {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

#steps-indication {
	font-size: 14px;
	display: inline-flex;
	gap: 1px;
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 70px;
}

@media (max-width: 420px) {
	#steps-indication {
		padding-left: 10px;
		padding-right: 5px;
	}

	.step-indication {
		line-height: 1.3;
	}

	.comment-form-rating {
		flex-direction: column;
	}

	.comment-form-rating label {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}
}

.step-indication {
	color: var(--gray-70, #535353);
	border-radius: 50px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 4px;
	padding-bottom: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.step-indication.is-active,
.step-indication.is-done {
	color: var(--golden-grass-50);
	border: 1px solid var(--golden-grass-50);
	border-radius: 50px;
}

.step-indication--1.is-done,
.step-indication--2.is-done {
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.step-indication--1.is-done+.step-indication.is-active,
.step-indication--2.is-done+.step-indication.is-active,
.step-indication--2.is-done {
	border-left: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}

.is-step-2 #steps-indication {
	margin-bottom: 40px;
}

.tsr-logged-in-banner {
	display: none;
}

.is-step-3 .tsr-logged-in-banner {
	display: block;
	padding-left: 20px;
}

.logged-in .is-step-3 #steps-indication {
	margin-bottom: 40px;
}

/* Star Rating Styles */
.comment-form-rating {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 60px;
	width: 100%;
}

.comment-form-rating label {
	display: block;
	margin-right: auto;
}

.comment-form-rating label:focus {
	outline: 1px dashed #ccc;
}

.star-rating {
	direction: rtl;
	display: inline-flex;
	font-size: 24px;
	position: relative;
}

.star-rating input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.star-rating input[type="radio"]:focus+label {
	outline: 1px dashed #b66315;
}

/* Style the stars */
.star-rating label {
	font-size: 40px;
	cursor: pointer;
	margin-right: 5px;
	transition: color 0.2s ease-in-out;
}

.star-rating label path {
	fill: #e6e6e6;
	transition: fill 0.2s ease-in-out;
}

/* Change color on hover */
.star-rating label:hover path,
.star-rating label:hover~label path {
	fill: #f5b301;
	/* Hover color (gold) */
}

/* Keep the stars colored after selection */
.star-rating input[type="radio"]:checked~label path {
	fill: #e6e6e6;
	/* Reset stars after selection */
}

.star-rating input[type="radio"]:checked+label path,
.star-rating input[type="radio"]:checked+label~label path {
	fill: #f5b301;
	/* Keep selected stars in gold */
}

.comment-form-tour-and-day {
	display: flex;
	gap: 20px;
}

@media (min-width: 961px) {
	.comment-form-tour-and-day {
		gap: 30px;
	}
}

@media (min-width: 651px) {
	.comment-form-tour-and-day>.tour-and-day__in:nth-child(1) {
		flex: 1;
	}

	.comment-form-tour-and-day>.tour-and-day__in:nth-child(2) {
		flex: 1.35;
	}

	.comment-form-tour-and-day>.tour-and-day__in:nth-child(3) {
		flex: 1.6;
	}
}

@media (max-width: 650px) {
	.comment-form-tour-and-day {
		flex-direction: column;
		gap: 0;
	}
}

.js-ui-message {
	margin-top: 30px;
	padding: 10px;
	display: none;
}

.rating-modal-body .success-message {
	color: #4CAF50;
	background-color: #eaf6ea;
	border-left: 4px solid #4CAF50;
	display: block;
}

.rating-modal-body .error-message {
	color: #f44336;
	background-color: #fdecea;
	border-left: 4px solid #f44336;
	display: block;
}

.rating-tourists.ratings-activated {
	cursor: pointer;
}

.rating-tourists.ratings-activated .rating-tourists__stars,
.rating-tourists.ratings-activated .rating-tourists__stars path {
	transition: all .2s;
}

.rating-tourists.ratings-activated:hover .rating-tourists__stars {
	transform: scale(1.1);
}

.rating-tourists.ratings-activated:hover .rating-tourists__stars path {
	fill: var(--golden-grass);
}

.comment-form-author label,
.comment-form-email label,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.tsr-stepper {
	display: flex;
	width: 100%;
}

.tsr-stepper {
	display: flex;
	width: 100%;
}

.tsr-step p {
	margin-top: 0;
	margin-bottom: 40px;
}

.comment-field-help {
	display: block;
	font-size: 15px;
	padding-left: 10px;
	padding-top: 5px;
	color: #535353;
}

.is-step-3 .tsr-step .comment-form-author,
.is-step-3 .tsr-step .comment-form-email {
	max-width: 300px;
}

.is-step-3 .tsr-step .form-hint {
	font-size: 14px;
	max-width: 517px;
	margin-top: 50px;
	margin-bottom: 60px;
}

.tsr-btn {
	justify-content: center;
	width: 100%;
}

.tsr-back {
	margin-right: auto;
	max-width: 175px;
	padding-left: 10px;
	padding-right: 20px;
}

.tsr-next {
	margin-left: auto;
	max-width: 179px;
	padding-left: 20px;
	padding-right: 10px;
}

.submit-review {
	max-width: 218px;
	padding-left: 20px;
	padding-right: 10px;
}

#tsr_step_counter {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #535353;
	font-size: 18px;
}

.comment-submitted #review-title,
.comment-submitted #commentform,
.comment-submitted .review-notes,
.comment-submitted .js-ui-message.success-message {
	display: none;
}

/* Filepond */
.filepond--root .filepond--credits {
	display: none !important;
}

.filepond--panel-root {
	border-radius: 0.5em;
	background-color: transparent;
}

.filepond--root {
	font-size: inherit;
	max-height: none;
	min-height: 246px;
}

.filepond--root .filepond--drop-label {
	border: 1px solid #B3B3B3;
	border-radius: 6px;
	background: transparent;
	min-height: 246px;
	position: relative;
}

.filepond--root .filepond--drop-label::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	bottom: 14px;
	border: 2px dashed #E6E6E6;
	border-radius: 6px;
	pointer-events: none;
}

.filepond--root .filepond--drop-label.filepond--drop-label label {
	display: block;
	margin: 0;
	padding: .75em;
	width: 100%;
}

.tsr-step .filepond--label-text {
	margin-bottom: 0;
}

.tsr-step .filepond--label-or {
	font-size: 14px;
	margin-bottom: 5px;
}

.tsr-step .filepond--label-action {
	font-size: 16px;
	margin-bottom: 5px;
	text-decoration: none;
}

.tsr-step .filepond--label-note {
	font-size: 14px;
	margin-bottom: 0;
}

.tsr-step .comment-form-attachments .small {
	margin-bottom: 5px;
	font-size: 14px;
}

.tsr-step .comment-form-attachments .small+label {
	color: #535353;
	margin-bottom: 30px;
	display: block;
}

.is-step-2 .tsr-stepper {
	margin-top: 40px;
}

.filepond--list.filepond--list {
	top: 10px;
}

.filepond--list {
	left: 0;
	right: 0;
}

.filepond--item {
	margin-top: .25em;
	margin-bottom: .25em;
	margin-left: 0;
	margin-right: 0;
}

.submit-review.is-loading .btn__arrow {
	visibility: hidden;
}

.submit-review.is-loading .btn__svgwrap {
	position: relative;
}

.submit-review.is-loading .btn__svgwrap::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: 8px;
	border: 2px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
	animation: tsr-spin 0.7s linear infinite;
}

.js-rating-modal.is-submitting {
	cursor: progress;
}

@keyframes tsr-spin {
	to {
		transform: rotate(360deg);
	}
}

.tsr-step {
	transition: opacity .5s;
}

.is-submitting .tsr-step {
	opacity: .5;
}

.is-submitting .tsr-stepper {
	pointer-events: none;
}

.pom-tabs-empty {
	text-align: center;
	opacity: .7;
	margin-bottom: 80px;
}

.pom-review-tabs {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 14px;
	padding-right: 14px;
}

.pom-tabs-list,
.pom-review-tabs-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 40px;
}

.pom-review-tab,
.pom-review-tabs-list button {
	background: none;
	border: none;
	position: relative;
	cursor: pointer;
	padding: 0;
	transition: all .15s;
}

.pom-review-tab::after {
	content: "";
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 70%;
	z-index: 1;
	opacity: .8;
	transition: opacity .5s ease, height .1s ease;
}

.pom-review-tab:hover::after {
	opacity: 1;
}

.pom-review-tab.is-active::after {
	height: 100%;
	opacity: 1;
}

.pom-review-tab::before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -10px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 32px;
	height: 28px;
	z-index: 2;
	opacity: 0;
	transition: all .35s ease .1s;
}

.pom-review-tab.is-active::before {
	margin-top: -20px;
	background: url(images/ok.svg);
	opacity: 1;
}

.pom-tab-thumb {
	position: relative;
}

.pom-tab-title {
	color: #fff;
	line-height: 1.25;
	position: absolute;
	left: 15px;
	bottom: 20px;
	max-width: 160px;
	text-align: left;
	z-index: 10;
}

.pom-review-tabs {
	margin-bottom: 80px;
}

.pom-review-tab.is-active {
	margin-top: -20px;
}

@media (min-width: 820px) {
	.pom-review-tabs {
		margin-bottom: 120px;
	}

	.pom-tab-title {
		left: 30px;
	}
}

.pom-review-tabs-panels {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pom-testimonial {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pom-review-tabs .pom-testimonial[hidden] {
	display: none !important;
}

.pom-testimonial.is-appearing {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 460ms ease 100ms, transform 360ms ease;
}

.pom-testimonial.is-appearing.is-on {
	opacity: 1;
	transform: translateY(0);
}

.pom-testimonial.is-appearing .pom-testimonial-header,
.pom-testimonial.is-appearing .pom-testimonial-content {
	opacity: 0;
	transform: translateY(80px);
	transition: opacity 480ms ease 120ms, transform 380ms ease 20ms;
}

.pom-testimonial.is-appearing.is-on .pom-testimonial-header,
.pom-testimonial.is-appearing.is-on .pom-testimonial-content {
	opacity: 1;
	transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {

	.pom-testimonial.is-appearing,
	.pom-testimonial.is-appearing .pom-testimonial-header,
	.pom-testimonial.is-appearing .pom-testimonial-content {
		transition: none;
		transform: none;
		opacity: 1;
	}
}

.pom-testimonial-header {
	text-align: center;
	flex: 1;
}

.pom-testimonial-title {
	margin-top: 10px;
	word-wrap: anywhere;
	/* word-break: break-word; */
}

.pom-testimonial-content {
	position: relative;
	flex: 1;
}

.pom-testimonial-content::before {
	content: "";
	background-color: #B3B3B3;
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: -40px;
}

.pom-testimonial-author {
	margin-top: 0;
	margin-bottom: 0;
}

.pom-testimonial-source {
	color: inherit;
}

.pom-testimonial-source:hover {
	text-decoration: underline;
}

.pom-testimonial-content__inner {
	width: 100%;
	margin-bottom: 30px;
}

.rating_source_wrap {
	/* display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px; */
}

.source-read-more {
	text-decoration: underline;
}

.rating_author_wrap {
	flex: 2;
}

.source_wrap {
	flex: 1.25;
}

.pom-testimonial-stars .pom-star {
	width: 18px;
}

.pom-review-tabs-panels__content {
	text-align: center;
	max-width: 736px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 30px;
}

.pom-review-tabs-panels__intro p {
	text-align: center;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.pom-review-tabs-panels__intro .buttons-review {
	margin-top: 30px;
	margin-bottom: 50px;
}

.pom-tabpanel .pom-testimonial {
	margin-top: 80px;
	position: relative;
}

.pom-tabpanel .pom-testimonial::before {
	content: "";
	background-color: #B3B3B3;
	display: block;
	width: 95%;
	height: 1px;
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.pom-testimonial.is-first-visible {
	margin-top: 40px;
}

.pom-tabpanel .pom-testimonial.is-first-visible::before {
	display: none;
}

.pom-load-more-wrap {
	text-align: center;
	margin-top: 40px;
}

.pom-load-more {
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 961px) {

	.pom-tabpanel .pom-testimonial {
		margin-top: 160px;
	}

	.pom-tabpanel .pom-testimonial::before {
		top: -80px;
		width: 100%;
	}

	.pom-testimonial.is-first-visible {
		margin-top: 80px;
	}

	.pom-review-tabs-panels__intro .buttons-review {
		margin-top: 30px;
		margin-bottom: 60px;
	}
}

@media (min-width: 1200px) {
	.pom-testimonial {
		flex-direction: row;
		gap: 80px;
	}

	.pom-testimonial-content__inner {
		max-width: 580px;
	}
}

@media (max-width: 1199px) {
	.pom-testimonial-content {
		max-width: 580px;
		margin-left: auto;
		margin-right: auto;
	}

	.pom-testimonial-content::before {
		display: none;
	}
}

/* Responsive Modal */
@media (min-width: 900px) {
	.rating-modal {
		padding: 30px;
	}

	.rating-modal .modal-content-wrapper {
		flex-direction: row;
		max-width: 1460px;
	}

	.modal-intro {
		gap: 50px;
		max-width: 593px;
	}

	.modal-intro__images {
		display: flex;
		gap: 5px;
		justify-content: end;
	}

	.modal-intro__bg-img {
		top: 150px;
		right: 30px;
	}

	.pom-review-tabs {
		padding-left: 30px;
		padding-right: 30px;
	}

	.pom-review-tabs-panels {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 900px) {
	.pom-testimonial-permalink {
		font-size: 14px;
		line-height: 1.1;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
		padding-right: 15px;
		white-space: normal;
	}

	.pom-tabpanel .pom-testimonial {
		padding-left: 20px;
		padding-right: 20px;
	}

	.rating-modal {
		padding: 0;
	}
}

/* Mobile: horizontal scroll with snap */
@media (max-width: 768px) {
	.pom-review-tabs-list {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		padding: 0 12px;
		scrollbar-width: none;
		position: relative;
		justify-content: left;
		padding-top: 20px;
		margin-top: -10px;
	}

	.pom-review-tabs-list::-webkit-scrollbar {
		display: none;
		/* WebKit hide bar */
	}

	.pom-review-tab {
		flex: 0 0 45%;
		scroll-snap-align: start;
	}

	.pom-tab-thumb img {
		width: 100%;
		height: auto;
		display: block;
	}

	.pom-review-tabs-list::after {
		content: "";
		flex: 0 0 12px;
	}

	.pom-review-tabs-list::before {
		content: "";
		position: sticky;
		right: 0;
		align-self: stretch;
		width: 24px;
		pointer-events: none;
		background: linear-gradient(to left, rgba(0, 0, 0, 0.08), transparent);
	}
}
