:root {
	--vbx-product-container: min(78.125vw, 1488px);
	--vbx-product-stage-size: clamp(358px, 30.21vw, 576px);
	--vbx-product-thumb-size: clamp(57.7px, 4.87vw, 92px);
	--vbx-product-media-gap: clamp(14px, 1.18vw, 22px);
}

body.vbx-product-body {
	margin: 0;
	background: #fff;
	color: var(--vbx-text);
	font-family: Poppins, Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.vbx-product-page {
	min-height: 100vh;
	background: #fff;
}

.vbx-product-page .vbx-header {
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.vbx-product-container {
	width: var(--vbx-product-container);
	margin-right: auto;
	margin-left: auto;
}

.vbx-product-detail {
	padding-top: 25px;
}

.vbx-product-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 20px;
	margin-bottom: 15.5px;
	overflow: hidden;
	color: #333;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	white-space: nowrap;
}

.vbx-product-breadcrumb strong {
	overflow: hidden;
	color: #000;
	font-weight: 700;
	text-overflow: ellipsis;
}

.vbx-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 48%) minmax(360px, 47.73%);
	align-items: start;
	justify-content: space-between;
	min-height: 0;
}

.vbx-product-media {
	position: sticky;
	top: 184px;
	display: grid;
	grid-template-columns: var(--vbx-product-thumb-size) var(--vbx-product-stage-size);
	align-items: start;
	gap: var(--vbx-product-media-gap);
	width: 100%;
}

.vbx-product-thumbs-frame {
	display: grid;
	grid-template-rows: 16px minmax(0, 1fr) 16px;
	gap: 4px;
	width: var(--vbx-product-thumb-size);
	height: var(--vbx-product-stage-size);
	overflow: hidden;
}

.vbx-product-thumbs-nav {
	position: relative;
	width: 100%;
	height: 16px;
	padding: 0;
	border: 0;
	background: #000;
	cursor: pointer;
}

.vbx-product-thumbs-nav::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	content: "";
}

.vbx-product-thumbs-nav.is-prev::before {
	transform: translate(-50%, -30%) rotate(45deg);
}

.vbx-product-thumbs-nav.is-next::before {
	transform: translate(-50%, -70%) rotate(225deg);
}

.vbx-product-thumbs-scroll {
	min-height: 0;
	overflow: hidden;
}

.vbx-product-thumbs {
	display: grid;
	gap: 8px;
}

.vbx-product-thumbs button {
	position: relative;
	width: var(--vbx-product-thumb-size);
	height: var(--vbx-product-thumb-size);
	overflow: hidden;
	padding: 0;
	border: 1px solid transparent;
	background: #fff;
	cursor: pointer;
}

.vbx-product-thumbs button.is-active {
	border-color: #000;
}

.vbx-product-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vbx-product-thumbs span {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, .28);
	color: #fff;
	font-size: 18px;
}

.vbx-product-stage {
	position: relative;
	width: var(--vbx-product-stage-size);
	height: var(--vbx-product-stage-size);
	overflow: hidden;
	background: #fff;
}

.vbx-product-stage-item {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
}

.vbx-product-stage-item.is-active {
	display: flex;
}

.vbx-product-stage img,
.vbx-product-stage video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vbx-product-panel {
	width: 100%;
	color: #333;
}

.vbx-product-panel h1 {
	min-height: 50px;
	margin: 0 0 10px;
	color: #111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
}

.vbx-product-price {
	display: flex;
	align-items: baseline;
	gap: 28px;
	min-height: 35px;
	margin-bottom: 19.7px;
	color: #000;
}

.vbx-product-price strong {
	font-size: 28px;
	font-weight: 800;
	line-height: 35px;
}

.vbx-product-price del {
	color: #666;
	font-size: 20px;
	font-weight: 600;
	text-decoration-color: #666;
}

.vbx-product-price span {
	color: var(--vbx-red);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.vbx-product-offer {
	width: min(75.42%, 520px);
	min-height: 112.4px;
	margin-bottom: 26px;
	border: 1px solid #f1dad4;
	background: #fff8f7;
	color: #c22b12;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.vbx-product-offer span {
	display: inline-flex;
	margin: -1px 0 8px -1px;
	padding: 5px 12px;
	background: var(--vbx-red);
	color: #fff;
	font-size: 11px;
	letter-spacing: .4px;
}

.vbx-product-offer p {
	margin: 0;
	padding: 3px 14px;
}

.vbx-product-options {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin: 0 0 26px;
	padding: 0;
	border: 0;
}

.vbx-product-options legend {
	flex: 0 0 100%;
	margin-bottom: 4px;
	color: #000;
	font-size: 15px;
	font-weight: 700;
}

.vbx-product-options label {
	cursor: pointer;
}

.vbx-product-options input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vbx-product-options span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 37px;
	padding: 0 11px;
	border: 1px solid #ddd;
	border-radius: 3px;
	background: #fff;
	color: #000;
	font-size: 14px;
	font-weight: 600;
}

.vbx-product-options .is-selected span,
.vbx-product-options input:checked + span {
	border-color: #000;
	box-shadow: inset 0 0 0 1px #000;
}

.vbx-product-qty {
	margin: 6px 0 16px;
	color: #000;
	font-weight: 700;
}

.vbx-product-qty > div {
	display: inline-flex;
	height: 36px;
	margin-left: 18px;
	border: 1px solid #ddd;
}

.vbx-product-qty button,
.vbx-product-qty input {
	width: 36px;
	height: 34px;
	border: 0;
	background: #fff;
	color: #000;
	font-family: inherit;
	text-align: center;
}

.vbx-product-qty input {
	width: 48px;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

.vbx-product-stock,
.vbx-product-soldout {
	margin: 0 0 12px;
	color: #999;
	font-size: 13px;
	line-height: 1.6;
}

.vbx-product-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: min(100%, 535px);
	margin-bottom: 12px;
}

.vbx-product-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid #000;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .35px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.vbx-product-native-purchase {
	width: min(100%, 535px);
	margin-bottom: 12px;
}

.vbx-product-native-purchase form.cart {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: stretch;
	margin: 0;
}

.vbx-product-native-purchase form.variations_form {
	display: block;
}

.vbx-product-native-purchase .quantity {
	display: grid;
	grid-template-columns: 38px minmax(46px, 1fr) 38px;
	width: 124px;
	height: 40px;
	margin: 0;
	border: 1px solid #ddd;
	background: #fff;
	justify-self: start;
}

.vbx-product-native-purchase .quantity button,
.vbx-product-native-purchase .quantity input.qty {
	display: block;
	width: 100%;
	min-width: 0;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	color: #000;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
	box-shadow: none;
	box-sizing: border-box;
}

.vbx-product-native-purchase .quantity button {
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.vbx-product-native-purchase .quantity input.qty {
	position: relative;
	z-index: 2;
	appearance: textfield;
	-moz-appearance: textfield;
}

.vbx-product-native-purchase .quantity input.qty::-webkit-outer-spin-button,
.vbx-product-native-purchase .quantity input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.vbx-product-native-purchase .single_add_to_cart_button,
.vbx-product-native-purchase .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid #000 !important;
	border-radius: 4px;
	background: #fff !important;
	color: #000 !important;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .35px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.vbx-product-native-purchase .variations {
	width: 100%;
	margin: 0 0 14px;
	border: 0;
}

.vbx-product-native-purchase .variations th,
.vbx-product-native-purchase .variations td {
	display: block;
	padding: 0;
	border: 0;
	text-align: left;
}

.vbx-product-native-purchase .variations label {
	display: block;
	margin: 0 0 8px;
	color: #000;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.45;
	text-transform: none;
}

.vbx-product-native-purchase .variations select {
	width: 100%;
	height: 42px;
	margin: 0 0 12px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-family: inherit;
	font-weight: 700;
}

.vbx-product-native-purchase .variations select.vbx-variation-native-select {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}

.vbx-product-native-purchase .vbx-variation-current {
	font-weight: 700;
}

.vbx-product-native-purchase .vbx-variation-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 14px;
}

.vbx-product-native-purchase .vbx-variation-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	min-height: 42px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid #ddd;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: none;
	cursor: pointer;
}

.vbx-product-native-purchase .vbx-variation-button:hover,
.vbx-product-native-purchase .vbx-variation-button:focus-visible {
	border-color: #000;
	color: #000;
	outline: none;
}

.vbx-product-native-purchase .vbx-variation-button.is-selected {
	border-color: #000;
	background: #000;
	color: #fff;
}

.vbx-product-native-purchase .vbx-variation-button:disabled {
	border-color: #eee;
	background: #f7f7f7;
	color: #aaa;
	cursor: not-allowed;
}

.vbx-product-native-purchase .reset_variations {
	display: none !important;
}

.vbx-product-native-purchase .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: stretch;
}

.vbx-product-native-purchase .woocommerce-variation-price,
.vbx-product-native-purchase .woocommerce-variation-availability {
	display: none !important;
}

.vbx-product-native-purchase .stock {
	display: none !important;
}

.vbx-product-cart {
	background: #fff;
	color: #000 !important;
}

.vbx-product-buy {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 12px;
	padding: 12px 24px;
	border: 1px solid #000;
	border-radius: 4px;
	background: #000;
	color: #fff !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .35px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.vbx-product-actions a:hover,
.vbx-product-native-purchase .single_add_to_cart_button:hover,
.vbx-product-native-purchase .button:hover,
.vbx-product-buy:hover {
	opacity: .86;
	transform: translateY(-1px);
}

.vbx-product-native-purchase .single_add_to_cart_button:hover,
.vbx-product-native-purchase .button:hover,
.vbx-product-cart:hover {
	background: #000 !important;
	color: #fff !important;
}

.vbx-product-buy:hover {
	background: #222;
	color: #fff;
}

.vbx-product-pay {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: min(75.42%, 520px);
	margin: 18px 0;
	color: #333;
	font-size: 12px;
}

.vbx-product-pay span {
	padding: 4px 8px;
	border: 1px solid #eee;
	border-radius: 999px;
	background: #fafafa;
}

.vbx-product-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 12px 0 28px;
	color: #000;
	font-size: 13px;
	font-weight: 600;
	text-transform: lowercase;
}

.vbx-product-share > span {
	margin-right: 2px;
}

.vbx-product-share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff !important;
	text-decoration: none;
	transition: none !important;
}

.vbx-product-share-link:nth-of-type(1) {
	background: #315a9b;
}

.vbx-product-share-link:nth-of-type(2) {
	background: #000;
}

.vbx-product-share-link:nth-of-type(3) {
	background: #e60023;
}

.vbx-product-share-link:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
	outline: none;
}

.vbx-product-share-icon {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
	pointer-events: none;
}

.vbx-product-contact {
	width: min(75.42%, 520px);
	padding-top: 12px;
	color: #000;
	font-size: 15px;
	font-weight: 600;
	line-height: 27px;
}

.vbx-product-contact p {
	margin: 0;
}

.vbx-product-contact .is-whatsapp {
	color: #001dff;
}

.vbx-product-trust {
	margin-top: 40px;
	padding: 0;
}

.vbx-product-trust .vbx-product-container {
	border: 1px solid rgba(49, 176, 121, .18);
}

.vbx-product-trust-card {
	--vbx-trust-green: #31b079;
	--vbx-trust-header-bg: rgba(49, 176, 121, .2);
	--vbx-trust-content-bg: rgba(49, 176, 121, .05);
	background: var(--vbx-trust-content-bg);
	color: #111;
	font-size: 12px;
	line-height: 1.65;
}

.vbx-product-trust-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 0 16px;
	border: 0;
	background: var(--vbx-trust-header-bg);
	color: var(--vbx-trust-green);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.vbx-product-trust-header:hover,
.vbx-product-trust-header:focus,
.vbx-product-trust-header:active {
	border: 0;
	background: var(--vbx-trust-header-bg);
	color: var(--vbx-trust-green);
	box-shadow: none;
	outline: none;
}

.vbx-product-trust-header > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.vbx-product-trust-chevron {
	flex: 0 0 auto;
	color: var(--vbx-trust-green);
	transition: transform .18s ease;
}

.vbx-product-trust-card.is-expanded .vbx-product-trust-chevron {
	transform: rotate(180deg);
}

.vbx-product-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	min-height: 86px;
	background: var(--vbx-trust-content-bg);
}

.vbx-product-trust article {
	min-width: 0;
	padding: 20px 22px 18px;
	color: #111;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.vbx-product-trust-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	text-align: center;
}

.vbx-product-trust-icon {
	display: block;
	flex: 0 0 auto;
	fill: var(--vbx-trust-green);
}

.vbx-product-trust-detail {
	display: none;
	margin-top: 14px;
	color: #111;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.62;
	overflow-wrap: anywhere;
	word-break: normal;
}

.vbx-product-trust-card.is-expanded .vbx-product-trust-grid {
	align-items: start;
	min-height: 0;
	padding: 18px 22px 26px;
	gap: 28px;
}

.vbx-product-trust-card.is-expanded article {
	padding: 0;
}

.vbx-product-trust-card.is-expanded .vbx-product-trust-title {
	flex-direction: row;
	justify-content: flex-start;
	min-height: 0;
	text-align: left;
}

.vbx-product-trust-card.is-expanded .vbx-product-trust-detail {
	display: block;
}

.vbx-product-trust-detail p {
	margin: 0 0 10px;
}

.vbx-product-trust-detail ul {
	margin: 0 0 10px;
	padding-left: 16px;
}

.vbx-product-trust-detail h3 {
	margin: 0 0 10px;
	color: #111;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.vbx-product-trust-detail .vbx-trust-faq h3 {
	margin-top: 18px;
}

.vbx-product-trust-detail .vbx-trust-faq h3:first-child {
	margin-top: 0;
}

.vbx-trust-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.vbx-trust-icons img {
	width: auto;
	max-width: 58px;
	height: 22px;
	object-fit: contain;
}

.vbx-product-tabs {
	height: 68px;
	margin-top: 10px;
	border-bottom: 1px solid #eee;
}

.vbx-product-tabs a {
	display: inline-flex;
	align-items: center;
	height: 52.8px;
	border-bottom: 2px solid #000;
	color: #000;
	font-size: 17px;
	font-weight: 700;
}

.vbx-product-richtext {
	padding-top: 30px;
	color: #333;
	font-size: 15px;
	line-height: 1.8;
}

.vbx-product-richtext article,
.vbx-product-richtext ul {
	margin-bottom: 28px;
}

.vbx-product-richtext h2,
.vbx-product-richtext h4 {
	margin: 30px 0 16px;
	color: #111;
	font-weight: 800;
	line-height: 1.35;
}

.vbx-product-richtext h2 {
	font-size: 30px;
}

.vbx-product-richtext h4 {
	font-size: 18px;
}

.vbx-product-richtext p {
	margin: 0 0 12px;
}

.vbx-product-richtext ul {
	padding-left: 20px;
}

.vbx-product-richtext img {
	width: auto;
	max-width: 100%;
	margin: 24px 0 34px;
}

.vbx-product-native-description table {
	width: 100%;
	margin: 18px 0 28px;
	border-collapse: collapse;
}

.vbx-product-native-description th,
.vbx-product-native-description td {
	padding: 10px 12px;
	border: 1px solid #eee;
	text-align: left;
	vertical-align: top;
}

.vbx-product-native-description iframe,
.vbx-product-native-description video {
	max-width: 100%;
}

.vbx-product-recommendations {
	padding: 44px 0;
}

.vbx-product-section-heading h2 {
	margin: 0;
	color: #111;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.3;
}

.vbx-product-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.vbx-product-section-heading a {
	color: #333;
	font-size: 13px;
	font-weight: 700;
	text-transform: lowercase;
}

.vbx-product-rec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 0;
}

.vbx-product-rec-grid .vbx-collection-card {
	min-height: 330px;
}

.vbx-product-brand-labels {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 24px;
	padding-top: 24px;
	color: #333;
	font-size: 14px;
	font-weight: 700;
}

.vbx-product-after-description {
	padding: 0 0 36px;
	background: #fff;
}

.vbx-product-brand-carousel {
	position: relative;
	overflow: hidden;
	padding: 30px 0 42px;
}

.vbx-product-brand-track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 50px max(60px, calc((100vw - var(--vbx-product-container)) / 2));
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.vbx-product-brand-track::-webkit-scrollbar {
	display: none;
}

.vbx-product-brand-card {
	position: relative;
	z-index: 1;
	flex: 0 0 clamp(210px, 15.1vw, 300px);
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
	aspect-ratio: 9.6 / 12;
	background: #f7f7f7;
	transform: scale(.96);
	transition: transform .38s ease, box-shadow .38s ease, opacity .38s ease;
	opacity: .9;
	will-change: transform;
}

.vbx-product-brand-card.is-center {
	z-index: 3;
	box-shadow: 2px 8px 22px rgba(0, 0, 0, .28);
	transform: scale(1.16);
	opacity: 1;
}

.vbx-product-brand-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vbx-product-brand-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 10%;
	background: rgba(0, 0, 0, 0);
	text-decoration: none;
}

.vbx-product-brand-overlay span {
	max-width: 100%;
	padding: 8px 16px;
	border: 1px solid #fff;
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	white-space: nowrap;
}

.vbx-product-brand-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
	color: #666;
	cursor: pointer;
	transform: translateY(-50%);
}

.vbx-product-brand-arrow.is-prev {
	left: 24px;
}

.vbx-product-brand-arrow.is-next {
	right: 24px;
}

.vbx-product-section-richtext {
	width: min(760px, calc(100% - 32px));
	margin: 0 auto;
	padding: 0 0 20px;
	text-align: center;
}

.vbx-product-section-richtext h3 {
	margin: 0 0 18px;
	color: #111;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
}

.vbx-product-section-richtext p {
	margin: 0 0 6px;
	color: #333;
	font-size: 14px;
	line-height: 1.8;
}

.vbx-product-local-video {
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 0 0 20px;
	background: #fff;
}

.vbx-product-local-video video {
	display: block;
	width: 100%;
	height: auto;
}

.vbx-product-gift-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 34px;
	width: min(1500px, calc(100% - 50px));
	margin: 0 auto;
	padding: 0 0 25px;
	background: #fff;
}

.vbx-product-gift-copy {
	padding-right: 1.2rem;
	color: #000;
}

.vbx-product-gift-copy h2 {
	position: relative;
	margin: 0 0 45px;
	color: #000;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.5;
}

.vbx-product-gift-copy h2::after {
	position: absolute;
	bottom: -23px;
	left: 0;
	width: 48px;
	height: 2px;
	background: #000;
	content: "";
}

.vbx-product-gift-copy p {
	max-width: 560px;
	margin: 0;
	color: #000;
	line-height: 28px;
}

.vbx-product-gift-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	padding: 12px 42px;
	border: 1px solid #000;
	border-radius: 4px;
	background: #000 !important;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: none;
}

.vbx-product-gift-link:hover,
.vbx-product-gift-link:focus,
.vbx-product-gift-link:active,
.vbx-product-gift-link:visited {
	background: #000 !important;
	color: #fff !important;
	text-decoration: none;
	opacity: 1;
	transform: none;
}

.vbx-product-gift-media {
	position: relative;
	justify-self: center;
	width: 100%;
}

.vbx-product-gift-media::after {
	position: absolute;
	right: -20px;
	bottom: -20px;
	z-index: 0;
	width: 80%;
	height: 75%;
	background: #fff;
	content: "";
}

.vbx-product-gift-media img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

@media (max-width: 1023px) {
	:root {
		--vbx-product-container: calc(100% - 32px);
	}

	.vbx-product-detail {
		padding-top: 18px;
	}

	.vbx-product-breadcrumb {
		font-size: 13px;
	}

	.vbx-product-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 28px;
		min-width: 0;
		max-width: 100%;
	}

	.vbx-product-media {
		position: relative;
		top: auto;
		display: flex;
		flex-direction: column-reverse;
		align-items: stretch;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.vbx-product-thumbs-frame {
		display: block;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		height: auto;
		overflow: hidden;
	}

	.vbx-product-thumbs-nav {
		display: none;
	}

	.vbx-product-thumbs-scroll {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}

	.vbx-product-thumbs {
		display: flex;
		width: max-content;
		max-width: none;
		padding-bottom: 8px;
	}

	.vbx-product-thumbs button {
		flex: 0 0 var(--vbx-product-thumb-size);
	}

	.vbx-product-stage {
		width: min(100%, 560px);
		max-width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		margin: 0 auto;
	}

	.vbx-product-panel,
	.vbx-product-offer,
	.vbx-product-actions,
	.vbx-product-pay,
	.vbx-product-contact {
		min-width: 0;
		width: 100%;
	}

	.vbx-product-native-purchase .variations,
	.vbx-product-native-purchase .variations tbody,
	.vbx-product-native-purchase .variations tr,
	.vbx-product-native-purchase .variations th,
	.vbx-product-native-purchase .variations td,
	.vbx-product-native-purchase .woocommerce-variation-add-to-cart {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.vbx-product-native-purchase .vbx-variation-buttons {
		min-width: 0;
	}

	.vbx-product-native-purchase .vbx-variation-button,
	.vbx-product-pay span {
		overflow-wrap: anywhere;
	}

	.vbx-product-trust {
		margin-top: 32px;
	}

	.vbx-product-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vbx-product-trust-card.is-expanded .vbx-product-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vbx-product-rec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 12px;
	}

	.vbx-product-brand-track {
		padding-right: 32px;
		padding-left: 32px;
	}

	.vbx-product-gift-section {
		grid-template-columns: 1fr;
		width: calc(100% - 32px);
		padding-bottom: 34px;
	}

	.vbx-product-gift-media {
		order: -1;
	}

	.vbx-product-gift-copy {
		padding-right: 0;
	}

	.vbx-product-gift-copy h2 {
		margin-bottom: 26px;
		font-size: 24px;
	}

	.vbx-product-gift-copy h2::after {
		bottom: -12px;
	}

	.vbx-product-gift-link {
		margin-top: 16px;
	}
}

@media (max-width: 480px) {
	.vbx-product-panel h1 {
		min-height: 0;
		font-size: 20px;
		line-height: 1.45;
	}

	.vbx-product-price {
		gap: 16px;
	}

	.vbx-product-price strong {
		font-size: 24px;
	}

	.vbx-product-price del {
		font-size: 16px;
	}

	.vbx-product-actions {
		grid-template-columns: 1fr;
	}

	.vbx-product-native-purchase .single_add_to_cart_button,
	.vbx-product-native-purchase .button,
	.vbx-product-buy,
	.vbx-product-cart {
		width: 100%;
	}

	.vbx-product-trust-grid {
		grid-template-columns: 1fr;
	}

	.vbx-product-trust-card.is-expanded .vbx-product-trust-grid {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.vbx-product-trust article {
		padding: 16px;
	}

	.vbx-product-richtext h2 {
		font-size: 23px;
	}

	.vbx-product-section-heading {
		display: block;
	}

	.vbx-product-brand-track {
		gap: 14px;
		padding: 34px 20px;
	}

	.vbx-product-brand-card {
		flex-basis: 68vw;
	}

	.vbx-product-brand-card.is-center {
		transform: scale(1.08);
	}

	.vbx-product-brand-arrow {
		width: 34px;
		height: 34px;
	}

	.vbx-product-brand-arrow.is-prev {
		left: 8px;
	}

	.vbx-product-brand-arrow.is-next {
		right: 8px;
	}

	.vbx-product-section-richtext {
		padding-bottom: 12px;
	}

	.vbx-product-section-richtext h3 {
		font-size: 20px;
	}
}
