/**
 * Page 404 - Error Page
 * Structure et style pour la page d'erreur 404
 *
 * @package TacticHall
 */

/* ==========================================================================
   Container principal 404
   ========================================================================== */

.error-404-page {
	padding: 5rem 0;
	min-height: 60vh;
}

.error-404-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* ==========================================================================
   Titre "404"
   ========================================================================== */

.error-404-title {
	font-family: 'Stencil', Impact, 'Arial Black', sans-serif;
	font-size: clamp(6rem, 15vw, 10rem);
	font-weight: normal;
	color: var(--color-black);
	margin: 0 0 1.5rem 0;
	line-height: 1;
	letter-spacing: 0.5px;
}

/* ==========================================================================
   Sous-titre "Page non trouvée"
   ========================================================================== */

.error-404-subtitle {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--color-black);
	margin: 0 0 1.5rem 0;
	line-height: 1.3;
}

/* ==========================================================================
   Texte descriptif
   ========================================================================== */

.error-404-text {
	font-size: 1.125rem;
	color: var(--color-steel);
	line-height: 1.6;
	margin: 0 0 3rem 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Boutons d'action
   ========================================================================== */

.error-404-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

/* Note: Utilise .btn-black et .btn-white de buttons.css */

/* ==========================================================================
   Section suggestions de produits
   ========================================================================== */

.error-404-suggestions {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 2px solid var(--color-border);
}

.error-404-suggestions h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--color-black);
	margin: 0 0 2rem 0;
	text-align: center;
}

.error-404-suggestions .products-grid {
	margin-top: 2rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.error-404-page {
		padding: 3rem 0;
	}

	.error-404-title {
		margin-bottom: 1rem;
	}

	.error-404-subtitle {
		margin-bottom: 1rem;
	}

	.error-404-text {
		margin-bottom: 2rem;
		font-size: 1rem;
	}

	.error-404-actions {
		flex-direction: column;
		margin-bottom: 3rem;
		gap: 0.75rem;
	}

	.error-404-actions .button {
		width: 100%;
		max-width: 300px;
	}

	.error-404-suggestions {
		margin-top: 3rem;
		padding-top: 2rem;
	}

	.error-404-suggestions h2 {
		margin-bottom: 1.5rem;
	}
}