/* -------------------------------------------------------------
   Biofusion Wellness gate page — navy / teal palette
   Swap these values to re-theme the whole page.
------------------------------------------------------------- */
:root {
	--wcwp-navy: #16273f;
	--wcwp-navy-light: #24395c;
	--wcwp-teal: #1c8f86;
	--wcwp-teal-light: #23a99e;
	--wcwp-teal-pale: #e8f5f3;
	--wcwp-bg-1: #eef3f6;
	--wcwp-bg-2: #e4edf1;
	--wcwp-border: #d9e3e7;
	--wcwp-text-muted: #5c6b74;
}

.wcwp-gate-body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--wcwp-bg-1) 0%, var(--wcwp-bg-2) 50%, #dfe9ec 100%);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	padding: 32px 16px;
	box-sizing: border-box;
}

.wcwp-gate-wrap {
	width: 100%;
	max-width: 960px;
}

.wcwp-gate-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 30px 60px rgba(22, 39, 63, 0.14);
	overflow: hidden;
}

@media (max-width: 800px) {
	.wcwp-gate-card {
		grid-template-columns: 1fr;
	}
}

.wcwp-gate-left,
.wcwp-gate-right {
	padding: 48px 40px;
}

.wcwp-gate-left {
	background: linear-gradient(180deg, #f3f8f9 0%, #eaf2f3 100%);
	border-right: 1px solid var(--wcwp-border);
}

.wcwp-gate-logo img {
	max-height: 48px;
	width: auto;
}

.wcwp-gate-logo-text {
	font-size: 22px;
	font-weight: 800;
	color: var(--wcwp-navy);
	letter-spacing: 0.02em;
}

.wcwp-gate-headline {
	font-size: 34px;
	line-height: 1.15;
	font-weight: 800;
	color: var(--wcwp-navy);
	margin: 24px 0 16px;
}

.wcwp-gate-pill {
	display: inline-block;
	background: var(--wcwp-teal);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 999px;
	text-decoration: none;
}

.wcwp-gate-subline {
	margin: 12px 0 24px;
	color: var(--wcwp-text-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wcwp-gate-image-card {
	background: #fff;
	border: 1px solid var(--wcwp-border);
	border-radius: 16px;
	overflow: hidden;
}

.wcwp-gate-image img {
	width: 100%;
	display: block;
}

.wcwp-gate-badges {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	padding: 16px 12px;
}

@media (max-width: 500px) {
	.wcwp-gate-badges {
		grid-template-columns: repeat(2, 1fr);
	}
}

.wcwp-gate-badge {
	text-align: center;
}

.wcwp-gate-badge::before {
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	margin: 0 auto 6px;
	border-radius: 50%;
	background: var(--wcwp-teal-pale);
	border: 1px solid var(--wcwp-teal-light);
}

.wcwp-gate-badge-label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	color: var(--wcwp-navy);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.wcwp-gate-badge-desc {
	display: block;
	font-size: 10px;
	color: var(--wcwp-text-muted);
	margin-top: 2px;
	line-height: 1.3;
}

.wcwp-gate-right {
	display: flex;
	flex-direction: column;
}

.wcwp-gate-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wcwp-teal);
	margin-bottom: 8px;
}

.wcwp-gate-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--wcwp-navy);
	margin: 0 0 16px;
}

.wcwp-gate-discount {
	display: inline-block;
	align-self: flex-start;
	background: var(--wcwp-teal-pale);
	border: 1px solid var(--wcwp-teal-light);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 12px;
	color: var(--wcwp-navy);
	margin-bottom: 16px;
}

.wcwp-gate-discount strong {
	color: var(--wcwp-teal);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.wcwp-gate-compliance {
	background: #f7fafa;
	border: 1px solid var(--wcwp-border);
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--wcwp-text-muted);
	margin-bottom: 24px;
}

.wcwp-gate-tabs {
	display: flex;
	border: 1px solid var(--wcwp-border);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 24px;
}

.wcwp-gate-tab {
	flex: 1;
	background: #fff;
	border: none;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--wcwp-text-muted);
	cursor: pointer;
}

.wcwp-gate-tab.is-active {
	color: var(--wcwp-teal);
	background: var(--wcwp-teal-pale);
}

.wcwp-gate-form label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--wcwp-text-muted);
	margin: 16px 0 6px;
}

.wcwp-gate-form label:first-child {
	margin-top: 0;
}

.wcwp-gate-form input[type="text"],
.wcwp-gate-form input[type="email"],
.wcwp-gate-form input[type="password"],
.wcwp-gate-form select {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #94a3b8;
	border-radius: 10px;
	font-size: 14px;
	background: #fbfdfd;
}

.wcwp-checkbox-row {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	font-size: 12.5px !important;
	font-weight: 400 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	color: #3c4a52 !important;
	margin: 12px 0 !important;
}

.wcwp-checkbox-row input[type="checkbox"] {
	margin-top: 2px;
	accent-color: var(--wcwp-teal);
}

.wcwp-gate-hint {
	font-size: 12px;
	color: var(--wcwp-text-muted);
	margin: 4px 0 0;
}

.wcwp-gate-submit {
	width: 100%;
	margin-top: 20px;
	padding: 14px 0;
	border: none;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--wcwp-teal), var(--wcwp-navy-light));
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.wcwp-gate-submit:hover {
	opacity: 0.92;
}

.wcwp-gate-forgot {
	display: block;
	text-align: center;
	margin-top: 16px;
	font-size: 13px;
	color: var(--wcwp-teal);
	text-decoration: none;
}

.wcwp-gate-panel .woocommerce-error,
.wcwp-gate-panel .woocommerce-message,
.wcwp-gate-right .woocommerce-error,
.wcwp-gate-right .woocommerce-message {
	list-style: none;
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 8px;
	background: #fdeceb;
	color: #a33327;
	font-size: 13px;
}

.wcwp-gate-right .woocommerce-message {
	background: var(--wcwp-teal-pale);
	color: #146059;
}
