.wtgc-promo[hidden] {
	display: none !important;
}

.wtgc-promo,
.wtgc-promo * {
	box-sizing: border-box;
}

.wtgc-promo {
	width: 100%;
	margin: 0;
	background: var(--wtgc-bg, #1f2937);
	color: var(--wtgc-text, #fff);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.3;
	position: relative;
	z-index: 9990;
	-webkit-font-smoothing: antialiased;
}

.wtgc-bar {
	margin: 0 !important;
}

.wtgc-inline {
	border-radius: 12px;
	margin: 12px 0;
	overflow: hidden;
}

.wtgc-inner {
	width: 100%;
	max-width: 1280px;
	min-height: 50px;
	margin: 0 auto;
	padding: 8px 48px 8px 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	position: relative;
}

.wtgc-message {
	min-width: 0;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .005em;
	text-align: center;
}

.wtgc-offer {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	flex-wrap: wrap;
}

.wtgc-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin: 0;
	padding: 0 11px;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 999px;
	background: rgba(255,255,255,.13);
	color: inherit;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	user-select: all;
}

/*
 * Deliberately strong declarations: many WooCommerce themes apply global
 * button dimensions/backgrounds. These controls should stay compact.
 */
.wtgc-promo .wtgc-btn {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	height: 34px !important;
	min-height: 34px !important;
	margin: 0 !important;
	padding: 0 12px !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	font-family: inherit !important;
	font-size: 12px !important;
	font-style: normal !important;
	font-weight: 750 !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	text-transform: none !important;
	white-space: nowrap !important;
	cursor: pointer;
	transition: opacity .16s ease, transform .16s ease, background-color .16s ease;
}

.wtgc-promo .wtgc-copy {
	border: 1px solid rgba(255,255,255,.38) !important;
	background: transparent !important;
	color: inherit !important;
}

.wtgc-promo .wtgc-apply {
	border: 1px solid transparent !important;
	background: var(--wtgc-button-bg, #fff) !important;
	color: var(--wtgc-button-text, #111827) !important;
}

.wtgc-promo .wtgc-btn:hover {
	opacity: .9;
}

.wtgc-promo .wtgc-btn:active {
	transform: translateY(1px);
}

.wtgc-promo .wtgc-btn:focus-visible,
.wtgc-promo .wtgc-dismiss:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 2px !important;
}

.wtgc-promo .wtgc-btn:disabled {
	cursor: default;
	opacity: .72;
	transform: none;
}

.wtgc-status {
	flex-basis: 100%;
	width: 100%;
	font-size: 11.5px;
	font-weight: 650;
	line-height: 1.25;
	text-align: center;
}

.wtgc-status:empty {
	display: none;
}

.wtgc-promo .wtgc-dismiss {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: absolute !important;
	right: 10px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,.1) !important;
	box-shadow: none !important;
	color: inherit !important;
	font-family: Arial, sans-serif !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-transform: none !important;
	cursor: pointer;
	transition: background-color .16s ease, opacity .16s ease;
}

.wtgc-promo .wtgc-dismiss:hover {
	background: rgba(255,255,255,.18) !important;
}

.wtgc-promo:not([hidden]) .wtgc-inner {
	animation: wtgc-promo-in .2s ease-out both;
}

@keyframes wtgc-promo-in {
	from { opacity: .01; transform: translateY(-3px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
	.wtgc-inner {
		min-height: 0;
		padding: 9px 38px 9px 10px;
		flex-direction: column;
		gap: 7px;
	}

	.wtgc-message {
		width: 100%;
		font-size: 12.5px;
		line-height: 1.25;
	}

	.wtgc-offer {
		width: 100%;
		gap: 6px;
		flex-wrap: wrap;
	}

	.wtgc-code {
		min-height: 32px;
		padding: 0 9px;
		font-size: 11.5px;
	}

	.wtgc-promo .wtgc-btn {
		height: 32px !important;
		min-height: 32px !important;
		padding: 0 10px !important;
		font-size: 11.5px !important;
	}

	.wtgc-promo .wtgc-dismiss {
		right: 7px !important;
		width: 26px !important;
		height: 26px !important;
		min-width: 26px !important;
		min-height: 26px !important;
		font-size: 18px !important;
	}

	.wtgc-hide-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.wtgc-hide-desktop {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wtgc-promo:not([hidden]) .wtgc-inner {
		animation: none;
	}

	.wtgc-promo .wtgc-btn,
	.wtgc-promo .wtgc-dismiss {
		transition: none;
	}
}

/* v1.3.0 popup layer ----------------------------------------------------- */
html.wtgc-popup-open,
body.wtgc-popup-open {
	overflow: hidden !important;
}

.wtgc-popup-shell[hidden] {
	display: none !important;
}

.wtgc-popup-shell,
.wtgc-popup-shell * {
	box-sizing: border-box;
}

.wtgc-popup-shell {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
	font-family: inherit;
	-webkit-font-smoothing: antialiased;
}

.wtgc-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .62);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.wtgc-popup-card {
	position: relative;
	z-index: 1;
	width: min(100%, 470px);
	max-height: calc(100vh - 44px);
	overflow: auto;
	margin: 0;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
	color: #172033;
	outline: 0;
}

.wtgc-popup-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7;
	object-fit: cover;
	border: 0;
	border-radius: 22px 22px 0 0;
}

.wtgc-popup-content {
	padding: 30px 30px 28px;
	text-align: center;
}

.wtgc-popup-kicker {
	margin: 0 0 8px;
	color: var(--wtgc-bg, #1f2937);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.wtgc-popup-heading {
	margin: 0 38px 10px;
	padding: 0;
	color: #172033;
	font-family: inherit;
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.08;
	text-transform: none;
}

.wtgc-popup-message {
	margin: 0 auto 20px;
	max-width: 380px;
	color: #5b6474;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.wtgc-popup-offer {
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #f8fafc;
}

.wtgc-popup-shell .wtgc-popup-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: 0 0 12px;
	padding: 0 16px;
	border: 1px dashed color-mix(in srgb, var(--wtgc-bg, #1f2937) 55%, #ffffff);
	border-radius: 999px;
	background: color-mix(in srgb, var(--wtgc-bg, #1f2937) 8%, #ffffff);
	color: var(--wtgc-bg, #1f2937);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	user-select: all;
}

.wtgc-popup-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.wtgc-popup-shell .wtgc-btn {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 132px !important;
	max-width: 100% !important;
	height: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border-radius: 999px !important;
	box-shadow: none !important;
	font-family: inherit !important;
	font-size: 13px !important;
	font-style: normal !important;
	font-weight: 750 !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	text-transform: none !important;
	white-space: nowrap !important;
	cursor: pointer;
	transition: opacity .16s ease, transform .16s ease, background-color .16s ease;
}

.wtgc-popup-shell .wtgc-copy {
	border: 1px solid #d8dde6 !important;
	background: #fff !important;
	color: #293243 !important;
}

.wtgc-popup-shell .wtgc-apply {
	border: 1px solid var(--wtgc-bg, #1f2937) !important;
	background: var(--wtgc-bg, #1f2937) !important;
	color: var(--wtgc-text, #fff) !important;
}

.wtgc-popup-shell .wtgc-btn:hover {
	opacity: .9;
}

.wtgc-popup-shell .wtgc-btn:active {
	transform: translateY(1px);
}

.wtgc-popup-shell .wtgc-btn:disabled {
	cursor: default;
	opacity: .68;
	transform: none;
}

.wtgc-popup-shell .wtgc-btn:focus-visible,
.wtgc-popup-shell .wtgc-popup-close:focus-visible {
	outline: 2px solid var(--wtgc-bg, #1f2937) !important;
	outline-offset: 2px !important;
}

.wtgc-popup-shell .wtgc-status {
	display: block;
	width: 100%;
	margin-top: 9px;
	color: #596273;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
	text-align: center;
}

.wtgc-popup-shell .wtgc-status:empty {
	display: none;
}

.wtgc-popup-shell .wtgc-popup-close {
	-webkit-appearance: none !important;
	appearance: none !important;
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	z-index: 3 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	margin: 0 !important;
	padding: 0 0 2px !important;
	border: 1px solid rgba(15, 23, 42, .08) !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,.94) !important;
	box-shadow: 0 3px 12px rgba(15,23,42,.09) !important;
	color: #263044 !important;
	font-family: Arial, sans-serif !important;
	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-transform: none !important;
	cursor: pointer;
}

.wtgc-popup-shell:not([hidden]) .wtgc-popup-card {
	animation: wtgc-popup-in .22s ease-out both;
}

.wtgc-popup-shell:not([hidden]) .wtgc-popup-backdrop {
	animation: wtgc-popup-fade .18s ease-out both;
}

@keyframes wtgc-popup-in {
	from { opacity: .01; transform: translateY(8px) scale(.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wtgc-popup-fade {
	from { opacity: .01; }
	to { opacity: 1; }
}

@media (max-width: 767px) {
	.wtgc-popup-shell {
		align-items: flex-end;
		padding: 12px 10px;
	}

	.wtgc-popup-card {
		width: 100%;
		max-height: calc(100vh - 24px);
		border-radius: 20px;
	}

	.wtgc-popup-image {
		aspect-ratio: 16 / 6.5;
		border-radius: 20px 20px 0 0;
	}

	.wtgc-popup-content {
		padding: 24px 18px 20px;
	}

	.wtgc-popup-heading {
		margin: 0 32px 9px;
		font-size: 25px;
	}

	.wtgc-popup-message {
		margin-bottom: 16px;
		font-size: 14px;
	}

	.wtgc-popup-offer {
		padding: 12px;
	}

	.wtgc-popup-actions {
		flex-direction: column-reverse;
		gap: 7px;
	}

	.wtgc-popup-shell .wtgc-btn {
		width: 100% !important;
		min-width: 0 !important;
	}

	.wtgc-popup-hide-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.wtgc-popup-hide-desktop {
		display: none !important;
	}
}

@supports not (color: color-mix(in srgb, black 50%, white)) {
	.wtgc-popup-shell .wtgc-popup-code {
		border-color: #cbd5e1;
		background: #f1f5f9;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wtgc-popup-shell:not([hidden]) .wtgc-popup-card,
	.wtgc-popup-shell:not([hidden]) .wtgc-popup-backdrop {
		animation: none;
	}

	.wtgc-popup-shell .wtgc-btn {
		transition: none;
	}
}
