.thyme-review-popup[hidden] {
	display: none;
}

.thyme-review-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.thyme-review-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
    backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	/*cursor: pointer;*/
	animation: thymeReviewOverlayFadeIn 0.28s ease forwards;
}


.thyme-review-popup__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 620px);
	background: #ffffff;
	color: #433f3d;
	border-radius: 18px;
    padding: clamp(36px, 5vw, 50px);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
	animation: thymeReviewPopupZoomIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	transform-origin: center;
}

.thyme-review-popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: #433f3d;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.thyme-review-popup__close:hover {
	opacity: 0.65;
}

.thyme-review-popup__content {
	text-align: center;
}

.thyme-review-popup__title {
	margin: 0 0 10px;
	font-size: clamp(22px, 3vw, 28px);
	line-height: 1.2;
	font-weight: 600;
}

.thyme-review-popup__text {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.5;
}

.thyme-review-popup__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 22px;
	border-radius: 999px;
	background: #1c1c1c;
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.thyme-review-popup__button:hover,
.thyme-review-popup__button:focus {
	color: #ffffff;
	opacity: 0.85;
}

body.thyme-review-popup-is-open {
	overflow: hidden;
}
.thyme-review-popup__button-icon {
    margin-right: 10px;
}
@keyframes thymeReviewOverlayFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes thymeReviewPopupZoomIn {
	from {
		opacity: 0;
		transform: scale(0.92) translateY(12px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
@media (prefers-reduced-motion: reduce) {
	.thyme-review-popup__overlay,
	.thyme-review-popup__dialog {
		animation: none;
	}
}