/*
Theme Name: Atable Batch Cooking
Theme URI: https://www.atablebatchcooking.fr
Description: Un thème sur mesure pour Atable Batch Cooking, basé sur les blocs.
Author: Antigravity
Version: 1.2
*/
@font-face {
	font-family: 'FontAwesome';
	src: url('assets/fonts/fontawesome/fontawesome-webfont.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

html {
	scroll-behavior: smooth;
}

/* General Reset & Base Styles */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* FontAwesome Utilities */
.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Fix SVG Site Logo dimensions */
.wp-block-site-logo {
	display: inline-block;
	line-height: 0;
}

.wp-block-site-logo a {
	display: block;
}

.wp-block-site-logo img,
.wp-block-site-logo svg {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

/* Header Top Bar */
.header-top-bar {
	background-color: #92201C;
	background: linear-gradient(90deg, #92201C 0%, #b82b26 100%);
	color: #ffffff;
	font-size: 13px;
	padding: 8px 50px;
	display: flex;
	justify-content: center;
	gap: 30px;
	font-family: var(--wp--preset--font-family--outfit);
	font-weight: 500;
}

.header-top-bar span {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Navigation Styling */

.wp-block-navigation__responsive-container.is-menu-open {
	padding: 2rem;
}

.wp-block-navigation__responsive-container.is-menu-open li {
	padding-top: 1rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-buttons {
	padding-top: 2rem;
}

.wp-block-navigation .wp-block-navigation-item__label {
	font-family: var(--wp--preset--font-family--mclaren);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 15px;
	transition: color 0.3s ease;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--primary);
}

/* Utilities */
.text-gradient {
	/* background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #ff6b6b 100%); */
	/* -webkit-background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
	/* background-clip: text; */
	/* text-fill-color: transparent; */
}

.bg-soft-gradient {
	background: linear-gradient(180deg, #FFF6F6 0%, #FFFFFF 100%);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}


	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
	opacity: 0;
	/* Start hidden */
}

.delay-100 {
	animation-delay: 0.1s;
}

.delay-200 {
	animation-delay: 0.2s;
}

.delay-300 {
	animation-delay: 0.3s;
}

/* Hero Section */
.hero-section {
	background-color: var(--wp--preset--color--background);
	background: var(--wp--preset--gradient--soft-pink-radial);
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: rgba(223, 47, 48, 0.05);
	border-radius: 50%;
	filter: blur(50px);
	z-index: 0;
}

/* Pricing Card Shadow */
.pricing-card {
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.pricing-card:hover {
	transform: translateY(-10px);
}

.pricing-card:hover::after {
	opacity: 1;
}

/* Pack Cards Specifics */

.pack-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pack-price-container {
	margin: 20px 0;
}

.pack-price-after {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--wp--preset--color--primary);
	line-height: 1;
}

.pack-price-label {
	display: block;
	font-size: 0.9rem;
	color: #666;
	margin-top: 5px;
	font-weight: 600;
}

.pack-price-before {
	display: block;
	font-size: 1.1rem;
	color: #999;
	text-decoration: line-through;
	margin-top: 10px;
}

.pack-features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}

.pack-features li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	font-size: 1rem;
	display: flex;
	align-items: center;
}

.pack-features li::before {
	content: '✓';
	color: var(--wp--preset--color--primary);
	margin-right: 12px;
	font-weight: bold;
}

.pricing-card {
	position: relative;
	overflow: hidden;
}

.is-popular::before {
	content: 'Populaire';
	position: absolute;
	top: 20px;
	right: -35px;
	background: var(--wp--preset--color--primary);
	color: white;
	padding: 5px 40px;
	transform: rotate(45deg);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.pack-options-label,
.pack-conditions-label {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1px;
	color: #999;
	display: block;
	margin-top: 15px;
}

.pack-options-list,
.pack-condition-text {
	font-size: 0.95rem;
	color: #444;
}

/* Buttons Modern */
.wp-block-button__link {
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
	box-shadow: 0 4px 15px rgba(223, 47, 48, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.wp-block-button__link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: width 0.3s ease;
	z-index: -1;
}

.wp-block-button__link:hover::before {
	width: 100%;
}

.wp-block-button__link:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(223, 47, 48, 0.35);
	background-color: #c42627 !important;
}

/* FAQ Premium Styling (Targeting Yoast Block) */
.wp-block-yoast-faq-block {
	max-width: 900px;
	margin: 0 auto;
}

/* Footer Modern Styling */
.site-footer {
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-section-title {
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--wp--preset--color--dark);
	position: relative;
	padding-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--wp--preset--color--primary);
}

.footer-nav .wp-block-navigation-item {
	margin-bottom: 0.8rem;
}

.footer-nav .wp-block-navigation-item__label {
	font-size: 1rem;
	color: #555;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	padding-left: 0;
}

.footer-nav .wp-block-navigation-item:hover .wp-block-navigation-item__label {
	color: var(--wp--preset--color--primary);
	padding-left: 10px;
}

.footer-nav .wp-block-navigation-item:hover .wp-block-navigation-item__label::before {
	content: '→';
	position: absolute;
	left: -10px;
	opacity: 1;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: #666;
	font-size: 1rem;
}

.footer-contact-icon {
	color: var(--wp--preset--color--primary);
	flex-shrink: 0;
}

.wp-block-social-links.is-style-default .wp-block-social-link:hover a {
	color: #ffffff !important;
}

.footer-contact-list {
	margin-top: 15px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px !important;
}

.footer-contact-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact-item a:hover {
	color: var(--wp--preset--color--primary);
}

.footer-bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 30px;
	margin-top: 60px;
	color: #888;
}

.footer-bottom a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--wp--preset--color--primary);
}

/* Footer Navigation Lists */
.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0 0;
}

.footer-nav-list li {
	margin-bottom: 0.8rem !important;
	padding-left: 0 !important;
}

.footer-nav-list a {
	color: #555;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: block;
	position: relative;
}

.footer-nav-list a:hover {
	color: var(--wp--preset--color--primary);
	padding-left: 10px;
}

.footer-nav-list a::before {
	content: '→';
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--wp--preset--color--primary);
}

.footer-nav-list a:hover::before {
	opacity: 1;
	left: -5px;
}

/* Wavy Separator */
.footer-wave {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	fill: #ffffff;
}

/* Form Styling in Footer */
.footer-form-section {
	background: #ffffff;
	border-radius: 40px;
	padding: 80px 60px;
	margin-top: -100px;
	position: relative;
	z-index: 10;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(223, 47, 48, 0.03);
}

.wpcf7-form {
	max-width: 900px;
	margin: 0 auto;
}

.wpcf7-inline-wrapper {
	display: flex;
	gap: 24px;
}

.wpcf7-inline-field {
	flex: 1;
	min-width: 0;
}

.wpcf7-form .wpcf7-inline-field {
	margin: 0;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
	width: 100%;
	padding: 18px 25px;
	border: 1.5px solid #f0f0f0;
	border-radius: 1rem !important;
	background: #ffffff6e;
	font-size: 1rem;
	color: var(--wp--preset--color--dark);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-sizing: border-box;
	font-family: var(--wp--preset--font-family--outfit);
}

.wpcf7-form .wpcf7-text:hover,
.wpcf7-form .wpcf7-textarea:hover {
	border-color: #e0e0e0;
	background: #f5f5f5;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary);
	background: #ffffff;
	box-shadow: 0 8px 25px rgba(223, 47, 48, 0.08);
	transform: translateY(-2px);
}

.wpcf7-form .wpcf7-textarea {
	min-height: 180px;
}

/* Custom validation styles */
.wpcf7-not-valid-tip {
	font-size: 0.8rem !important;
	color: var(--wp--preset--color--primary) !important;
	padding-top: 8px !important;
	font-weight: 500;
}

.wpcf7-not-valid {
	border-color: rgba(223, 47, 48, 0.3) !important;
	background: #fffafa !important;
}

.wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
	margin-top: 10px;
}

.wpcf7-acceptance label:hover {
	color: var(--wp--preset--color--dark);
}

.wpcf7-acceptance input {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	border: 2px solid #ddd;
	cursor: pointer;
}

/* Response messages decoration */
.wpcf7-response-output {
	border: none !important;
	border-radius: 20px !important;
	background: #f8f8f8;
	color: #444 !important;
	padding: 20px 30px !important;
	font-weight: 500 !important;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-top: 30px !important;
}

.wpcf7-mail-sent-ok {
	background: #f0fff4 !important;
	color: #2f855a !important;
	border: 1px solid #c6f6d5 !important;
}

.wpcf7-validation-errors {
	background: #fff5f5 !important;
	color: #c53030 !important;
	border: 1px solid #fed7d7 !important;
}

@media (max-width: 768px) {
	.footer-form-section {
		margin-top: -40px;
		padding: 40px 20px;
		border-radius: 30px;
	}

	.wpcf7-inline-wrapper {
		flex-direction: column;
		gap: 0;
	}
}

.schema-faq-section {
	border: 1px solid var(--wp--preset--color--rouge) !important;
	border-radius: 1.5rem;
	padding: 1.5rem 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: var(--wp--preset--shadow--card);
	position: relative;
}

.schema-faq-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(223, 47, 48, 0.08);
	border-color: rgba(223, 47, 48, 0.2) !important;
}

.schema-faq-question {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--wp--preset--color--dark);
	margin-bottom: 12px;
	padding-right: 40px;
	position: relative;
	font-family: var(--wp--preset--font-family--mclaren);
}

/* Accent for the question */
.schema-faq-question::before {
	content: "Q.";
	color: var(--wp--preset--color--primary);
	margin-right: 10px;
	opacity: 0.5;
}

.schema-faq-answer {
	color: #555;
	line-height: 1.8;
	font-size: 1.05rem;
	margin: 0;
}

/* Animation for the FAQ cards */
.schema-faq-section {
	opacity: 0;
	animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.schema-faq-section:nth-child(1) {
	animation-delay: 0.1s;
}

.schema-faq-section:nth-child(2) {
	animation-delay: 0.2s;
}

.schema-faq-section:nth-child(3) {
	animation-delay: 0.3s;
}

/* Section Separators */
.section-separator-wave {
	width: 100%;
	height: auto;
	display: block;
	line-height: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.header-top-bar {
		display: none;
	}

	.hero-section {
		padding: 60px 0;
	}

	.faq-summary {
		padding: 20px;
		font-size: 1rem;
	}

	.faq-content {
		padding: 0 20px 20px;
	}
}

.wp-block-table {
	width: 100%;
	border: 1px solid var(--wp--preset--color--rouge);
	border-collapse: collapse;
	border-spacing: 0;
	border-radius: 1.5rem;
	box-shadow: var(--wp--preset--shadow--card);
	overflow: hidden;
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.wp-block-table thead {
	border: none;
}

.pricing-table-premium th {
	color: var(--wp--preset--color--primary);
	font-family: var(--wp--preset--font-family--mclaren);
	font-weight: 700;
	padding: 25px 20px;
	text-align: left;
	font-size: 0.95rem;
	border: none;
}

.pricing-table-premium tr {
	border-top: 1px solid color-mix(in srgb, var(--wp--preset--color--primary), transparent 90%);
}


/* Ensure first/last th share the table border radius */
.pricing-table-premium th:first-child {
	border-top-left-radius: 30px;
}

.pricing-table-premium th:last-child {
	border-top-right-radius: 30px;
}

.pricing-table-premium td {
	padding: 20px;
	border: none;
	font-size: 1rem;
	color: #444;
}

.pricing-table-premium tr:last-child td {
	border-bottom: none;
}

.pricing-table-premium tr:hover td {
	background: rgba(223, 47, 48, 0.04);
}

.pricing-table-premium strong {
	color: var(--wp--preset--color--primary);
	font-weight: 700;
	font-size: 1.1rem;
}

@media (max-width: 991px) {
	.pricing-table-premium {
		margin: 0 -20px;
		padding: 20px;
	}

	.pricing-table-premium figure {
		overflow-x: auto;
	}

	.pricing-table-premium table {
		min-width: 800px;
	}
}

/* Pricing Cards & Grid */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin: 3rem 0;
}

.pricing-card-tier {
	background: #fff;
	border-radius: 40px;
	padding: 40px 30px;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(223, 47, 48, 0.05);
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.pricing-card-tier:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(223, 47, 48, 0.1);
	border-color: rgba(223, 47, 48, 0.2);
}

.pricing-card-tier .persons {
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 1.5rem;
	color: var(--wp--preset--color--dark);
	margin-bottom: 20px;
}

.pricing-card-tier .price-breakdown {
	font-size: 0.95rem;
	color: #777;
	margin-bottom: 30px;
	line-height: 1.5;
}

.pricing-card-tier .final-price-box {
	background: var(--wp--preset--color--background);
	width: 100%;
	padding: 25px;
	border-radius: 30px;
	margin-top: auto;
}

.pricing-card-tier .final-price-label {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #888;
	margin-bottom: 5px;
}

.pricing-card-tier .final-price-amount {
	display: block;
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 2.2rem;
	color: var(--wp--preset--color--primary);
	font-weight: 700;
}

/* Premium List (for many tiers) */
.pricing-list-premium {
	margin: 3rem 0;
}

.pricing-list-item {
	background: #fff;
	border-radius: 25px;
	padding: 20px 35px;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: all 0.3s ease;
}

.pricing-list-item:hover {
	box-shadow: 0 12px 35px rgba(223, 47, 48, 0.08);
	border-color: rgba(223, 47, 48, 0.1);
}

.pricing-list-item .info {
	display: flex;
	flex-direction: column;
}

.pricing-list-item .title {
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 1.2rem;
	color: var(--wp--preset--color--dark);
}

.pricing-list-item .details {
	font-size: 0.9rem;
	color: #888;
}

.pricing-list-item .price {
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 1.4rem;
	color: var(--wp--preset--color--primary);
	font-weight: 700;
}

@media (max-width: 768px) {
	.pricing-list-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
}

/* Testimonial Cards - Softer Design */
.testimonial-card {
	border-radius: 1.5rem !important;
	padding: 50px 40px !important;
	border: 1px solid var(--wp--preset--color--rouge) !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: var(--wp--preset--shadow--card);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(223, 47, 48, 0.08);
}

.testimonial-card::before {
	content: '\f10d';
	/* FontAwesome quote-left */
	font-family: 'FontAwesome';
	color: var(--wp--preset--color--primary);
	opacity: 0.15;
	font-size: 2.5rem;
	position: absolute;
	top: 30px;
	left: 30px;
}

.testimonial-content {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--dark);
	font-style: italic;
	margin-bottom: 25px !important;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	font-family: var(--wp--preset--font-family--mclaren);
	margin-top: auto !important;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ============================================
   Custom List Styles with FontAwesome Check Icons
   ============================================ */

/* Remove default list bullets */
.wp-block-list ul,
ul.wp-block-list {
	list-style: none;
	padding-left: 0;
}

/* Style list items with FontAwesome check icon */
main .wp-block-list ul li,
ul.wp-block-list li {
	position: relative;
	padding-left: 2em;
	margin-bottom: 0.75em;
}

/* Ensure nested lists also get the check icon */
.wp-block-list ul ul li:before {
	content: "\f00c";
}

/* Optional: Different icon for ordered lists (numbered lists keep their numbers) */
.wp-block-list ol {
	padding-left: 2em;
}

main ul.wp-block-list li::before {
	content: "\f00c";
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: var(--wp--preset--color--primary, #DF2F30);
	font-weight: 900;
	font-size: 1em;
}

/* ============================================
   Yoast How-To Block - Card Style (FAQ-like)
   ============================================ */

.schema-how-to.wp-block-yoast-how-to-block {
	background: transparent;
	padding: 0;
	box-shadow: none;
	margin: 4rem 0;
	border: none;
	overflow: visible;
}

.schema-how-to.wp-block-yoast-how-to-block::before {
	display: none;
}

.schema-how-to-description {
	font-size: 1.3rem;
	color: var(--wp--preset--color--dark);
	line-height: 1.6;
	margin-bottom: 2.5rem;
	font-weight: 500;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-family: var(--wp--preset--font-family--outfit);
}

.schema-how-to-total-time {
	display: block;
	width: fit-content;
	margin: 0 auto 3rem;
	background: rgba(223, 47, 48, 0.05);
	color: var(--wp--preset--color--primary);
	padding: 10px 25px;
	border-radius: 100px;
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px dashed var(--wp--preset--color--primary);
}

.schema-how-to-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.schema-how-to-step {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-radius: 20px;
	padding: 30px 40px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	/* Animation like FAQ */
	opacity: 0;
	animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.schema-how-to-step:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	border-color: var(--wp--preset--color--primary) !important;
}

.schema-how-to-step-title {
	font-family: var(--wp--preset--font-family--mclaren);
	font-size: 1.5rem;
	color: var(--wp--preset--color--dark);
	margin: 0 0 15px 0 !important;
	display: flex;
	align-items: center;
}

/* Step Number Badge - The "Different" part from FAQ */
.schema-how-to-step::before {
	content: "ÉTAPE";
	position: absolute;
	top: -12px;
	right: 30px;
	background: var(--wp--preset--color--primary);
	color: #fff;
	padding: 4px 15px;
	border-radius: 8px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(223, 47, 48, 0.3);
}

.schema-how-to-step-text {
	font-size: 1.15rem;
	color: #555;
	line-height: 1.7;
}

/* Staggered animation */
.schema-how-to-step:nth-child(1) {
	animation-delay: 0.1s;
}

.schema-how-to-step:nth-child(2) {
	animation-delay: 0.2s;
}

.schema-how-to-step:nth-child(3) {
	animation-delay: 0.3s;
}

.schema-how-to-step:nth-child(4) {
	animation-delay: 0.4s;
}

.schema-how-to-step:nth-child(5) {
	animation-delay: 0.5s;
}

@media (max-width: 768px) {
	.schema-how-to-step {
		padding: 25px;
	}

	.schema-how-to-step-title {
		font-size: 1.3rem;
	}

	.schema-how-to-step::before {
		right: 20px;
	}
}


/* Contact Form Column Shadow */
.contact-form-column {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form-column .wpcf7-form-control-wrap {
	margin-bottom: 1.5rem;
	display: block;
}

.contact-form-column input:not([type="submit"]),
.contact-form-column textarea {
	border-radius: 100vw !important;
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--noir), transparent 90%);
	padding: 12px 20px !important;
}

/* ==========================================================================
   GUTENBERG EDITOR FIXES
   Désactivation des effets au survol qui peuvent gêner l'édition
   ========================================================================== */

.editor-styles-wrapper .pricing-card:hover,
.editor-styles-wrapper .pricing-card-tier:hover,
.editor-styles-wrapper .testimonial-card:hover,
.editor-styles-wrapper .schema-faq-section:hover,
.editor-styles-wrapper .schema-how-to-step:hover,
.editor-styles-wrapper .wp-block-button__link:hover,
.editor-styles-wrapper .wpcf7-submit:hover,
.editor-styles-wrapper .pricing-table-premium tr:hover td {
	transform: none !important;
	box-shadow: none !important;
	transition: none !important;
	background-color: transparent !important;
}

.editor-styles-wrapper .pricing-card:hover::after,
.editor-styles-wrapper .wp-block-button__link:hover::before {
	opacity: 0 !important;
	display: none !important;
}

.wp-block-navigation__responsive-container:not(.is-menu-open) ul.wp-block-navigation-submenu {
	padding: 0.5rem 0 !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
	border-radius: 1rem !important;
	overflow: hidden !important;
}

.is-menu-open ul {
	padding: 0 !important;
}

.is-menu-open a:not(.wp-block-button__link) {
	padding: 0 !important;
}

figure.wp-block-video {
	border-radius: 1.5rem;
	overflow: hidden;
	border: 1px solid var(--wp--preset--color--primary);
	box-shadow: var(--wp--preset--shadow--card);
}