/**
 * EduPress Google Login — Stylesheet
 * Matches EduPress theme (font: Jost) with premium design.
 *
 * @package EDP_Google_Login
 */

/* ─── Wrapper ─────────────────────────────────────── */
.edp-google-login-wrap {
	margin: 16px 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	font-family: 'Jost', sans-serif;
}

/* ─── Divider ──────────────────────────────────────── */
.edp-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: center;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.edp-divider::before,
.edp-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

.edp-divider-sm {
	font-size: 11px;
}

/* ─── Google Button ────────────────────────────────── */
.edp-google-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 13px 20px;
	background: #ffffff;
	color: #1e293b;
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.06),
		0 1px 2px rgba(0, 0, 0, 0.04);
	cursor: pointer;
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.18s ease,
		background 0.18s ease;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.edp-google-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(66, 133, 244, 0.04) 0%, rgba(234, 67, 53, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.22s ease;
	border-radius: inherit;
}

.edp-google-btn:hover {
	border-color: #4285F4;
	box-shadow:
		0 4px 12px rgba(66, 133, 244, 0.15),
		0 2px 6px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
	color: #1e293b;
	text-decoration: none;
}

.edp-google-btn:hover::before {
	opacity: 1;
}

.edp-google-btn:active {
	transform: translateY(0);
	box-shadow:
		0 2px 6px rgba(66, 133, 244, 0.12),
		0 1px 3px rgba(0, 0, 0, 0.06);
}

.edp-google-btn:focus-visible {
	outline: 2px solid #4285F4;
	outline-offset: 2px;
}

/* ─── Google Icon ──────────────────────────────────── */
.edp-google-icon {
	flex-shrink: 0;
	display: block;
}

/* ─── Button Text ──────────────────────────────────── */
.edp-google-btn span {
	position: relative;
	z-index: 1;
}

/* ─── Compact (Checkout) variant ───────────────────── */
.edp-google-btn.edp-google-btn-sm {
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 8px;
	gap: 10px;
}

.edp-google-btn.edp-google-btn-sm .edp-google-icon {
	width: 18px;
	height: 18px;
}

/* ─── wp-signup.php special layout ────────────────── */
.edp-google-login-wpsignup {
	max-width: 480px;
	margin: 0 auto 0;
}

/* ─── Dark background contexts (if any) ───────────── */
.learn-press-form .edp-google-btn {
	background: #fff;
}

/* ─── Loading state (JS progressive enhancement) ─── */
.edp-google-btn.edp-loading {
	pointer-events: none;
	opacity: 0.7;
}

.edp-google-btn.edp-loading span::after {
	content: '...';
}
