.vg-reviews {
    --vg-green: #00a651;
    --vg-green-dark: #00833f;
    --vg-text: #20262d;
    --vg-muted: #75808b;
    --vg-border: #e3e9ed;
    --vg-soft: #f5f8f9;
    --vg-star: #f5a623;
    margin: 22px 0 26px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafb 0%, #f3f6f8 100%);
    box-shadow: inset 0 0 0 1px rgba(31, 45, 61, .035);
}

.vg-reviews__heading { margin-bottom: 14px; }
.vg-reviews__title { margin: 0; color: var(--vg-text); font-size: 22px; font-weight: 700; line-height: 1.25; }
.vg-reviews__title--page { font-size: 28px; }

.vg-reviews__summary {
    display: grid;
    grid-template-columns: minmax(190px, 230px) minmax(280px, 1fr) minmax(190px, 220px);
    align-items: stretch;
    gap: 22px;
    padding: 20px 22px;
    border: 1px solid var(--vg-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(33, 45, 57, .05);
}

.vg-reviews__score { display: flex; flex-direction: column; justify-content: center; padding-right: 22px; border-right: 1px solid var(--vg-border); }
.vg-reviews__score-number { color: #111820; font-size: 42px; font-weight: 750; line-height: 1; letter-spacing: -.04em; }
.vg-stars { position: relative; display: inline-block; width: max-content; color: #d8dde2; font-family: Arial, sans-serif; letter-spacing: 3px; line-height: 1; white-space: nowrap; }
.vg-stars::before { position: absolute; top: 0; left: 0; width: var(--vg-star-width); overflow: hidden; color: var(--vg-star); content: "★★★★★"; white-space: nowrap; }
.vg-stars--large { margin-top: 9px; font-size: 21px; }
.vg-stars--card { margin-top: 5px; font-size: 16px; letter-spacing: 2px; }
.vg-reviews__count { margin-top: 9px; color: var(--vg-muted); font-size: 14px; }

.vg-reviews__themes { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.vg-reviews__theme { display: grid; grid-template-columns: max-content 1fr 34px; align-items: center; gap: 10px; min-width: 0; }
.vg-reviews__theme-name, .vg-reviews__theme-value { color: var(--vg-text); font-size: 14px; }
.vg-reviews__theme-value { text-align: right; }
.vg-reviews__theme-line { min-width: 24px; border-bottom: 1px dotted #c9d2d9; }

.vg-reviews__actions { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding-left: 22px; border-left: 1px solid var(--vg-border); }
.vg-reviews__button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; width: 100%; padding: 10px 18px; border-radius: 8px; font-weight: 600; text-decoration: none !important; cursor: pointer; transition: .2s ease; }
.vg-reviews__button--primary { border: 1px solid var(--vg-green); background: var(--vg-green); color: #fff !important; }
.vg-reviews__button--primary:hover { border-color: var(--vg-green-dark); background: var(--vg-green-dark); }
.vg-reviews__button--secondary { border: 1px solid var(--vg-green); background: #fff; color: var(--vg-green) !important; }
.vg-reviews__button--secondary:hover { background: #f2fbf6; }
.vg-reviews__guest { font-size: 13px; line-height: 1.45; }

.vg-reviews__cards { display: grid; gap: 14px; margin-top: 14px; }
.vg-reviews__cards--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vg-reviews__cards--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.vg-review-card { display: flex; flex-direction: column; min-width: 0; padding: 18px; border: 1px solid var(--vg-border); border-radius: 14px; background: #fff; box-shadow: 0 8px 20px rgba(33, 45, 57, .045); transition: transform .2s ease, box-shadow .2s ease; }
.vg-review-card--home { min-height: 235px; }
.vg-review-card--full { min-height: 250px; }
.vg-review-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(33, 45, 57, .08); }
.vg-review-card__top { display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 11px; }
.vg-review-card__avatar { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #263238; font-size: 15px; font-weight: 700; }
.vg-review-card__avatar--1 { background: #dff5e5; }
.vg-review-card__avatar--2 { background: #fff0ce; }
.vg-review-card__avatar--3 { background: #ece5ff; }
.vg-review-card__avatar--4 { background: #dfefff; }
.vg-review-card__identity { min-width: 0; }
.vg-review-card__author { overflow: hidden; color: var(--vg-text); font-size: 15px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.vg-review-card__date { align-self: start; padding-top: 2px; color: var(--vg-muted); font-size: 12px; white-space: nowrap; }
.vg-review-card__text { margin-top: 16px; color: #3d4852; font-size: 14px; line-height: 1.6; word-break: break-word; }
.vg-review-card__more { display: inline-flex; align-items: center; gap: 7px; width: max-content; margin-top: 12px; padding: 0; border: 0; background: transparent; color: var(--vg-green); font-size: 14px; font-weight: 600; text-align: left; cursor: pointer; }
.vg-review-card__more:hover { color: var(--vg-green-dark); }
.vg-review-card__response { display: flex; flex-direction: column; gap: 4px; margin-top: 14px; padding: 12px 14px; border-left: 3px solid var(--vg-green); border-radius: 0 8px 8px 0; background: #f3faf6; color: #47535d; font-size: 13px; line-height: 1.5; }
.vg-review-card__response strong { color: var(--vg-green-dark); }
.vg-review-card__feedback { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--vg-border); }
.vg-feedback-button { padding: 0; border: 0; background: transparent; color: #59656f; font-size: 13px; cursor: pointer; }
.vg-feedback-button:hover { color: var(--vg-green); }
.vg-feedback-button--dislike { margin-left: auto; }

.vg-reviews__toolbar { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.vg-reviews__toolbar label { margin: 0; color: var(--vg-muted); font-size: 14px; font-weight: 500; }
.vg-reviews__sort { min-width: 220px; height: 42px; padding: 0 38px 0 13px; border: 1px solid var(--vg-border); border-radius: 8px; background-color: #fff; color: var(--vg-text); font-size: 14px; }

.vg-reviews__load-wrap { margin-top: 18px; text-align: center; }
.vg-reviews__load-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-width: 230px; min-height: 44px; padding: 10px 20px; border: 1px solid var(--vg-green); border-radius: 8px; background: #fff; color: var(--vg-green); font-size: 14px; font-weight: 600; cursor: pointer; }
.vg-reviews__load-button:hover { background: #f2fbf6; }
.vg-reviews__load-button:disabled { opacity: .65; cursor: wait; }
.vg-reviews__load-button.is-loading .vg-reviews__load-icon { animation: vg-review-spin .8s linear infinite; }
.vg-reviews__load-text--mobile { display: none; }
.vg-reviews__all-loaded { margin-top: 18px; color: var(--vg-muted); font-size: 13px; text-align: center; }
@keyframes vg-review-spin { to { transform: rotate(360deg); } }

.vg-reviews__empty { display: flex; flex-direction: column; align-items: center; gap: 5px; margin-top: 14px; padding: 24px; border: 1px dashed #ced7dd; border-radius: 14px; background: rgba(255, 255, 255, .7); color: var(--vg-muted); text-align: center; }
.vg-reviews__empty strong { color: var(--vg-text); font-size: 16px; }
.vg-reviews__mobile-all { display: none; }
.vg-reviews__noscript-pagination { margin-top: 18px; text-align: center; }

.vg-review-modal .modal-content { overflow: hidden; border: 0; border-radius: 16px; }
.vg-review-modal__header { padding: 18px 20px; border-bottom: 1px solid var(--vg-border); background: #f7f9fa; }
.vg-review-modal__header .modal-title { color: var(--vg-text); font-size: 20px; font-weight: 700; }
.vg-review-modal__body { padding: 20px; }
.vg-review-modal__body label { display: block; margin-bottom: 7px; color: var(--vg-text); font-weight: 600; }
.vg-review-modal__body .form-control { min-height: 44px; border: 1px solid var(--vg-border); border-radius: 8px; box-shadow: none; }
.vg-review-modal__body textarea.form-control { min-height: 120px; resize: vertical; }
.vg-review-modal__ratings { display: grid; gap: 10px; margin-top: 16px; }
.vg-review-modal__rating-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0; padding: 12px 0; border: 0; border-bottom: 1px solid var(--vg-border); }
.vg-review-modal__rating-row legend { width: auto; margin: 0; border: 0; color: var(--vg-text); font-size: 14px; font-weight: 600; }
.vg-rating-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; }
.vg-rating-input input { position: absolute; opacity: 0; pointer-events: none; }
.vg-review-modal .vg-rating-input label {
    margin: 0 2px;
    color: #d8dde2 !important;
    -webkit-text-fill-color: #d8dde2 !important;
    font-family: Arial, sans-serif !important;
    font-size: 25px;
    font-weight: 400 !important;
    line-height: 1;
    text-shadow: none !important;
    cursor: pointer;
}
.vg-review-modal .vg-rating-input input:checked ~ label,
.vg-review-modal .vg-rating-input label:hover,
.vg-review-modal .vg-rating-input label:hover ~ label {
    color: #f5a623 !important;
    -webkit-text-fill-color: #f5a623 !important;
    text-shadow: none !important;
}
.vg-review-modal__footer { padding: 16px 20px; border-top: 1px solid var(--vg-border); }
.vg-review-modal__footer .vg-reviews__button { width: auto; min-width: 190px; }

@media (max-width: 991px) {
    .vg-reviews__summary { grid-template-columns: 180px 1fr; }
    .vg-reviews__actions { grid-column: 1 / -1; flex-direction: row; padding: 14px 0 0; border-top: 1px solid var(--vg-border); border-left: 0; }
    .vg-reviews__cards--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .vg-reviews-page { padding-left: 10px; padding-right: 10px; }
    .vg-reviews { margin: 16px 0 20px; padding: 15px 12px; border-radius: 16px; }
    .vg-reviews__title { font-size: 20px; }
    .vg-reviews__title--page { font-size: 24px; }
    .vg-reviews__summary { grid-template-columns: minmax(0, 1fr); gap: 15px; padding: 17px; }
    .vg-reviews__score { padding: 0; border-right: 0; }
    .vg-reviews__score-number { font-size: 40px; }
    .vg-reviews__themes { padding-top: 14px; border-top: 1px solid var(--vg-border); }
    .vg-reviews__actions { grid-column: auto; flex-direction: column; padding-top: 14px; }
    .vg-reviews--home .vg-reviews__actions .vg-reviews__button--secondary { display: none; }
    .vg-reviews__cards--home, .vg-reviews__cards--page { grid-template-columns: minmax(0, 1fr); }
    .vg-reviews__cards--page.vg-reviews__cards--initial .vg-review-card:nth-child(n+5) { display: none; }
    .vg-reviews--home .vg-review-card:nth-child(n+2) { display: none; }
    .vg-review-card { min-height: 0; padding: 16px; }
    .vg-review-card:hover { transform: none; }
    .vg-review-card__top { grid-template-columns: 44px minmax(0, 1fr); }
    .vg-review-card__date { grid-column: 2; margin-top: -3px; }
    .vg-reviews__toolbar { align-items: stretch; flex-direction: column; }
    .vg-reviews__sort { width: 100%; min-width: 0; }
    .vg-reviews__load-button { width: 100%; min-width: 0; }
    .vg-reviews__load-text--mobile { display: inline; }
    .vg-reviews__load-text--desktop { display: none; }
    .vg-reviews__mobile-all { display: flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 14px; border: 1px solid var(--vg-green); border-radius: 8px; color: var(--vg-green) !important; font-weight: 600; text-decoration: none !important; }
    .vg-review-modal { width: calc(100% - 20px); margin: 10px auto; }
    .vg-review-modal__rating-row { align-items: flex-start; flex-direction: column; gap: 8px; }
    .vg-review-modal__footer .vg-reviews__button { width: 100%; }
}


/* v1.1.2: reliable review form popup */
#modal-review-store .vg-review-modal--fixed {
	width: calc(100% - 30px);
	max-width: 520px;
	margin: 15px auto;
}

#modal-review-store .vg-review-modal--fixed .modal-content {
	display: flex !important;
	flex-direction: column !important;
	max-height: calc(100vh - 30px) !important;
	overflow: hidden !important;
	border: 0 !important;
	border-radius: 16px !important;
	background: #fff !important;
}

#modal-review-store .vg-review-modal--fixed .vg-review-modal__header,
#modal-review-store .vg-review-modal--fixed .vg-review-modal__footer {
	flex: 0 0 auto !important;
	background: #fff !important;
}

#modal-review-store .vg-review-modal--fixed .vg-review-modal__body {
	flex: 1 1 auto !important;
	min-height: 0 !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	padding: 18px 20px !important;
}

#modal-review-store .vg-review-modal--fixed .vg-review-modal__footer {
	display: block !important;
	padding: 14px 20px 18px !important;
	border-top: 1px solid #e8edf1 !important;
}

#modal-review-store .vg-review-modal--fixed .vg-review-modal__submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 46px !important;
	margin: 0 !important;
	border: 1px solid #00a651 !important;
	border-radius: 8px !important;
	background: #00a651 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal--fixed .vg-review-modal__submit:hover {
	border-color: #00853f !important;
	background: #00853f !important;
}

#modal-review-store .vg-review-modal--fixed .vg-rating-input {
	display: inline-flex !important;
	flex-direction: row-reverse !important;
	justify-content: flex-end !important;
}

#modal-review-store .vg-review-modal--fixed .vg-rating-input input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

#modal-review-store .vg-review-modal--fixed .vg-rating-input label {
	display: inline-block !important;
	margin: 0 2px !important;
	padding: 0 !important;
	color: #d8dde2 !important;
	-webkit-text-fill-color: #d8dde2 !important;
	background: none !important;
	font-family: Arial, sans-serif !important;
	font-size: 27px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-shadow: none !important;
	cursor: pointer !important;
}

#modal-review-store .vg-review-modal--fixed .vg-rating-input input:checked ~ label,
#modal-review-store .vg-review-modal--fixed .vg-rating-input label:hover,
#modal-review-store .vg-review-modal--fixed .vg-rating-input label:hover ~ label {
	color: #f5a623 !important;
	-webkit-text-fill-color: #f5a623 !important;
	background: none !important;
	text-shadow: none !important;
}

@media (max-width: 767px) {
	#modal-review-store .vg-review-modal--fixed {
		width: calc(100% - 16px);
		margin: 8px auto;
	}

	#modal-review-store .vg-review-modal--fixed .modal-content {
		max-height: calc(100vh - 16px) !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__body {
		padding: 16px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__footer {
		padding: 12px 16px 16px !important;
	}
}


/* v1.1.3: submit button lives inside the form, not in Chameleon's hidden modal-footer */
#modal-review-store .vg-review-modal__submit-wrap {
	position: sticky !important;
	bottom: -18px !important;
	z-index: 5 !important;
	display: block !important;
	margin: 18px -20px -18px !important;
	padding: 14px 20px 18px !important;
	border-top: 1px solid #e8edf1 !important;
	background: #fff !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store #vg-reviews-store-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 46px !important;
	margin: 0 !important;
	border: 1px solid #00a651 !important;
	border-radius: 8px !important;
	background: #00a651 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store #vg-reviews-store-submit:hover,
#modal-review-store #vg-reviews-store-submit:focus {
	border-color: #00853f !important;
	background: #00853f !important;
	color: #fff !important;
}

#modal-review-store #vg-reviews-store-submit[disabled] {
	cursor: wait !important;
	opacity: .7 !important;
}

@media (max-width: 767px) {
	#modal-review-store .vg-review-modal__submit-wrap {
		bottom: -16px !important;
		margin: 16px -16px -16px !important;
		padding: 12px 16px 16px !important;
	}
}


/* v1.1.4: final live-site fix — popup controller now renders vg template */
#modal-review-store #vg-form-reviews-store .vg-review-modal__submit-wrap {
    display: block !important;
    position: relative !important;
    bottom: auto !important;
    z-index: 20 !important;
    margin: 18px 0 0 !important;
    padding: 16px 0 2px !important;
    border-top: 1px solid #e8edf1 !important;
    background: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
}
#modal-review-store #vg-form-reviews-store #vg-reviews-store-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    border: 1px solid #00a651 !important;
    border-radius: 8px !important;
    background: #00a651 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
#modal-review-store #vg-form-reviews-store #vg-reviews-store-submit:hover,
#modal-review-store #vg-form-reviews-store #vg-reviews-store-submit:focus {
    border-color: #00853f !important;
    background: #00853f !important;
    color: #fff !important;
}


/* v1.1.6: final submit-button protection after removing the text-length limit */
#modal-review-store .vg-review-modal__submit-wrap,
#modal-review-store #vg-reviews-store-submit {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__submit-wrap {
	flex-direction: column !important;
	width: 100% !important;
	margin-top: 18px !important;
}

#modal-review-store #vg-reviews-store-submit {
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 46px !important;
	border: 1px solid #00a651 !important;
	border-radius: 8px !important;
	background: #00a651 !important;
	color: #fff !important;
	font-weight: 700 !important;
}


/* v1.1.7: modern review moderation success toast */
.vg-review-success-toast {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100500;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) 34px;
	align-items: center;
	gap: 13px;
	width: min(430px, calc(100% - 40px));
	padding: 15px 14px 16px 15px;
	overflow: hidden;
	border: 1px solid #dfe9e3;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(21, 42, 31, .18);
	opacity: 0;
	transform: translate3d(0, -16px, 0) scale(.98);
	transition: opacity .24s ease, transform .24s ease;
	pointer-events: none;
}

.vg-review-success-toast.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	pointer-events: auto;
}

.vg-review-success-toast__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e8f8ef;
	color: #00a651;
}

.vg-review-success-toast__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vg-review-success-toast__content {
	min-width: 0;
}

.vg-review-success-toast__title {
	display: block;
	margin-bottom: 3px;
	color: #18231d;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.vg-review-success-toast__text {
	color: #657169;
	font-size: 13px;
	line-height: 1.45;
}

.vg-review-success-toast__close {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: start;
	width: 32px;
	height: 32px;
	margin: -2px -2px 0 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #859089;
	transition: background .18s ease, color .18s ease;
}

.vg-review-success-toast__close:hover,
.vg-review-success-toast__close:focus {
	background: #f1f5f2;
	color: #26332b;
}

.vg-review-success-toast__close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.vg-review-success-toast__progress {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: #00a651;
	transform-origin: left center;
	animation: vg-review-success-progress 6s linear forwards;
}

@keyframes vg-review-success-progress {
	from { transform: scaleX(1); }
	to { transform: scaleX(0); }
}

@media (max-width: 767px) {
	.vg-review-success-toast {
		top: 12px;
		right: 12px;
		left: 12px;
		grid-template-columns: 42px minmax(0, 1fr) 32px;
		gap: 11px;
		width: auto;
		padding: 13px 12px 14px;
		border-radius: 14px;
	}

	.vg-review-success-toast__icon {
		width: 42px;
		height: 42px;
	}

	.vg-review-success-toast__icon svg {
		width: 22px;
		height: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vg-review-success-toast,
	.vg-review-success-toast__progress {
		transition: none;
		animation: none;
	}
}


/* v1.1.8: mobile full-screen form with always-visible close and submit controls */
#modal-review-store .vg-review-modal__actionbar {
	flex: 0 0 auto !important;
	display: block !important;
	padding: 14px 20px calc(16px + env(safe-area-inset-bottom, 0px)) !important;
	border-top: 1px solid #e3e9ed !important;
	background: #fff !important;
	box-shadow: 0 -8px 22px rgba(31, 45, 61, .07) !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 11px 18px !important;
	border: 1px solid #00a651 !important;
	border-radius: 9px !important;
	background: #00a651 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit:hover,
#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit:focus {
	border-color: #00853f !important;
	background: #00853f !important;
	color: #fff !important;
}

#modal-review-store .vg-review-modal__close {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	padding: 0 !important;
	border: 1px solid #e3e9ed !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	color: #64717c !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__close svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round !important;
}

#modal-review-store .vg-review-modal__close:hover,
#modal-review-store .vg-review-modal__close:focus {
	border-color: #d5dde3 !important;
	background: #f5f8f9 !important;
	color: #20262d !important;
}

@media (max-width: 767px) {
	body.modal-open {
		overflow: hidden !important;
	}

	#modal-review-store {
		inset: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}

	#modal-review-store .vg-review-modal--fixed {
		position: fixed !important;
		inset: 0 !important;
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		margin: 0 !important;
		transform: none !important;
	}

	#modal-review-store .vg-review-modal--fixed .modal-content {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100vh !important;
		max-height: 100dvh !important;
		margin: 0 !important;
		overflow: hidden !important;
		border-radius: 0 !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__header {
		position: relative !important;
		z-index: 30 !important;
		flex: 0 0 auto !important;
		min-height: calc(58px + env(safe-area-inset-top, 0px)) !important;
		height: auto !important;
		padding:
			calc(12px + env(safe-area-inset-top, 0px))
			64px
			12px
			16px !important;
		border-bottom: 1px solid #e3e9ed !important;
		background: #fff !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__header::after {
		display: none !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__header .modal-title {
		font-size: 18px !important;
		line-height: 34px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__close {
		position: absolute !important;
		top: calc(9px + env(safe-area-inset-top, 0px)) !important;
		right: 12px !important;
		z-index: 50 !important;
		width: 40px !important;
		height: 40px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__body {
		flex: 1 1 auto !important;
		min-height: 0 !important;
		padding: 16px !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		overscroll-behavior: contain !important;
		-webkit-overflow-scrolling: touch !important;
		background: #fff !important;
	}

	#modal-review-store .vg-review-modal--fixed #vg-form-reviews-store {
		display: block !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	#modal-review-store .vg-review-modal--fixed .form-group {
		margin-bottom: 16px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__body textarea.form-control {
		min-height: 112px !important;
		resize: none !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__ratings {
		gap: 0 !important;
		margin-top: 8px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__rating-row {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
		min-width: 0 !important;
		padding: 12px 0 !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-review-modal__rating-row legend {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		font-size: 15px !important;
		line-height: 1.3 !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-rating-input {
		flex: 0 0 auto !important;
		white-space: nowrap !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-rating-input label {
		margin: 0 1px !important;
		font-size: 27px !important;
	}

	#modal-review-store .vg-review-modal__actionbar {
		position: relative !important;
		z-index: 40 !important;
		flex: 0 0 auto !important;
		display: block !important;
		width: 100% !important;
		margin: 0 !important;
		padding:
			12px
			16px
			calc(12px + env(safe-area-inset-bottom, 0px)) !important;
	}

	#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit {
		min-height: 50px !important;
		border-radius: 10px !important;
		font-size: 16px !important;
	}

	#modal-review-store .vg-review-modal__submit-wrap {
		display: none !important;
	}
}

@media (max-width: 374px) {
	#modal-review-store .vg-review-modal--fixed .vg-review-modal__rating-row {
		align-items: flex-start !important;
		flex-direction: column !important;
		gap: 6px !important;
	}

	#modal-review-store .vg-review-modal--fixed .vg-rating-input label {
		font-size: 25px !important;
	}
}


/* ==========================================================================
   VG Reviews 1.2.0 — replies, dynamic feedback and robust mobile modal
   ========================================================================== */

.vg-review-card__response {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
	padding: 13px 14px;
	border: 1px solid #dceee4;
	border-radius: 11px;
	background: #f4fbf7;
	color: #46534b;
	font-size: 13px;
	line-height: 1.55;
}

.vg-review-card__response-head {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #007f3b;
	font-weight: 700;
}

.vg-review-card__response-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #e2f6e9;
	color: #00a651;
}

.vg-review-card__response-icon svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vg-review-card__response-text {
	color: #48554d;
}

.vg-review-card__feedback {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid var(--vg-border);
}

.vg-feedback-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	margin: 0;
	padding: 6px 10px;
	border: 1px solid #dfe6e2;
	border-radius: 999px;
	background: #fff;
	color: #5a665f;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}

.vg-feedback-button--dislike {
	margin-left: 0;
}

.vg-feedback-button:hover,
.vg-feedback-button:focus {
	border-color: #a9d8bb;
	background: #f2fbf6;
	color: #008c43;
}

.vg-feedback-button.is-active {
	border-color: #00a651;
	background: #eaf8f0;
	color: #008c43;
}

.vg-feedback-button--dislike.is-active {
	border-color: #d8b6b6;
	background: #fff3f3;
	color: #b34848;
}

.vg-feedback-button.is-loading,
.vg-feedback-button:disabled {
	opacity: .58;
	cursor: wait;
}

.vg-feedback-button__icon {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vg-feedback-button__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #f0f3f1;
	color: inherit;
	font-size: 11px;
	font-variant-numeric: tabular-nums;
}

.vg-feedback-button.is-active .vg-feedback-button__count {
	background: rgba(0, 166, 81, .12);
}

.vg-feedback-button--dislike.is-active .vg-feedback-button__count {
	background: rgba(179, 72, 72, .1);
}

/* Ensure the review modal always sits above the mobile header and bottom menu. */
#modal-review-store.modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483000 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.modal-backdrop.vg-review-modal-backdrop,
body.vg-review-modal-open .modal-backdrop {
	z-index: 2147482990 !important;
}

body.vg-review-modal-open {
	overflow: hidden !important;
	touch-action: none;
}

#modal-review-store .vg-review-modal__header {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	flex: 0 0 auto !important;
	padding-right: 64px !important;
	background: #fff !important;
	visibility: visible !important;
	opacity: 1 !important;
	z-index: 30 !important;
}

#modal-review-store .vg-review-modal__close {
	position: absolute !important;
	top: 9px !important;
	right: 12px !important;
	z-index: 2147483002 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	padding: 0 !important;
	border: 1px solid #dfe6ea !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	color: #5f6b75 !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__close svg {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round !important;
}

#modal-review-store .vg-review-modal__actionbar {
	display: block !important;
	flex: 0 0 auto !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 12px 20px calc(14px + env(safe-area-inset-bottom, 0px)) !important;
	border-top: 1px solid #e1e8ec !important;
	background: #fff !important;
	box-shadow: 0 -8px 22px rgba(31, 45, 61, .07) !important;
	visibility: visible !important;
	opacity: 1 !important;
	z-index: 40 !important;
}

#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 11px 18px !important;
	border: 1px solid #00a651 !important;
	border-radius: 9px !important;
	background: #00a651 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit:hover,
#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit:focus {
	border-color: #00853f !important;
	background: #00853f !important;
	color: #fff !important;
}

@media (max-width: 767px) {
	#modal-review-store.modal {
		display: block !important;
		width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		overflow: hidden !important;
	}

	#modal-review-store .vg-review-modal--fixed {
		position: fixed !important;
		inset: 0 !important;
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		margin: 0 !important;
		transform: none !important;
		z-index: 2147483001 !important;
	}

	#modal-review-store .vg-review-modal--fixed .modal-content {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100vh !important;
		max-height: 100dvh !important;
		margin: 0 !important;
		overflow: hidden !important;
		border-radius: 0 !important;
		background: #fff !important;
	}

	#modal-review-store .vg-review-modal__header {
		min-height: calc(58px + env(safe-area-inset-top, 0px)) !important;
		padding:
			calc(12px + env(safe-area-inset-top, 0px))
			64px
			12px
			16px !important;
		border-bottom: 1px solid #e1e8ec !important;
	}

	#modal-review-store .vg-review-modal__header .modal-title {
		font-size: 18px !important;
		line-height: 34px !important;
	}

	#modal-review-store .vg-review-modal__close {
		top: calc(9px + env(safe-area-inset-top, 0px)) !important;
		right: 12px !important;
	}

	#modal-review-store .vg-review-modal__body {
		display: block !important;
		flex: 1 1 auto !important;
		min-height: 0 !important;
		padding: 16px !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		overscroll-behavior: contain !important;
		-webkit-overflow-scrolling: touch !important;
		background: #fff !important;
	}

	#modal-review-store #vg-form-reviews-store {
		display: block !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	#modal-review-store .vg-review-modal__body .form-group {
		margin-bottom: 15px !important;
	}

	#modal-review-store .vg-review-modal__body textarea.form-control {
		min-height: 108px !important;
		resize: none !important;
	}

	#modal-review-store .vg-review-modal__ratings {
		gap: 0 !important;
		margin-top: 6px !important;
	}

	#modal-review-store .vg-review-modal__rating-row {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
		min-width: 0 !important;
		padding: 11px 0 !important;
	}

	#modal-review-store .vg-review-modal__rating-row legend {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		margin: 0 !important;
		font-size: 15px !important;
		line-height: 1.3 !important;
	}

	#modal-review-store .vg-rating-input {
		flex: 0 0 auto !important;
		white-space: nowrap !important;
	}

	#modal-review-store .vg-rating-input label {
		margin: 0 1px !important;
		font-size: 27px !important;
	}

	#modal-review-store .vg-review-modal__actionbar {
		padding:
			11px
			16px
			calc(11px + env(safe-area-inset-bottom, 0px)) !important;
	}

	#modal-review-store .vg-review-modal__actionbar #vg-reviews-store-submit {
		min-height: 50px !important;
		border-radius: 10px !important;
		font-size: 16px !important;
	}

	.vg-feedback-button__label {
		display: none;
	}

	.vg-feedback-button {
		min-width: 58px;
		min-height: 36px;
	}

	.vg-review-card__feedback {
		justify-content: flex-start;
	}

	.vg-review-card__response {
		padding: 12px;
	}
}

@media (max-width: 374px) {
	#modal-review-store .vg-review-modal__rating-row {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 6px !important;
	}

	#modal-review-store .vg-rating-input label {
		font-size: 25px !important;
	}
}


/* v1.2.4: iOS keyboard and input-focus stability */
@media (max-width: 767px) {
	#modal-review-store,
	#modal-review-store .vg-review-modal--fixed,
	#modal-review-store .vg-review-modal--fixed .modal-content {
		-webkit-text-size-adjust: 100% !important;
		text-size-adjust: 100% !important;
	}

	/* iOS Safari zooms the page when focused form controls use a font below 16px. */
	#modal-review-store input.form-control,
	#modal-review-store textarea.form-control,
	#modal-review-store select.form-control {
		font-size: 16px !important;
		line-height: 1.4 !important;
		-webkit-text-size-adjust: 100% !important;
	}

	/* JS supplies the exact Visual Viewport size and offset while the keyboard is open. */
	#modal-review-store.modal {
		will-change: transform, width, height !important;
		transform-origin: 0 0 !important;
	}

	#modal-review-store .vg-review-modal--fixed {
		inset: 0 !important;
		height: 100% !important;
		min-height: 0 !important;
	}

	#modal-review-store .vg-review-modal--fixed .modal-content {
		height: 100% !important;
		max-height: 100% !important;
	}

	#modal-review-store .vg-review-modal__header,
	#modal-review-store .vg-review-modal__actionbar {
		flex-shrink: 0 !important;
	}

	#modal-review-store .vg-review-modal__body {
		flex: 1 1 auto !important;
		min-height: 0 !important;
		overscroll-behavior: contain !important;
	}

	#modal-review-store .vg-review-modal__close {
		touch-action: manipulation !important;
	}

	#modal-review-store #vg-reviews-store-submit {
		touch-action: manipulation !important;
	}
}
