/* WOATCHOOZ v3.0 - Split Screen Homepage */
* {
	box-sizing: border-box;
}

/* HERO SPLIT */
.wz-hero-split {
	display: flex;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
}

/* LEFT */
.wz-hero-left {
	width: 50%;
	min-height: 100vh;
	background: linear-gradient(135deg, #0d1b2a 0%, #1a2f4e 30%, #0f4c75 60%, #1a8aa0 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.wz-hero-left::before {
	content: '';
	position: absolute;
	background: radial-gradient(circle at 30% 70%, rgba(0,210,200,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(100,200,255,0.1) 0%, transparent 40%);
	pointer-events: none;
}

.wz-hero-left-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 40px 30px;
}

.wz-mascotte-container {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}

.wz-mascotte-hero {
	width: clamp(200px, 25vw, 360px);
	height: clamp(200px, 25vw, 360px);
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,0.2);
	box-shadow: 0 0 0 12px rgba(0,210,200,0.15), 0 0 0 24px rgba(0,210,200,0.08), 0 30px 80px rgba(0,0,0,0.5), 0 0 120px rgba(0,210,200,0.2);
	animation: wzFloat 4s ease-in-out infinite;
	display: block;
}

@keyframes wzFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	
	50% {
		transform: translateY(-12px);
	}
}

.wz-brand-name {
	font-family: -apple-system, 'SF Pro Display', 'Segoe UI', sans-serif;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: -1px;
	color: #ffffff;
	text-shadow: 0 2px 20px rgba(0,210,200,0.5);
	margin-bottom: 8px;
}

.wz-brand-tagline {
	font-size: clamp(11px, 1.3vw, 14px);
	font-weight: 500;
	color: rgba(0,210,200,0.9);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.wz-brand-desc {
	font-size: clamp(12px, 1.2vw, 14px);
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
	max-width: 300px;
	margin: 0 auto;
}

/* RIGHT */
.wz-hero-right {
	width: 50%;
	min-height: 100vh;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
}

.wz-search-engine {
	width: 100%;
	max-width: 520px;
	text-align: center;
}

.wz-search-logo {
	font-family: -apple-system, 'SF Pro Display', 'Segoe UI', sans-serif;
	font-size: clamp(32px, 4.5vw, 60px);
	font-weight: 900;
	letter-spacing: -3px;
	margin-bottom: 8px;
	line-height: 1;
}

.wz-search-logo-w {
	color: #1a8aa0;
}

.wz-search-logo-o {
	color: #e63946;
}

.wz-search-logo-a {
	color: #f4a261;
}

.wz-search-logo-t {
	color: #1a8aa0;
}

.wz-search-logo-c {
	color: #e63946;
}

.wz-search-logo-h {
	color: #2a9d8f;
}

.wz-search-logo-o2 {
	color: #f4a261;
}

.wz-search-logo-o3 {
	color: #1a8aa0;
}

.wz-search-logo-z {
	color: #e63946;
}

.wz-search-subtitle {
	font-size: clamp(13px, 1.3vw, 15px);
	color: #5f6368;
	margin-bottom: 24px;
}

.wz-search-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.wz-search-input-wrap {
	position: relative;
	width: 100%;
}

.wz-search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #9aa0a6;
}

.wz-search-input {
	width: 100%;
	height: 52px;
	padding: 0 20px 0 48px;
	border: 1.5px solid #dfe1e5;
	border-radius: 26px;
	font-size: 15px;
	color: #202124;
	outline: none;
	transition: all .2s ease;
}

.wz-search-input:hover, .wz-search-input:focus {
	box-shadow: 0 1px 6px rgba(32,33,36,0.2);
	border-color: transparent;
}

.wz-search-btn {
	height: 44px;
	background: #1a8aa0;
	color: #fff;
	border: none;
	border-radius: 22px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
	width: 100%;
}

.wz-search-btn:hover {
	background: #0f6b7d;
	box-shadow: 0 4px 16px rgba(26,138,160,0.35);
	transform: translateY(-1px);
}

.wz-cat-title {
	font-size: 11px;
	font-weight: 600;
	color: #9aa0a6;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
	text-align: left;
}

.wz-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.wz-cat-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: #f8f9fa;
	border: 1px solid #e8eaed;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	color: #3c4043;
	text-decoration: none;
	transition: all .15s ease;
}

.wz-cat-chip:hover {
	background: #e8f4f8;
	border-color: #1a8aa0;
	color: #1a8aa0;
	transform: translateY(-1px);
	text-decoration: none;
}

.wz-stats-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 16px;
	padding: 14px;
	background: #f8f9fa;
	border-radius: 12px;
}

.wz-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wz-stat-num {
	font-size: 20px;
	font-weight: 800;
	color: #1a8aa0;
}

.wz-stat-label {
	font-size: 10px;
	color: #9aa0a6;
	text-transform: uppercase;
	letter-spacing: .8px;
}

.wz-stat-sep {
	font-size: 18px;
	color: #dadce0;
}

.wz-cta-all {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #1a8aa0;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid transparent;
	transition: border-color .2s;
}

.wz-cta-all:hover {
	border-bottom-color: #1a8aa0;
	text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.wz-hero-split {
		flex-direction: column;
	}
	
	.wz-hero-left, .wz-hero-right {
		width: 100%;
		min-height: auto;
	}
	
	.wz-hero-left {
		min-height: 60vh;
		padding: 60px 20px 40px;
	}
	
	.wz-hero-right {
		padding: 30px 20px;
	}
}

/* HOMEPAGE FULL WIDTH */
.page-id-52 .entry-title, .page-id-52 .wp-block-post-title {
	display: none !important;
}

.page-id-52 .entry-content, .page-id-52 .wp-block-post-content {
	max-width: 100% !important;
	padding: 0 !important;
}

.page-id-52 main, .page-id-52 article {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.page-id-52 .wp-block-group {
	max-width: 100% !important;
}

/* ARTICLE CARDS - compare grid */
.woatchooz-compare-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 30px 0;
}

.woatchooz-product-card {
	background: #fff;
	border: 1px solid #e8eaed;
	border-radius: 16px;
	padding: 20px;
	transition: all .2s ease;
	text-align: center;
}

.woatchooz-product-card.winner {
	border-color: #1a8aa0;
	box-shadow: 0 4px 24px rgba(26,138,160,0.15);
}

.woatchooz-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.woatchooz-score-badge {
	background: linear-gradient(135deg, #1a8aa0, #0f6b7d);
	color: white;
	border-radius: 8px;
	padding: 8px 16px;
	font-weight: 700;
	font-size: 13px;
	display: inline-block;
	margin-bottom: 12px;
}

.score-num {
	font-size: 18px;
	margin-left: 4px;
}

.woatchooz-verdict {
	background: linear-gradient(135deg, #f0f9fa, #e6f4f7);
	border-left: 4px solid #1a8aa0;
	border-radius: 0 12px 12px 0;
	padding: 20px 24px;
	margin: 24px 0;
	font-size: 15px;
	line-height: 1.6;
}

.woatchooz-ai-intro {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: linear-gradient(135deg, #f0f9fa, #e6f4f7);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 24px;
	border: 1px solid rgba(26,138,160,0.15);
}

.woatchooz-ai-intro img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.btn-amazon {
	display: inline-block;
	background: linear-gradient(135deg, #FF9900, #FF6600);
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 24px;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	margin-top: 12px;
	transition: all .2s ease;
}

.btn-amazon:hover {
	background: linear-gradient(135deg, #FF6600, #cc5200);
	transform: translateY(-1px);
	text-decoration: none;
}

/* Hide WP admin bar on homepage for visitors */
/* Make header transparent/minimal on homepage */
.page-id-52 header,
.page-id-52 .wp-block-template-part[data-area="header"] {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent !important;
}

.page-id-52 header a,
.page-id-52 header .wp-block-site-title a,
.page-id-52 header .wp-block-navigation a {
	color: rgba(255,255,255,0.9) !important;
}

/* Remove padding/margin on body for homepage */
.page-id-52 body,
.page-id-52 .wp-site-blocks {
	padding: 0 !important;
	margin: 0 !important;
}

/* Fix entry content full width */
.page-id-52 .wp-block-post-content > * {
	max-width: 100% !important;
}

/* Hide page title on homepage */
.page-id-52 h1.wp-block-post-title,
.page-id-52 .entry-header {
	display: none !important;
}

/* Ensure the hero takes full viewport */
.wz-hero-split {
	min-height: calc(100vh - 0px);
	margin: 0;
	padding: 0;
}

/* Left side - ensure image covers full height */
.wz-hero-left {
	background-attachment: fixed;
}

/* Improve the circular mascotte - larger */
.wz-mascotte-hero {
	width: clamp(240px, 28vw, 420px) !important;
	height: clamp(240px, 28vw, 420px) !important;
}

/* Fix WOATCHOOZ text on left */
.wz-brand-name {
	font-size: clamp(32px, 4.5vw, 56px) !important;
	margin-top: 24px;
}

/* Right side search bar container */
.wz-hero-right {
	overflow-y: auto;
}

/* Navigation on homepage - make it overlay the left panel */
.page-id-52 .wp-block-navigation__container {
	color: rgba(255,255,255,0.9);
}

/* Site title on homepage */
.page-id-52 .wp-block-site-title {
	color: #ffffff !important;
}

/* Assembler theme - remove default padding from content */
.wp-block-group.has-background {
	padding: 0 !important;
}

/* FAKE SEARCH BAR (remplace le form+input filtré par WP) */
.wz-search-bar-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.wz-fake-search-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	height: 52px;
	padding: 0 20px 0 16px;
	border: 1.5px solid #dfe1e5;
	border-radius: 26px;
	background: #ffffff;
	text-decoration: none !important;
	color: #9aa0a6 !important;
	transition: all .2s ease;
	cursor: pointer;
}

.wz-fake-search-bar:hover {
	box-shadow: 0 1px 6px rgba(32,33,36,0.2);
	border-color: transparent;
	color: #5f6368 !important;
	text-decoration: none !important;
}

.wz-fake-search-bar .wz-search-icon {
	position: static;
	transform: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #9aa0a6;
}

.wz-fake-search-text {
	font-family: -apple-system, 'SF Pro Text', 'Segoe UI', sans-serif;
	font-size: 15px;
	color: #9aa0a6;
}

.wz-search-btn {
	display: block;
	height: 48px;
	line-height: 48px;
	padding: 0 24px;
	background: #1a8aa0;
	color: #ffffff !important;
	border: none;
	border-radius: 24px;
	font-family: -apple-system, 'SF Pro Text', 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
	width: 100%;
	text-align: center;
	text-decoration: none !important;
	letter-spacing: .3px;
}

.wz-search-btn:hover {
	background: #0f6b7d;
	box-shadow: 0 4px 16px rgba(26,138,160,0.35);
	transform: translateY(-1px);
	color: #ffffff !important;
	text-decoration: none !important;
}