.vex-vpf-product-detail,
.vex-vpf-product-detail * {
	box-sizing: border-box;
}

.vex-vpf-product-detail {
	--vex-vpf-product-bg: #08080a;
	display: grid;
	grid-template-columns: minmax(520px, 1fr) clamp(390px, 34vw, 600px);
	width: 100vw;
	max-width: 100vw;
	min-height: 100svh;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	background: var(--vex-vpf-product-bg);
	color: #fff;
	font-family: inherit;
}

.vex-vpf-product-media {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 100svh;
	padding: 18px 28px;
	background: #050506;
}

.vex-vpf-product-back,
.vex-vpf-product-navigation a {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(35, 35, 39, 0.92);
	color: #fff;
	text-decoration: none;
	box-shadow: none;
	cursor: pointer;
	z-index: 6;
}

.vex-vpf-product-back {
	position: absolute;
	top: 18px;
	left: 18px;
}

.vex-vpf-product-back svg,
.vex-vpf-product-navigation svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.vex-vpf-product-back:hover,
.vex-vpf-product-back:focus-visible,
.vex-vpf-product-navigation a:hover,
.vex-vpf-product-navigation a:focus-visible {
	border-color: rgba(255, 255, 255, 0.42);
	background: #343439;
	color: #fff;
}

.vex-vpf-product-navigation {
	position: absolute;
	top: 50%;
	right: 18px;
	display: grid;
	gap: 12px;
	transform: translateY(-50%);
	z-index: 6;
}

.vex-vpf-product-video-frame {
	position: relative;
	width: min(100%, 56.25svh);
	height: calc(100svh - 36px);
	max-height: 960px;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 18px;
	background: #111;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.vex-vpf-product-video-frame video {
	display: block;
	width: 100%;
	height: 100%;
	background: #111;
	object-fit: contain;
	cursor: pointer;
}

.vex-vpf-product-media-controls {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	gap: 10px;
}

.vex-vpf-product-media-controls button,
.vex-vpf-product-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 46px;
	height: 46px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(30, 30, 33, 0.88);
	color: #fff;
	font-weight: 750;
	font-size: 13px;
	line-height: 1;
	font-family: inherit;
	cursor: pointer;
	box-shadow: none;
	transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.vex-vpf-product-media-controls button {
	width: 46px;
	padding: 0;
}

.vex-vpf-product-media-controls svg,
.vex-vpf-product-action svg,
.vex-vpf-product-emoji summary svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.vex-vpf-product-media-controls button:hover,
.vex-vpf-product-action:hover,
.vex-vpf-product-media-controls button:focus-visible,
.vex-vpf-product-action:focus-visible {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(51, 51, 56, 0.96);
	transform: translateY(-1px);
}

.vex-vpf-product-action.is-active {
	border-color: var(--vex-vpf-primary, #ff375f);
	background: var(--vex-vpf-primary, #ff375f);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-panel {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100svh;
	max-height: 100svh;
	overflow: hidden;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	background: #0d0d0f;
}

.vex-vpf-product-panel-header {
	padding: 22px 26px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vex-vpf-product-identity {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.vex-vpf-product-identity > img {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	border-radius: 50%;
	object-fit: cover;
	background: #222;
}

.vex-vpf-product-identity h1 {
	margin: 0 0 5px;
	color: #fff;
	font-weight: 850;
	font-size: clamp(20px, 2vw, 28px);
	line-height: 1.12;
	font-family: inherit;
	letter-spacing: -0.025em;
}

.vex-vpf-product-price {
	color: #f1f1f3;
	font-weight: 800;
	font-size: 18px;
	line-height: 1.2;
	font-family: inherit;
}

.vex-vpf-product-price del {
	color: #8f8f95;
	font-weight: 600;
}

.vex-vpf-product-price ins {
	color: #fff;
	text-decoration: none;
}

.vex-vpf-product-stock {
	margin-top: 12px;
	color: #a9e6b5;
	font-size: 13px;
}

.vex-vpf-product-stock p {
	margin: 0;
}

.vex-vpf-product-short {
	margin-top: 12px;
	color: #bdbdc3;
	font-size: 14px;
	line-height: 1.5;
}

.vex-vpf-product-short p {
	margin: 0;
}

.vex-vpf-product-engagement {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	overflow-x: auto;
	scrollbar-width: none;
}

.vex-vpf-product-engagement::-webkit-scrollbar {
	display: none;
}

.vex-vpf-product-action:disabled {
	opacity: 0.55;
	cursor: wait;
}

.vex-vpf-product-url {
	padding: 12px 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vex-vpf-product-url label {
	display: block;
	margin-bottom: 7px;
	color: #aaaab1;
	font-size: 12px;
	font-weight: 750;
}

.vex-vpf-product-url > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 9px;
	background: #202024;
}

.vex-vpf-product-url input {
	min-width: 0;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #cfcfd4;
	font-size: 13px;
	line-height: 1;
	font-family: inherit;
	box-shadow: none;
}

.vex-vpf-product-url button {
	min-height: 40px;
	margin: 0;
	padding: 0 16px;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	background: #2c2c31;
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	line-height: 1;
	font-family: inherit;
	cursor: pointer;
	box-shadow: none;
}

.vex-vpf-product-url button:hover,
.vex-vpf-product-url button:focus-visible {
	background: #3a3a40;
}

.vex-vpf-product-toast {
	margin: 0 26px;
	padding: 9px 12px;
	border-radius: 8px;
	background: #202024;
	color: #fff;
	font-size: 13px;
}

.vex-vpf-product-toast.is-error {
	background: #5a1d26;
}

.vex-vpf-product-toast[hidden] {
	display: none;
}

.vex-vpf-product-tabs {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	min-height: 0;
	flex: 1 1 auto;
}

.vex-vpf-product-tablist {
	display: grid;
	grid-template-columns: repeat(5, minmax(92px, 1fr));
	gap: 0;
	overflow-x: auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	scrollbar-width: none;
}

.vex-vpf-product-tablist::-webkit-scrollbar {
	display: none;
}

.vex-vpf-product-tablist button {
	position: relative;
	min-width: 92px;
	min-height: 54px;
	margin: 0;
	padding: 13px 16px;
	border: 0;
	background: transparent;
	color: #9f9fa6;
	font-weight: 800;
	font-size: 13px;
	line-height: 1.2;
	font-family: inherit;
	cursor: pointer;
	box-shadow: none;
}

.vex-vpf-product-tablist button::after {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: #fff;
	content: "";
	opacity: 0;
}

.vex-vpf-product-tablist button[aria-selected="true"] {
	color: #fff;
}

.vex-vpf-product-tablist button[aria-selected="true"]::after {
	opacity: 1;
}

.vex-vpf-product-tabs [role="tabpanel"] {
	min-height: 0;
	padding: 24px 26px 32px;
	overflow-y: auto;
	color: #e6e6e8;
	scrollbar-color: #424247 transparent;
}

.vex-vpf-product-tabs [role="tabpanel"][hidden] {
	display: none;
}

.vex-vpf-product-richtext,
.vex-vpf-product-richtext p,
.vex-vpf-product-richtext li {
	color: #dedee2;
	font-size: 15px;
	line-height: 1.65;
}

.vex-vpf-product-richtext > :first-child {
	margin-top: 0;
}

.vex-vpf-product-richtext a {
	color: #fff;
	text-decoration: underline;
}

.vex-vpf-product-attributes {
	width: 100%;
	border-collapse: collapse;
	color: #fff;
}

.vex-vpf-product-attributes th,
.vex-vpf-product-attributes td {
	padding: 13px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: left;
	vertical-align: top;
}

.vex-vpf-product-attributes th {
	width: 38%;
	color: #a9a9b0;
	font-weight: 700;
}

.vex-vpf-product-empty,
.vex-vpf-product-comments-status {
	padding: 18px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	color: #aaaab1;
	text-align: center;
}

.vex-vpf-product-comments-status:empty {
	display: none;
}

.vex-vpf-product-comments-status.is-error {
	border-color: rgba(255, 80, 105, 0.55);
	color: #ff9aaa;
}

.vex-vpf-product-comment,
.vex-vpf-product-review {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vex-vpf-product-comment-avatar {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #27272c;
	color: #fff;
	font-weight: 850;
	object-fit: cover;
}

.vex-vpf-product-comment-content header,
.vex-vpf-product-review header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}

.vex-vpf-product-comment-content strong,
.vex-vpf-product-review strong {
	color: #fff;
	font-size: 14px;
}

.vex-vpf-product-comment-content time,
.vex-vpf-product-review time {
	color: #85858c;
	font-size: 11px;
	white-space: nowrap;
}

.vex-vpf-product-comment-content p,
.vex-vpf-product-review p {
	margin: 0;
	color: #dfdfe2;
	font-size: 14px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.vex-vpf-product-review {
	display: block;
}

.vex-vpf-review-rating {
	margin: 4px 0 8px;
}

.vex-vpf-review-rating .star-rating {
	float: none;
	color: #ffd257;
}

.vex-vpf-product-comments-more,
.vex-vpf-product-login a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 14px;
	padding: 10px 18px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-weight: 800;
	font-size: 13px;
	line-height: 1;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
}

.vex-vpf-product-comments-more[hidden] {
	display: none;
}

#vex-vpf-panel-comments:not([hidden]) {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	padding: 0;
	overflow: hidden;
}

.vex-vpf-product-comments-scroll {
	min-height: 0;
	padding: 20px 26px 24px;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-color: #424247 transparent;
}

.vex-vpf-product-comment-composer {
	position: relative;
	z-index: 3;
	padding: 12px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(13, 13, 15, 0.98);
	box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.22);
}

.vex-vpf-product-comment-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px 42px;
	align-items: end;
	gap: 8px;
	margin: 0;
}

.vex-vpf-screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.vex-vpf-product-comment-form textarea {
	display: block;
	width: 100%;
	min-height: 44px;
	max-height: 120px;
	margin: 0;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	outline: 0;
	background: #252529;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	font-family: inherit;
	resize: none;
	box-shadow: none;
}

.vex-vpf-product-comment-form textarea:focus {
	border-color: rgba(255, 255, 255, 0.58);
}

.vex-vpf-product-comment-form > button[type="submit"],
.vex-vpf-product-emoji summary {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	min-height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #2c2c31;
	color: #fff;
	cursor: pointer;
	box-shadow: none;
}

.vex-vpf-product-comment-form > button[type="submit"] {
	background: var(--vex-vpf-primary, #ff375f);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-comment-form > button[type="submit"]:disabled {
	opacity: 0.55;
	cursor: wait;
}

.vex-vpf-product-comment-form > button[type="submit"] svg,
.vex-vpf-product-emoji summary svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.vex-vpf-product-emoji {
	position: relative;
	margin: 0;
}

.vex-vpf-product-emoji summary {
	list-style: none;
}

.vex-vpf-product-emoji summary::-webkit-details-marker {
	display: none;
}

.vex-vpf-product-emoji > div {
	position: absolute;
	right: 0;
	bottom: calc(100% + 10px);
	display: grid;
	grid-template-columns: repeat(6, 38px);
	gap: 5px;
	width: max-content;
	max-width: min(290px, 80vw);
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: #1a1a1e;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.vex-vpf-product-emoji button {
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: transparent;
	font-size: 21px;
	cursor: pointer;
}

.vex-vpf-product-emoji button:hover,
.vex-vpf-product-emoji button:focus-visible {
	background: #313137;
}

.vex-vpf-product-login {
	margin: 0;
	padding: 8px 12px;
	border-radius: 12px;
	background: #18181b;
	text-align: center;
}

.vex-vpf-product-login p {
	margin: 0;
	color: #b8b8be;
}


.vex-vpf-related-panel {
	padding: 16px !important;
}

.vex-vpf-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
	align-items: start;
}

.vex-vpf-related-card {
	min-width: 0;
	content-visibility: auto;
	contain-intrinsic-size: 150px 267px;
}

.vex-vpf-related-link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 8px;
	background: #18181b;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.vex-vpf-related-link::after {
	position: absolute;
	inset: 44% 0 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
	content: "";
	pointer-events: none;
	z-index: 2;
}

.vex-vpf-related-link img,
.vex-vpf-related-link video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 140ms ease, transform 220ms ease;
}

.vex-vpf-related-link video {
	opacity: 0;
	z-index: 1;
}

.vex-vpf-related-card.is-previewing .vex-vpf-related-link video {
	opacity: 1;
}

.vex-vpf-related-card.is-previewing .vex-vpf-related-link img {
	opacity: 0;
}

.vex-vpf-related-link:hover img,
.vex-vpf-related-link:focus-visible img {
	transform: scale(1.025);
}

.vex-vpf-related-link strong {
	position: absolute;
	right: 9px;
	bottom: 9px;
	left: 9px;
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-weight: 750;
	font-size: 12px;
	line-height: 1.25;
	font-family: inherit;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	z-index: 3;
}

.vex-vpf-related-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.48);
	transform: translate(-50%, -50%);
	transition: opacity 140ms ease;
	z-index: 3;
}

.vex-vpf-related-play svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.vex-vpf-related-card.is-previewing .vex-vpf-related-play {
	opacity: 0;
}

.vex-vpf-related-likes {
	position: absolute;
	top: 9px;
	left: 9px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 7px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 11px;
	font-weight: 750;
	z-index: 3;
}

.vex-vpf-related-likes svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.vex-vpf-related-status {
	margin: 18px 0 4px;
	padding: 14px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	color: #aaaab1;
	text-align: center;
}

.vex-vpf-related-status.is-error {
	border-color: rgba(255, 80, 105, 0.55);
	color: #ff9aaa;
}

.vex-vpf-related-retry {
	display: block;
	margin: 12px auto 0;
	padding: 9px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: #25252a;
	color: #fff;
	font-weight: 750;
	cursor: pointer;
}

.vex-vpf-related-sentinel {
	width: 100%;
	height: 2px;
	margin-top: 14px;
}

.vex-vpf-related-sentinel[hidden],
.vex-vpf-related-retry[hidden],
.vex-vpf-related-status[hidden] {
	display: none;
}

@media (max-width: 1050px) {
	.vex-vpf-product-detail {
		grid-template-columns: minmax(360px, 1fr) minmax(350px, 42vw);
	}
}

@media (max-width: 820px) {
	.vex-vpf-product-detail {
		display: block;
		width: 100%;
		max-width: none;
		margin: 0;
	}

	.vex-vpf-product-media {
		min-height: 82svh;
		padding: 0;
	}

	.vex-vpf-product-video-frame {
		width: min(100%, 46.125svh);
		height: 82svh;
		border-radius: 0;
	}

	.vex-vpf-product-panel {
		min-height: 70svh;
		max-height: none;
		overflow: visible;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}

	.vex-vpf-product-tabs [role="tabpanel"] {
		max-height: none;
		overflow: visible;
	}

	.vex-vpf-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#vex-vpf-panel-comments:not([hidden]) {
		height: min(76svh, 720px);
		max-height: min(76svh, 720px);
		overflow: hidden;
	}

	.vex-vpf-product-back {
		top: 14px;
		left: 14px;
	}

	.vex-vpf-product-media-controls {
		left: 72px;
	}

	.vex-vpf-product-navigation {
		right: 12px;
	}
}

@media (max-width: 480px) {
	.vex-vpf-product-panel-header,
	.vex-vpf-product-engagement,
	.vex-vpf-product-url,
	.vex-vpf-product-tabs [role="tabpanel"] {
		padding-right: 16px;
		padding-left: 16px;
	}


	.vex-vpf-product-comments-scroll {
		padding-right: 16px;
		padding-left: 16px;
	}

	.vex-vpf-product-comment-composer {
		padding-right: 10px;
		padding-left: 10px;
	}
	.vex-vpf-product-tablist button {
		min-width: 88px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.vex-vpf-product-emoji > div {
		grid-template-columns: repeat(5, 38px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.vex-vpf-product-media-controls button,
	.vex-vpf-product-action {
		transition: none;
	}
}

/* Version 0.8.3: two-level replies, comment likes, and owned-comment actions. */
.vex-vpf-product-comment-replies {
	grid-column: 2 / -1;
	min-width: 0;
	margin: 10px 0 -8px;
	padding-left: 13px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vex-vpf-product-comment.is-reply {
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	padding: 12px 0;
	border-bottom: 0;
}

.vex-vpf-product-comment.is-reply .vex-vpf-product-comment-avatar {
	width: 34px;
	height: 34px;
	font-size: 13px;
}

.vex-vpf-product-comment-avatar-fallback {
	display: grid;
	place-items: center;
}

.vex-vpf-product-comment.is-deleted {
	opacity: 0.72;
}

.vex-vpf-product-comment.is-deleted p {
	color: #a5a5ac;
	font-style: italic;
}

.vex-vpf-product-comment-mention {
	color: var(--vex-vpf-secondary, #75d6ff);
	font-weight: 760;
}

.vex-vpf-product-comment-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 30px;
	margin-top: 8px;
}

.vex-vpf-product-comment-actions button,
.vex-vpf-product-comment-actions summary {
	font-family: inherit;
}

.vex-vpf-product-comment-actions .vex-vpf-comment-reply {
	margin: 0;
	padding: 2px 0;
	border: 0;
	background: transparent;
	color: #a9a9b1;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
}

.vex-vpf-product-comment-like {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 28px;
	margin: 0;
	padding: 2px 4px;
	border: 0;
	background: transparent;
	color: #a9a9b1;
	font-size: 11px;
	font-weight: 720;
	cursor: pointer;
}

.vex-vpf-product-comment-like svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.vex-vpf-product-comment-like.is-active {
	color: var(--vex-vpf-primary, #ff375f);
}

.vex-vpf-product-comment-like.is-active svg {
	fill: currentColor;
}

.vex-vpf-product-comment-menu {
	position: relative;
	margin-left: auto;
}

.vex-vpf-product-comment-menu[open] {
	z-index: 20;
}

.vex-vpf-product-comment-menu > summary {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #a9a9b1;
	cursor: pointer;
	list-style: none;
}

.vex-vpf-product-comment-menu > summary::-webkit-details-marker {
	display: none;
}

.vex-vpf-product-comment-menu > summary svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}


.vex-vpf-product-comment-menu .vex-vpf-comment-delete {
	position: absolute !important;
	right: 0 !important;
	left: auto !important;
	top: calc(100% + 7px) !important;
	z-index: 8;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 8px;
	box-sizing: border-box !important;
	width: auto !important;
	min-width: 154px;
	max-width: min(220px, calc(100vw - 32px));
	min-height: 40px;
	margin: 0 !important;
	padding: 8px 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 9px;
	background: #29292e;
	color: #fff;
	font-size: 12px;
	font-weight: 760;
	line-height: 1.25 !important;
	text-align: left !important;
	white-space: nowrap !important;
	overflow: visible !important;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
	cursor: pointer;
}

.vex-vpf-product-comment-menu .vex-vpf-comment-delete svg {
	position: static !important;
	display: block !important;
	width: 17px !important;
	height: 17px !important;
	flex: 0 0 17px;
	fill: currentColor;
}

.vex-vpf-product-comment-menu .vex-vpf-comment-delete > span {
	position: static !important;
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	transform: none !important;
	white-space: nowrap !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.vex-vpf-product-reply-form {
	margin-top: 10px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: #17171b;
}

.vex-vpf-product-reply-meta {
	margin-bottom: 7px;
	color: #a9a9b1;
	font-size: 11px;
	font-weight: 700;
}

.vex-vpf-product-reply-form textarea {
	display: block;
	width: 100%;
	min-height: 42px;
	max-height: 110px;
	margin: 0;
	padding: 9px 11px;
	resize: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	outline: 0;
	background: #242429;
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	font-family: inherit;
}

.vex-vpf-product-reply-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	margin-top: 8px;
}

.vex-vpf-product-reply-tools > button {
	min-height: 34px;
	margin: 0;
	padding: 7px 11px;
	border: 0;
	border-radius: 999px;
	background: #2b2b30;
	color: #fff;
	font-size: 11px;
	font-weight: 760;
	cursor: pointer;
}

.vex-vpf-product-reply-tools > .vex-vpf-reply-submit {
	display: grid;
	place-items: center;
	width: 34px;
	padding: 0;
	background: var(--vex-vpf-primary, #ff375f);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-reply-emoji {
	position: relative;
	margin-right: auto;
}

.vex-vpf-product-reply-emoji summary {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #2b2b30;
	color: #fff;
	cursor: pointer;
	list-style: none;
}

.vex-vpf-product-reply-emoji summary::-webkit-details-marker {
	display: none;
}

.vex-vpf-product-reply-emoji summary svg,
.vex-vpf-product-reply-tools .vex-vpf-reply-submit svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.vex-vpf-product-reply-emoji .vex-vpf-inline-emoji-grid {
	position: absolute;
	left: 0;
	bottom: calc(100% + 8px);
	z-index: 10;
	display: grid;
	grid-template-columns: repeat(6, 34px);
	gap: 4px;
	width: max-content;
	max-width: min(250px, 75vw);
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	background: #242429;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.vex-vpf-product-reply-emoji .vex-vpf-inline-emoji-grid button {
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: transparent;
	font-size: 19px;
	cursor: pointer;
}

@media (max-width: 480px) {
	.vex-vpf-product-comment-replies {
		margin-left: -8px;
		padding-left: 9px;
	}

	.vex-vpf-product-reply-emoji .vex-vpf-inline-emoji-grid {
		grid-template-columns: repeat(5, 34px);
	}
}


/* Version 0.8.9: desktop product pages use the same viewport navigation model. */
html.vex-vpf-product-page-lock,
body.vex-vpf-product-page-lock {
	height: 100% !important;
	overflow: hidden !important;
	overscroll-behavior: none;
}

@media (min-width: 821px) {
	.vex-vpf-product-detail {
		position: fixed;
		top: var(--vex-vpf-product-top, 0px);
		right: 0;
		bottom: auto;
		left: 0;
		z-index: 99990;
		width: 100vw;
		height: var(--vex-vpf-product-height, 100dvh);
		min-height: 0;
		margin: 0;
		overflow: hidden;
	}

	.vex-vpf-product-media,
	.vex-vpf-product-panel {
		min-height: 0;
		height: 100%;
		max-height: 100%;
	}

	.vex-vpf-product-video-frame {
		height: calc(100% - 36px);
	}
}

/* Version 0.9.0: WhatsApp action and stable viewport sizing. */
.vex-vpf-product-whatsapp {
	border-color: rgba(37, 211, 102, 0.52);
	background: rgba(20, 124, 68, 0.42);
	color: #fff;
	text-decoration: none;
}

.vex-vpf-product-whatsapp:hover,
.vex-vpf-product-whatsapp:focus-visible {
	border-color: #25d366;
	background: #168a49;
	color: #fff;
	text-decoration: none;
}

html.vex-vpf-product-page-lock,
body.vex-vpf-product-page-lock {
	position: fixed !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	overflow: clip !important;
}

@media (min-width: 821px) {
	.vex-vpf-product-detail {
		top: var(--vex-vpf-product-top, 0px) !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		height: auto !important;
		max-height: none !important;
	}
}


/* Version 0.9.2: the video itself is the play/pause control. */
.vex-vpf-product-media-controls {
	display: none !important;
}

.vex-vpf-product-video-frame::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	width: 0;
	height: 0;
	border-top: 24px solid transparent;
	border-bottom: 24px solid transparent;
	border-left: 36px solid rgba(255, 255, 255, 0.94);
	content: "";
	opacity: 0;
	pointer-events: none;
	filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.5));
	transform: translate(-42%, -50%);
	transition: opacity 140ms ease;
}

.vex-vpf-product-detail.is-video-paused .vex-vpf-product-video-frame::after {
	opacity: 1;
}

@media (max-width: 820px) {
	.vex-vpf-product-media {
		height: var(--vex-vpf-product-height, 100dvh) !important;
		min-height: var(--vex-vpf-product-height, 100dvh) !important;
		padding: 0 !important;
	}

	.vex-vpf-product-video-frame {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		border-radius: 0 !important;
		aspect-ratio: auto !important;
	}

	.vex-vpf-product-video-frame video {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}
}

/* Version 0.10.9: TikTok-style volume and resizable floating player. */
.vex-vpf-product-video-home {
	position: relative;
	width: 100%;
	height: 100%;
}

.vex-vpf-product-video-home > video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vex-vpf-product-utility-controls {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 9;
	display: grid;
	grid-template-columns: repeat(2, 44px);
	align-items: end;
	justify-items: center;
	gap: 10px;
}

.vex-vpf-product-utility-button,
.vex-vpf-floating-player-controls button,
.vex-vpf-floating-player-header button {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(35, 35, 39, 0.94);
	color: #fff;
	font-family: inherit;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
	cursor: pointer;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.vex-vpf-product-utility-button:hover,
.vex-vpf-product-utility-button:focus-visible,
.vex-vpf-floating-player-controls button:hover,
.vex-vpf-floating-player-controls button:focus-visible,
.vex-vpf-floating-player-header button:hover,
.vex-vpf-floating-player-header button:focus-visible {
	border-color: rgba(255, 255, 255, 0.36);
	background: #3a3a3f;
	color: #fff;
	transform: translateY(-1px);
}

.vex-vpf-product-utility-button svg,
.vex-vpf-floating-player-controls svg,
.vex-vpf-floating-player-header button svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.vex-vpf-product-volume-control {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
}

.vex-vpf-product-volume-slider {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	display: grid;
	place-items: center;
	width: 44px;
	height: 126px;
	padding: 11px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(35, 35, 39, 0.96);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 7px);
	transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
	pointer-events: none;
}

.vex-vpf-product-volume-control:hover .vex-vpf-product-volume-slider,
.vex-vpf-product-volume-control:focus-within .vex-vpf-product-volume-slider {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.vex-vpf-product-volume-slider input[type="range"] {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 96px;
	height: 5px;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	accent-color: #fff;
	box-shadow: none;
	cursor: pointer;
	transform: translate(-50%, -50%) rotate(-90deg);
	transform-origin: 50% 50%;
}

.vex-vpf-product-floating-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 12px;
	padding: 24px;
	background:
		linear-gradient(rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.9)),
		#111;
	color: #fff;
	text-align: center;
}

.vex-vpf-product-floating-placeholder[hidden] {
	display: none !important;
}

.vex-vpf-product-floating-placeholder > span {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.11);
}

.vex-vpf-product-floating-placeholder svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.vex-vpf-product-floating-placeholder strong {
	font-size: 18px;
	line-height: 1.3;
}

.vex-vpf-product-floating-placeholder button {
	min-height: 42px;
	margin: 0;
	padding: 0 18px;
	border: 0;
	border-radius: 8px;
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
	font-weight: 750;
	font-family: inherit;
	cursor: pointer;
}

.vex-vpf-product-detail.is-floating-player-active .vex-vpf-product-video-frame::after {
	display: none;
}

.vex-vpf-product-detail.is-floating-player-active .vex-vpf-product-utility-controls {
	opacity: 0.34;
	pointer-events: none;
}

.vex-vpf-floating-player {
	position: fixed;
	top: clamp(58px, 9vh, 100px);
	left: clamp(24px, 24vw, 440px);
	z-index: 100120;
	display: grid;
	grid-template-rows: 44px minmax(0, 1fr);
	width: clamp(360px, 39vw, 680px);
	height: clamp(430px, 76vh, 790px);
	min-width: 320px;
	min-height: 300px;
	max-width: calc(100vw - 24px);
	max-height: calc(100dvh - 24px);
	overflow: hidden;
	resize: both;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 10px;
	background: #0d0d0f;
	color: #fff;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.vex-vpf-floating-player[hidden] {
	display: none !important;
}

.vex-vpf-floating-player-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-width: 0;
	padding: 0 8px 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #202024;
	cursor: move;
	touch-action: none;
	user-select: none;
}

.vex-vpf-floating-player.is-dragging .vex-vpf-floating-player-header {
	cursor: grabbing;
}

.vex-vpf-floating-player-header strong {
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vex-vpf-floating-player-header > div {
	display: flex;
	align-items: center;
	gap: 2px;
}

.vex-vpf-floating-player-header button {
	width: 34px;
	height: 34px;
	min-width: 34px;
	min-height: 34px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.vex-vpf-floating-player-header button svg {
	width: 19px;
	height: 19px;
}

.vex-vpf-floating-player-body {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: #08080a;
}

.vex-vpf-floating-player-body > video {
	display: block;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	background: #08080a;
	object-fit: contain;
	cursor: pointer;
}

.vex-vpf-floating-player-controls {
	position: absolute;
	top: 56px;
	right: 12px;
	z-index: 3;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.vex-vpf-floating-player-controls button {
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
}

@media (max-width: 820px) {
	.vex-vpf-product-utility-controls {
		right: 12px;
		bottom: 18px;
	}

	.vex-vpf-floating-player {
		top: 12px !important;
		right: 12px !important;
		bottom: 12px !important;
		left: 12px !important;
		width: auto !important;
		height: auto !important;
		min-width: 0;
		min-height: 0;
		max-width: none;
		max-height: none;
		resize: none;
	}

	.vex-vpf-floating-player-header {
		cursor: default;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vex-vpf-product-volume-slider,
	.vex-vpf-product-utility-button,
	.vex-vpf-floating-player-controls button,
	.vex-vpf-floating-player-header button {
		transition: none;
	}
}

@media (min-width: 821px) {
	.vex-vpf-floating-player::after {
		position: absolute;
		right: 5px;
		bottom: 5px;
		width: 12px;
		height: 12px;
		border-right: 2px solid rgba(255, 255, 255, 0.48);
		border-bottom: 2px solid rgba(255, 255, 255, 0.48);
		content: "";
		pointer-events: none;
	}
}


/* Version 0.10.10: align utility controls and center the vertical volume slider. */
.vex-vpf-product-utility-button,
.vex-vpf-product-volume-control,
.vex-vpf-product-volume-slider {
	box-sizing: border-box;
}

/* Version 0.10.13: product detail follows the global light preference. */
.vex-vpf-vertical-product-page.vex-vpf-theme-light,
.vex-vpf-vertical-product-page.vex-vpf-theme-light #wrapper,
.vex-vpf-vertical-product-page.vex-vpf-theme-light #main {
	background: #fff !important;
	color: #16161a !important;
	color-scheme: light;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] {
	--vex-vpf-product-bg: #fff;
	background: #fff;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-media,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-panel {
	border-color: #e2e2e5;
	background: #fff;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-video-frame {
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-panel-header,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-tablist,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-review,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-composer {
	border-color: #e2e2e5;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-identity h1,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-price,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-price ins,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-tablist button[aria-selected="true"],
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-tabs [role="tabpanel"],
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-richtext,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-richtext p,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-richtext li,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-attributes,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-content strong,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-review strong,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-content p,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-review p {
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-price del,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-short,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url label,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-tablist button,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-attributes th,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-content time,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-review time,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-actions .vex-vpf-comment-reply,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-like,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-meta {
	color: #6b6b73;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-action {
	border-color: #dedee3;
	background: #f1f1f2;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-action:hover,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-action:focus-visible {
	border-color: #d1d1d6;
	background: #e7e7ea;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-action.is-active {
	border-color: var(--vex-vpf-primary, #ff375f);
	background: var(--vex-vpf-primary, #ff375f);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-whatsapp,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-whatsapp:hover,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-whatsapp:focus-visible {
	border-color: #25d366;
	background: #168a49;
	color: #fff;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url > div {
	border-color: #dedee3;
	background: #f1f1f2;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url input {
	color: #3f3f46;
	-webkit-text-fill-color: #3f3f46;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url button {
	border-color: #dedee3;
	background: #e7e7ea;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url button:hover,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-url button:focus-visible {
	background: #dedee3;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-tablist button::after {
	background: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-attributes th,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-attributes td,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-replies,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-form {
	border-color: #e2e2e5;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-avatar,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-avatar-fallback,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-login,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-form {
	background: #f1f1f2;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-composer {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.08);
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-form textarea,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-form textarea {
	border-color: #d8d8dd;
	background: #f1f1f2;
	color: #16161a;
	-webkit-text-fill-color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-form textarea::placeholder,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-form textarea::placeholder {
	color: #777780;
	-webkit-text-fill-color: #777780;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-emoji summary,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-emoji > div,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-tools > button,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-emoji summary,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-reply-emoji .vex-vpf-inline-emoji-grid,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comment-menu .vex-vpf-comment-delete,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-related-retry {
	border-color: #dedee3;
	background: #f1f1f2;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-empty,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-comments-status,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-related-status {
	border-color: #d8d8dd;
	color: #6b6b73;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-floating-player {
	border-color: #dedee3;
	background: #fff;
	color: #16161a;
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-floating-player-header {
	border-color: #dedee3;
	background: #f1f1f2;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-floating-player-header strong,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-floating-player-header button {
	color: #16161a;
}


/* Version 0.10.14: shadowless, edge-to-edge product video and compact identity. */
.vex-vpf-product-video-frame,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-video-frame {
	border: 0;
	background: transparent;
	box-shadow: none !important;
}

.vex-vpf-product-video-frame video {
	background: transparent;
	object-fit: cover;
}

.vex-vpf-product-identity h1 {
	font-size: clamp(18px, 1.6vw, 24px);
}

.vex-vpf-product-financing-text {
	margin: 2px 0 0;
	color: var(--vex-vpf-secondary, #25f4ee);
	font-weight: 750;
	font-size: 14px;
	line-height: 1.3;
	font-family: inherit;
}

.vex-vpf-product-price {
	margin-top: 3px;
}

/* Version 0.10.18: icon-first mobile tabs and engagement controls. */
.vex-vpf-product-tab-icon {
	display: none;
}

.vex-vpf-product-engagement .vex-vpf-product-action {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	box-shadow: none;
	transform: none;
}

.vex-vpf-product-action-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 50%;
	background: rgba(30,30,33,.88);
	color: #fff;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.vex-vpf-product-action-icon svg {
	width: 25px !important;
	height: 25px !important;
}

.vex-vpf-product-action-count {
	min-width: 12px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.vex-vpf-product-engagement .vex-vpf-product-action:hover,
.vex-vpf-product-engagement .vex-vpf-product-action:focus-visible {
	border: 0;
	background: transparent;
	transform: none;
}

.vex-vpf-product-engagement .vex-vpf-product-action:hover .vex-vpf-product-action-icon,
.vex-vpf-product-engagement .vex-vpf-product-action:focus-visible .vex-vpf-product-action-icon {
	border-color: rgba(255,255,255,.38);
	background: #34343a;
	transform: translateY(-1px);
}

.vex-vpf-product-engagement .vex-vpf-product-action.is-active {
	border: 0;
	background: transparent;
	color: #fff;
}

.vex-vpf-product-engagement .vex-vpf-product-action.is-active .vex-vpf-product-action-icon {
	border-color: var(--vex-vpf-primary, #fe2c55);
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-engagement .vex-vpf-product-whatsapp .vex-vpf-product-action-icon,
.vex-vpf-product-engagement .vex-vpf-product-whatsapp:hover .vex-vpf-product-action-icon,
.vex-vpf-product-engagement .vex-vpf-product-whatsapp:focus-visible .vex-vpf-product-action-icon {
	border-color: #25d366;
	background: #168a49;
	color: #fff;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement .vex-vpf-product-action {
	border: 0;
	background: transparent;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-action-icon {
	border-color: #dedee3;
	background: #f1f1f2;
	color: #16161a;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement .vex-vpf-product-action:hover .vex-vpf-product-action-icon,
.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement .vex-vpf-product-action:focus-visible .vex-vpf-product-action-icon {
	border-color: #d1d1d6;
	background: #e7e7ea;
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement .vex-vpf-product-action.is-active .vex-vpf-product-action-icon {
	border-color: var(--vex-vpf-primary, #fe2c55);
	background: var(--vex-vpf-primary, #fe2c55);
	color: var(--vex-vpf-on-primary, #fff);
}

.vex-vpf-product-detail[data-vex-vpf-theme="light"] .vex-vpf-product-engagement .vex-vpf-product-whatsapp .vex-vpf-product-action-icon {
	border-color: #25d366;
	background: #168a49;
	color: #fff;
}

@media (max-width: 820px) {
	.vex-vpf-product-engagement {
		gap: 12px;
		padding: 12px 18px;
	}

	.vex-vpf-product-action-icon {
		width: 50px;
		height: 50px;
		flex-basis: 50px;
	}

	.vex-vpf-product-action-icon svg {
		width: 27px !important;
		height: 27px !important;
	}

	.vex-vpf-product-action-count {
		font-size: 15px;
	}

	.vex-vpf-product-tablist {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		overflow: visible;
	}

	.vex-vpf-product-tablist button {
		position: relative;
		display: grid;
		place-items: center;
		min-width: 0;
		min-height: 54px;
		padding: 9px 4px;
	}

	.vex-vpf-product-tab-icon {
		display: block;
		width: 25px;
		height: 25px;
	}

	.vex-vpf-product-tab-icon svg {
		display: block;
		width: 25px;
		height: 25px;
		fill: none !important;
		stroke: currentColor !important;
	}

	.vex-vpf-product-tab-label {
		display: none;
	}

	.vex-vpf-product-tab-count {
		position: absolute;
		top: 6px;
		right: calc(50% - 20px);
		display: grid;
		place-items: center;
		min-width: 15px;
		height: 15px;
		padding: 0 4px;
		border-radius: 999px;
		background: var(--vex-vpf-primary, #fe2c55);
		color: var(--vex-vpf-on-primary, #fff);
		font-size: 9px;
		font-weight: 800;
		line-height: 1;
	}

	.vex-vpf-product-tablist button[data-vex-vpf-tooltip]::before {
		position: absolute;
		bottom: calc(100% + 6px);
		left: 50%;
		z-index: 10;
		padding: 6px 8px;
		border-radius: 6px;
		background: rgba(20,20,22,.94);
		color: #fff;
		font-size: 11px;
		font-weight: 700;
		line-height: 1;
		white-space: nowrap;
		content: attr(data-vex-vpf-tooltip);
		opacity: 0;
		pointer-events: none;
		transform: translate(-50%, 4px);
		transition: opacity 120ms ease, transform 120ms ease;
	}

	.vex-vpf-product-tablist button[data-vex-vpf-tooltip]:focus::before,
	.vex-vpf-product-tablist button[data-vex-vpf-tooltip].is-tooltip-visible::before {
		opacity: 1;
		transform: translate(-50%, 0);
	}
}
