/* =============================================================================
   SCHUFFENECKER PAYSAGISTE - STYLESHEET
   Système de design unifié - Charte verte
   ============================================================================= */

/* =============================================================================
   1. VARIABLES CSS
   ============================================================================= */
:root {
	/* Couleurs principales */
	--sch-dark: #1e3a2b;          /* Vert foncé - Texte principal */
	--sch-main: #2E5C38;          /* Vert moyen - Accent secondaire */
	--sch-light: #6FAF60;         /* Vert clair - Accent principal */
	--sch-sage: #E8F3E8;          /* Vert sauge - Fond clair */
	--sch-gold: #C5A065;          /* Or - Détails premium */

	/* Couleurs utilitaires */
	--sch-text: #1e3a2b;          /* Texte principal (alias de dark) */
	--sch-muted: #6c757d;         /* Texte atténué */
	--sch-border: rgba(15,23,42,.08); /* Bordures subtiles */
	--sch-border-hover: rgba(15,23,42,.12); /* Bordures au hover */

	/* Éléments de design */
	--sch-radius: 1rem;           /* Rayon de bordure standard */
	--sch-shadow: 0 10px 30px rgba(0,0,0,.08); /* Ombre standard */
	--sch-shadow-hover: 0 18px 40px rgba(0,0,0,.12); /* Ombre au hover */
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	color: #4a4a4a;
	overflow-x: hidden;
}

main {
	overflow: hidden;
}

body:not(.page-accueil) main {
	padding-top: 90px;
}

/* =============================================================================
   3. UTILITAIRES
   ============================================================================= */

/* Couleurs de texte */
.text-sch-dark {
	color: var(--sch-dark) !important;
}

.text-sch-main {
	color: var(--sch-main) !important;
}

.text-sch-light {
	color: var(--sch-light) !important;
}

/* Couleurs de fond */
.bg-sch-dark {
	background-color: var(--sch-dark) !important;
}

.bg-sch-main {
	background-color: var(--sch-main) !important;
}

.bg-sch-sage {
	background-color: var(--sch-sage) !important;
}

/* Espacements */
.section-padding {
	padding: 5rem 0;
}

/* Ombres */
.text-shadow {
	text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.shadow-soft {
	box-shadow: var(--sch-shadow);
}

/* =============================================================================
   4. BOUTONS
   ============================================================================= */

/* Bouton principal */
.btn-sch {
	background-color: var(--sch-light);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 999px;
	font-weight: 700;
	transition: all .25s ease;
	border: 2px solid var(--sch-light);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
}

.btn-sch:hover {
	background-color: var(--sch-main);
	color: #fff;
	border-color: var(--sch-main);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(46, 92, 56, .25);
}

/* Bouton outline blanc */
.btn-outline-white {
	border: 2px solid #fff;
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: all .25s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-outline-white:hover {
	background: #fff;
	color: var(--sch-dark);
}

/* Bouton ghost (transparent) */
.btn-ghost {
	border: 1px solid var(--sch-border);
	color: var(--sch-text);
	padding: .9rem 1.1rem;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: all .2s ease;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: rgba(255,255,255,.65);
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	transform: translateY(-2px);
	border-color: var(--sch-light);
	color: var(--sch-light);
}

/* Variante petite taille */
.btn-outline-white.btn-sm,
.btn-ghost.btn-sm {
	padding: .65rem 1rem;
	font-size: .75rem;
}

/* =============================================================================
   5. NAVBAR
   ============================================================================= */
.navbar {
	transition: all .35s ease;
	padding: 1.5rem 0;
	z-index: 1050;
}

.navbar.scrolled,
.navbar.page-cms {
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	padding: .8rem 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

/* Logo */
.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	transition: color .25s;
}

.logo-sub {
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	display: block;
	transition: color .25s;
}

/* Navbar en état menu ouvert */
body.menu-open .navbar {
	z-index: 2001 !important;
	background: transparent !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

/* Masquer le logo et les liens desktop quand le menu est ouvert */
body.menu-open #mainNav .navbar-brand,
body.menu-open #mainNav .d-none.d-lg-flex {
	display: none !important;
}

/* Container : aligner le bouton burger à droite */
body.menu-open #mainNav .container {
	justify-content: flex-end !important;
}

/* Le bouton burger doit passer au-dessus de l'overlay */
body.menu-open #menuToggle {
	position: relative;
	z-index: 2105;
}

/* Couleur des traits du burger en blanc */
body.menu-open #menuToggle span {
	background: #fff !important;
}

/* Le trait du milieu reste invisible (croix parfaite) */
body.menu-open #menuToggle span:nth-child(2) {
	opacity: 0 !important;
}

/* Liens rapides desktop */
.nav-quick a {
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .78rem;
	padding: .5rem .75rem;
	border-radius: 999px;
	transition: all .2s ease;
}

.navbar:not(.scrolled):not(.page-cms) .nav-quick a {
	color: rgba(255, 255, 255, .92);
}

.navbar.scrolled .nav-quick a,
.navbar.page-cms .nav-quick a {
	color: var(--sch-dark);
}

.nav-quick a:hover {
	background: rgba(255, 255, 255, .14);
}

.navbar.scrolled .nav-quick a:hover,
.navbar.page-cms .nav-quick a:hover {
	background: rgba(46, 92, 56, .10);
}

/* Téléphone navbar */
.nav-phone {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-weight: 800;
	text-decoration: none;
	border-radius: 999px;
	padding: .55rem .9rem;
	transition: all .2s ease;
	white-space: nowrap;
}

.navbar:not(.scrolled):not(.page-cms) .nav-phone {
	color: #fff;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .25);
}

.navbar.scrolled .nav-phone,
.navbar.page-cms .nav-phone {
	color: var(--sch-dark);
	background: rgba(46, 92, 56, .08);
	border: 1px solid rgba(46, 92, 56, .18);
}

.nav-phone:hover {
	transform: translateY(-1px);
}

/* Bouton burger / croix */
.menu-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(111, 175, 96, .2);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .25s;
	position: relative;
	padding: 0;
	outline: none;
}

.menu-btn:hover {
	background: var(--sch-light);
}

.menu-btn:focus {
	box-shadow: 0 0 0 .25rem rgba(111, 175, 96, .25);
}

/* Lignes du burger */
.menu-btn span {
	display: block;
	width: 24px;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	transition: all .25s ease-in-out;
}

.navbar:not(.scrolled):not(.page-cms) .menu-btn span {
	background: #fff;
}

.navbar.scrolled .menu-btn span,
.navbar.page-cms .menu-btn span {
	background: var(--sch-dark);
}

.menu-btn:hover span {
	background: #fff !important;
}

.menu-btn span:nth-child(1) {
	top: 18px;
}

.menu-btn span:nth-child(2) {
	top: 24px;
}

.menu-btn span:nth-child(3) {
	top: 30px;
}

/* Animation croix */
body.menu-open .menu-btn {
	background: transparent;
}

body.menu-open .menu-btn span:nth-child(1) {
	top: 24px;
	transform: translateX(-50%) rotate(45deg);
	background: #fff !important;
}

body.menu-open .menu-btn span:nth-child(2) {
	opacity: 0;
}

body.menu-open .menu-btn span:nth-child(3) {
	top: 24px;
	transform: translateX(-50%) rotate(-45deg);
	background: #fff !important;
}

/* =============================================================================
   6. MENU OVERLAY FULLSCREEN
   ============================================================================= */
.full-menu-overlay {
	position: fixed;
	inset: 0;
	background-color: var(--sch-dark);
	z-index: 1900;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
	transform: translateY(-20px);
	text-align: center;
	padding: 2rem;
}

.full-menu-overlay.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-link {
	font-size: clamp(1.8rem, 4vw, 3.6rem);
	font-weight: 800;
	color: #fff;
	text-decoration: none;
	display: block;
	margin: 0.1rem 0;
	transition: color .25s ease, transform .25s ease;
}

.menu-link:hover {
	color: var(--sch-light);
	transform: scale(1.03);
}

@media (min-width: 768px) {
	.menu-burger {
		min-width: 490px;
	}
}

/* =============================================================================
   7. HERO SECTION
   ============================================================================= */
.hero-section {
	height: 100vh;
	min-height: 600px;
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

@media (max-width: 390px) {
	.hero-section {
		min-height: 940px;
	}
}

/* Backgrounds hero */
.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: opacity 2s ease-in-out;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right bottom, rgba(30, 58, 43, .60), rgba(46, 92, 56, .50));
	z-index: 2;
}

/* Éléments hero */
.hero-tag {
	background: rgba(111, 175, 96, .2);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, .3);
}

.hero-list {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-top: 1.1rem;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .45rem .8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .18);
	font-size: .9rem;
	color: rgba(255, 255, 255, .92);
}

/* =============================================================================
   8. SERVICES
   ============================================================================= */
.service-card {
	border: none;
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
	transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, .06);
}

.service-card:not(.position-relative)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sch-light), var(--sch-main));
	opacity: 0;
	transition: opacity .35s ease;
}

.service-card:not(.position-relative):hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
	border-color: rgba(111, 175, 96, .15);
}

.service-card:not(.position-relative):hover::before {
	opacity: 1;
}

.service-thumb {
	height: 12.5rem;
	overflow: hidden;
	background: #f2f2f2;
}

.service-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.service-card.position-relative:hover .service-thumb img {
	transform: scale(1.08);
}

/* =============================================================================
   VARIANTE : CARTES AVEC IMAGE (index.php) - Style Original Restauré
   ============================================================================= */
.service-card.position-relative {
	border-radius: 1rem;
	box-shadow: var(--sch-shadow);
	overflow: hidden;
}

.service-card.position-relative:hover {
	transform: translateY(-10px);
	box-shadow: var(--sch-shadow-hover);
}

/* Icône en position absolue comme avant */
.service-card.position-relative .service-icon {
width: 64px;
height: 64px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.6rem;
color: #fff;
position: absolute;
top: -32px;
right: 24px;
box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.service-card.position-relative .service-icon::after {
	display: none; /* Pas d'effet halo */
}

.service-card.position-relative:hover .service-icon {
	transform: none; /* Pas d'animation */
	box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

/* Icône valorisée, centrée en haut de la carte (SEULEMENT pour cartes avec service-body) */
.service-body .service-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
	transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.service-body .service-icon::after {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.15;
	transform: scale(0.9);
	transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-body .service-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.service-card:hover .service-body .service-icon::after {
	transform: scale(1.2);
	opacity: 0.25;
}

/* Corps de la carte avec aération */
.service-body {
	padding: 2rem 1.75rem;
	text-align: center;
}

.service-body h3 {
	margin-bottom: 1rem;
	color: var(--sch-dark);
	font-size: 1.25rem;
	transition: color .3s ease;
}

.service-card:not(.position-relative):hover .service-body h3 {
	color: var(--sch-light);
}

.service-body p {
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.service-body ul {
	text-align: left;
	padding: 1.25rem;
	background: rgba(232, 243, 232, .3);
	border-radius: .75rem;
	border-left: 3px solid var(--sch-light);
}

.service-body ul li {
	padding: .35rem 0;
	transition: transform .2s ease;
}

.service-body ul li:hover {
	transform: translateX(4px);
}

.service-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: .8rem;
}

.service-badge {
	font-size: .75rem;
	font-weight: 700;
	border-radius: 999px;
	padding: .35rem .7rem;
	background: rgba(46, 92, 56, .08);
	color: var(--sch-dark);
	border: 1px solid rgba(46, 92, 56, .12);
}

/* =============================================================================
   9. SWIPER (CAROUSEL)
   ============================================================================= */
.swiper-slide {
	height: 500px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, .80), transparent);
	color: #fff;
}

.swiper-pagination-bullet-active {
	background-color: var(--sch-light) !important;
}

/* Boutons de navigation Swiper */
.swiper-button-prev,
.swiper-button-next {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .20);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, .30);
	box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
	transition: all .2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(255, 255, 255, .32);
	transform: translateY(-1px);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 16px;
	font-weight: 900;
	color: #fff;
}

/* =============================================================================
   10. GRID MOSAIC (RÉALISATIONS)
   ============================================================================= */
.grid-mosaic {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	height: 600px;
}

@media (min-width: 768px) {
	.grid-mosaic {
		grid-template-columns: repeat(4, 1fr);
		height: 500px;
	}
}

.grid-item {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	cursor: pointer;
	background: #f2f2f2;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.grid-item:hover img {
	transform: scale(1.08);
}

.grid-item .overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.2rem;
	background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent);
	opacity: 0;
	transition: opacity .2s ease;
}

.grid-item:hover .overlay {
	opacity: 1;
}

.grid-item .overlay .ov-title {
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1.1;
}

.grid-item .overlay .ov-sub {
	color: rgba(255, 255, 255, .75);
	font-size: .85rem;
	margin-top: .25rem;
}

.grid-item.big {
	grid-column: span 2;
	grid-row: span 2;
}

/* =============================================================================
   11. FOOTER
   ============================================================================= */
.footer {
	background: #111;
	color: var(--sch-sage);
	border-top: 1px solid #222;
}

.footer a {
	color: var(--sch-sage);
	text-decoration: none;
	transition: .25s;
}

.footer a:hover {
	color: var(--sch-light);
}

.footer h5 {
	color: #fff;
}

.footer-top {
	border-bottom: 1px solid rgba(255,255,255,.10);
	padding-bottom: 2.2rem;
	margin-bottom: 2rem;
}

/* Téléphone dans le footer */
.footer .nav-phone {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.22);
}

.footer .nav-phone:hover {
	background: rgba(255,255,255,.18);
	border-color: rgba(255,255,255,.32);
}

/* =============================================================================
   12. MODAL IMAGE (LIGHTBOX)
   ============================================================================= */
.modal-img {
	width: 100%;
	height: auto;
	border-radius: 14px;
}

/* =============================================================================
   13. BLOG
   ============================================================================= */

/* 13.1 Blog Articles (Liste) */
.blog-article {
	background: #fff;
	border: 1px solid var(--sch-border);
	border-radius: var(--sch-radius);
	overflow: hidden;
	transition: all .3s ease;
	display: flex;
	flex-direction: column;
}

.blog-article:hover {
	transform: translateY(-6px);
	box-shadow: var(--sch-shadow-hover);
	border-color: rgba(111,175,96,.20);
}

.blog-article-img {
	position: relative;
	display: block;
	overflow: hidden;
	height: 220px;
}

.blog-article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.blog-article:hover .blog-article-img img {
	transform: scale(1.08);
}

.blog-article-date {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(10px);
	color: var(--sch-text);
	font-weight: 900;
	font-size: .75rem;
	padding: 6px 12px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,.10);
	text-transform: uppercase;
	letter-spacing: .05em;
}

.blog-article-body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-category {
	display: inline-flex;
	align-items: center;
	font-size: .75rem;
	font-weight: 700;
	color: var(--sch-light);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: color .2s ease;
}

.blog-category:hover {
	color: var(--sch-main);
}

.blog-meta {
	font-size: .75rem;
	color: var(--sch-muted);
	font-weight: 700;
}

.blog-article-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: .75rem;
	line-height: 1.4;
}

.blog-article-title a {
	color: var(--sch-text);
	text-decoration: none;
	transition: color .2s ease;
}

.blog-article-title a:hover {
	color: var(--sch-light);
}

.blog-article-excerpt {
	color: var(--sch-muted);
	font-size: .9rem;
	line-height: 1.6;
	margin-bottom: auto;
}

.blog-read-more {
	display: inline-flex;
	align-items: center;
	font-size: .85rem;
	font-weight: 700;
	color: var(--sch-light);
	text-decoration: none;
	transition: all .2s ease;
}

.blog-read-more:hover {
	color: var(--sch-main);
	gap: .5rem;
}

.blog-read-more i {
	transition: transform .2s ease;
}

.blog-read-more:hover i {
	transform: translateX(4px);
}

.blog-stat {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .8rem;
	color: var(--sch-muted);
	font-weight: 700;
}

.blog-stat i {
	color: var(--sch-light);
	font-size: .75rem;
}

/* 13.2 Blog Sidebar */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.sidebar-widget {
	background: #fff;
	border: 1px solid var(--sch-border);
	border-radius: var(--sch-radius);
	padding: 1.5rem;
	transition: all .2s ease;
}

.sidebar-widget:hover {
	border-color: var(--sch-border-hover);
	box-shadow: var(--sch-shadow);
}

.sidebar-widget-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--sch-text);
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid rgba(111,175,96,.20);
	display: flex;
	align-items: center;
}

.sidebar-widget-title i {
	color: var(--sch-light);
}

/* Categories Widget */
.sidebar-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-category-list li {
	margin-bottom: .5rem;
}

.sidebar-category-link {
	display: flex;
	align-items: center;
	padding: .65rem .75rem;
	color: var(--sch-text);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: .9rem;
	transition: all .2s ease;
	background: rgba(15,23,42,.02);
}

.sidebar-category-link:hover {
	background: rgba(111,175,96,.10);
	color: var(--sch-light);
	transform: translateX(4px);
}

.sidebar-category-link.active {
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	color: #fff;
}

.sidebar-category-link.active:hover {
	transform: translateX(4px);
}

.sidebar-category-link i {
	font-size: .75rem;
	transition: transform .2s ease;
}

.sidebar-category-link:hover i {
	transform: translateX(2px);
}

/* Recent Posts Widget */
.sidebar-recent-posts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sidebar-post {
	display: flex;
	gap: .75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(15,23,42,.06);
}

.sidebar-post:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.sidebar-post-img {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.sidebar-post-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(46,92,56,.35) 100%);
	opacity: 0;
	transition: opacity .3s ease;
}

.sidebar-post:hover .sidebar-post-img::after {
	opacity: 1;
}

.sidebar-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.sidebar-post:hover .sidebar-post-img img {
	transform: scale(1.1);
}

.sidebar-post-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sidebar-post-title {
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: .35rem;
	line-height: 1.4;
}

.sidebar-post-title a {
	color: var(--sch-text);
	text-decoration: none;
	transition: color .2s ease;
}

.sidebar-post-title a:hover {
	color: var(--sch-light);
}

.sidebar-post-meta {
	font-size: .75rem;
	color: var(--sch-muted);
	font-weight: 700;
}

/* Tags Widget */
.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.sidebar-tag {
	display: inline-block;
	padding: .45rem .85rem;
	background: rgba(15,23,42,.04);
	color: var(--sch-text);
	text-decoration: none;
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 700;
	border: 1px solid var(--sch-border);
	transition: all .2s ease;
}

.sidebar-tag:hover {
	background: rgba(111,175,96,.12);
	color: var(--sch-light);
	border-color: rgba(111,175,96,.25);
	transform: translateY(-2px);
}

.sidebar-tag.active {
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	color: #fff;
	border-color: transparent;
}

/* CTA Widget */
.sidebar-cta {
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	border: none;
	position: relative;
	overflow: hidden;
}

.sidebar-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
	pointer-events: none;
}

.sidebar-cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(111,175,96,.30);
}

.sidebar-cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.sidebar-cta-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	background: rgba(255,255,255,.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	border: 2px solid rgba(255,255,255,.2);
}

.sidebar-cta-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .5rem;
}

.sidebar-cta-text {
	color: rgba(255,255,255,.9);
	font-size: .9rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

/* 13.3 Article Detail */
.article-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 5rem 0 3rem;
	overflow: hidden;
}

.article-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.article-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(30,58,43,.92), rgba(46,92,56,.88));
	z-index: 1;
}

.article-hero .container {
	z-index: 2;
}

.article-hero-breadcrumb {
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: rgba(255,255,255,.7);
}

.article-hero-breadcrumb a {
	color: rgba(255,255,255,.9);
	text-decoration: none;
	transition: color .2s ease;
}

.article-hero-breadcrumb a:hover {
	color: #fff;
}

.article-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.article-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.article-hero-meta-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: rgba(255,255,255,.8);
	font-weight: 600;
	font-size: .9rem;
}

.article-hero-meta-item i {
	color: var(--sch-light);
}

.article-hero-meta-item a {
	color: rgba(255,255,255,.9);
	text-decoration: none;
	transition: color .2s ease;
}

.article-hero-meta-item a:hover {
	color: #fff;
}

/* Article Content */
.article-detail {
	background: #fff;
}

.article-content {
	color: var(--sch-text);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	color: var(--sch-text);
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.article-content h2 {
	font-size: 1.8rem;
}

.article-content h3 {
	font-size: 1.5rem;
}

.article-content h4 {
	font-size: 1.25rem;
}

.article-content p {
	margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
	margin-bottom: 1.25rem;
	padding-left: 1.5rem;
}

.article-content li {
	margin-bottom: .5rem;
}

.article-content a {
	color: var(--sch-light);
	text-decoration: underline;
	transition: color .2s ease;
}

.article-content a:hover {
	color: var(--sch-main);
}

.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--sch-radius);
	margin: 1.5rem 0;
}

.article-content blockquote {
	border-left: 4px solid var(--sch-light);
	padding-left: 1.5rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: var(--sch-muted);
}

/* Article Keywords */
.article-keywords {
	padding: 1.5rem 0;
	border-top: 1px solid var(--sch-border);
	margin-top: 2rem;
}

.article-keywords-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sch-text);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.article-keywords-title i {
	color: var(--sch-light);
}

.article-keywords-list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.article-keyword {
	display: inline-block;
	padding: .5rem 1rem;
	background: rgba(111,175,96,.10);
	color: var(--sch-light);
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 700;
	transition: all .2s ease;
}

.article-keyword:hover {
	background: var(--sch-light);
	color: #fff;
	transform: translateY(-2px);
}

/* Article Actions (Like Button) */
.article-actions {
	padding: 1.5rem 0;
	border-top: 1px solid var(--sch-border);
	margin-top: 1.5rem;
}

.like-button {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	padding: .85rem 1.5rem;
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	color: #fff;
	border: none;
	border-radius: 999px;
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	transition: all .3s ease;
	box-shadow: 0 8px 20px rgba(111,175,96,.25);
}

.like-button:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(111,175,96,.35);
}

.like-button:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.like-button i {
	font-size: 1.1rem;
}

.article-like-count {
	padding: 2px 8px;
	background: rgba(255,255,255,.2);
	border-radius: 999px;
	font-size: .85rem;
}

/* Article Share */
.article-share {
	padding: 1.5rem;
	background: rgba(15,23,42,.02);
	border-radius: var(--sch-radius);
	margin-top: 2rem;
}

.article-share-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--sch-text);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.article-share-title i {
	color: var(--sch-light);
}

.article-share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.article-share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	font-size: 1.1rem;
}

.article-share-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.article-share-btn.facebook {
	background: #1877F2;
}

.article-share-btn.twitter {
	background: #1DA1F2;
}

.article-share-btn.linkedin {
	background: #0A66C2;
}

.article-share-btn.pinterest {
	background: #E60023;
}

/* 13.4 Blog Card (Footer) */
.blog-card {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 18px;
	overflow: hidden;
	transition: all .2s ease;
	height: 100%;
}

.blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(111,175,96,.25);
}

.blog-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	transition: transform .3s ease;
}

.blog-card:hover img {
	transform: scale(1.05);
}

.blog-card .p {
	padding: 14px 14px 16px;
}

.blog-card a {
	color: inherit;
	text-decoration: none;
}

.blog-card h6 a:hover {
	color: var(--sch-light) !important;
}

.blog-tag {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-weight: 900;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
}

/* =============================================================================
   14. RESPONSIVE - MOBILE
   ============================================================================= */
@media (max-width: 991.98px) {
	/* Navbar mobile stable */
	#mainNav {
		padding: 12px 0 !important;
		min-height: 72px;
		display: flex;
		align-items: center;
	}

	#mainNav.scrolled,
	#mainNav.page-cms {
		padding: 12px 0 !important;
	}

	#mainNav .navbar-brand {
		display: flex;
		flex-direction: column;
		justify-content: center;
		line-height: 1.05;
	}

	#mainNav.scrolled .logo-text,
	#mainNav.page-cms .logo-text {
		font-size: 1.35rem;
	}

	#mainNav.scrolled .logo-sub,
	#mainNav.page-cms .logo-sub {
		font-size: .75rem;
	}

	/* Menu open : règles déjà définies globalement (voir ligne 205+) */

	/* Hero */
	.hero-section {
		min-height: 92vh;
		padding-top: 84px;
	}

	.hero-badge-right {
		display: none;
	}

	.hero-cards {
		grid-template-columns: 1fr;
	}

	/* Blog */
	.article-hero {
		min-height: 50vh;
		padding: 3rem 0 2rem;
	}

	.article-hero-title {
		font-size: 1.75rem;
	}

	.article-hero-meta {
		gap: 1rem;
		font-size: .85rem;
	}

	.article-content {
		font-size: 1rem;
	}

	/* Autres */
	.swiper-section {
		height: 380px;
	}

	.section-padding {
		padding: 4.3rem 0;
	}

	#mainNav .nav-phone {
		display: none;
	}

	.navbar:not(.scrolled):not(.page-cms) .logo-text,
	.navbar:not(.scrolled):not(.page-cms) .logo-sub {
		color: #fff;
	}

	/* Services cards mobile (cartes modernes avec service-body) */
	.service-body .service-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
		margin-bottom: 1.25rem;
	}

	.service-body {
		padding: 1.75rem 1.5rem;
	}

	.service-body h3 {
		font-size: 1.15rem;
	}

	/* Cartes index.php avec image : garder l'icône originale */
	.service-card.position-relative .service-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		top: -30px;
		right: 1.25rem;
	}
}

@media (max-width: 360px) {
	.full-menu-overlay nav {
		padding-top: 55px;
	}
}

/* =============================================================================
   15. CLASSES UTILITAIRES (Centralisation des styles inline)
   ============================================================================= */

/* --- Letter Spacing --- */
.ls-1 { letter-spacing: .1em; }
.ls-12 { letter-spacing: .12em; }
.ls-2 { letter-spacing: .2em; }

/* --- Z-Index --- */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }

/* --- Max Width --- */
.max-w-120 { max-width: 120px; }
.max-w-150 { max-width: 150px; }
.max-w-280 { max-width: 280px; }
.max-w-320 { max-width: 320px; }
.max-w-560 { max-width: 560px; width: min(560px, 90%); }
.max-w-720 { max-width: 720px; }
.max-w-740 { max-width: 740px; }
.max-w-820 { max-width: 820px; }
.max-w-860 { max-width: 860px; }

/* --- Fixed Widths --- */
.w-100px { width: 100px; }
.w-150 { width: 150px; }

/* --- Fixed Heights --- */
.h-500 { height: 500px; }
.h-auto { height: auto; }
.min-vh-50 { min-height: 400px; }

/* --- Font Weights --- */
.fw-black { font-weight: 900 !important; }

/* --- Position Utilities --- */
.top-100px { top: 100px; }

/* --- Legal/Content Boxes --- */
.info-box-light {
	background: rgba(111,175,96,.06);
	border-left: 4px solid var(--sch-light);
	border-radius: 8px;
}

.info-box-main {
	background: rgba(46,92,56,.06);
	border-left: 4px solid var(--sch-main);
	border-radius: 8px;
}

.box-sage {
	background: var(--sch-sage);
	border-radius: var(--sch-radius);
}

.box-sage-sm {
	background: var(--sch-sage);
	border-radius: 8px;
}

/* --- Rights Icon Circle --- */
.rights-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--sch-main);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* --- Empty State --- */
.empty-state-icon {
	font-size: 3rem;
	color: var(--sch-muted);
	opacity: .3;
}

/* --- Sizes (Width + Height) --- */
.size-40 { width: 40px; height: 40px; }
.size-48 { width: 48px; height: 48px; }
.size-50 { width: 50px; height: 50px; }
.size-52 { width: 52px; height: 52px; }
.size-64 { width: 64px; height: 64px; }

/* --- Border Colors --- */
.border-white-10 { border-color: rgba(255,255,255,.10) !important; }
.border-white-12 { border-color: rgba(255,255,255,.12) !important; }
.border-white-14 { border-color: rgba(255,255,255,.14) !important; }
.border-white-2 { border-color: rgba(255,255,255,.2) !important; }
.border-sch-light { border-color: var(--sch-light) !important; }
.border-dark-8 { border-top: 1px solid rgba(30,58,43,.08); }

/* --- Background Colors --- */
.bg-sch-gold { background: var(--sch-gold) !important; }
.bg-sch-light { background: var(--sch-light) !important; }
.bg-sch-sage-50 { background: rgba(232,243,232,.5) !important; }
.bg-white-10 { background: rgba(255,255,255,.10) !important; }
.bg-maintenance { background: #c01818; color: #fff; }

/* --- Background Gradients --- */
.bg-gradient-hero {
	background: linear-gradient(135deg, rgba(46,92,56,.95), rgba(111,175,96,.85));
}
.bg-gradient-hero-dark {
	background: linear-gradient(135deg, rgba(46,92,56,.92), rgba(30,58,43,.92));
}
.bg-gradient-icon {
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
}
.bg-gradient-signature {
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	box-shadow: 0 16px 30px rgba(111,175,96,.18);
}

/* --- Texture Pattern --- */
.texture-cubes {
	position: absolute;
	inset: 0;
	opacity: .10;
	background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
	pointer-events: none;
}

/* --- Line Height --- */
.lh-16 { line-height: 1.6; }

/* --- Decorative Elements --- */
.divider-line {
	width: 80px;
	height: 4px;
	background: var(--sch-light);
}

.menu-separator {
	border-top: 1px solid rgba(255,255,255,.14);
	width: min(560px, 90%);
	margin: 0 auto;
}

/* --- Blobs Décoratifs --- */
.blob-lg {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	background: rgba(255,255,255,.10);
	border-radius: 50%;
	filter: blur(30px);
}

.blob-sm {
	position: absolute;
	bottom: 40px;
	left: 40px;
	width: 90px;
	height: 90px;
	background: rgba(111,175,96,.20);
	border-radius: 50%;
	filter: blur(20px);
}

/* --- Hero Pill Variants --- */
.hero-pill-white {
	border-color: rgba(255,255,255,.12);
	color: #fff;
}
.hero-pill-white-2 {
	border-color: rgba(255,255,255,.2);
}

/* --- Service Badge Variants --- */
.service-badge-white {
	color: var(--sch-sage);
	border-color: rgba(255,255,255,.12);
}
.service-badge-light {
	color: var(--sch-dark);
	border-color: var(--sch-light);
}

/* --- Feature Icon Box --- */
.feature-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--sch-light);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --- Contact Icon Circle --- */
.contact-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,.10);
	flex-shrink: 0;
}

/* --- Engagement Icon --- */
.engagement-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	color: #fff;
	font-size: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* --- Logo SAP Position --- */
.logo-sap-card {
	width: 100px;
	top: 10px;
}

/* --- Card Styled (avec variables CSS) --- */
.card-styled {
	border-radius: var(--sch-radius);
	box-shadow: var(--sch-shadow);
	overflow: hidden;
}

/* --- Devis Card --- */
.devis-card {
	border-radius: var(--sch-radius);
	box-shadow: var(--sch-shadow);
	max-width: 280px;
}

/* --- Signature Box --- */
.signature-box {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	box-shadow: 0 16px 30px rgba(111,175,96,.18);
}

/* =============================================================================
   16. GALLERY & LIGHTBOX (Centralisé depuis realisations.php)
   ============================================================================= */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--sch-radius);
	cursor: pointer;
	background: #fff;
	box-shadow: 0 10px 24px rgba(30,58,43,.05);
	transition: all .3s ease;
}

.gallery-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--sch-shadow);
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(30,58,43,.7) 100%);
	opacity: 0;
	transition: opacity .3s ease;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}

.gallery-item-name {
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	text-transform: capitalize;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30,58,43,.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: var(--sch-radius);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: var(--sch-light);
	border: none;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
}

.lightbox-close:hover {
	background: var(--sch-main);
	transform: rotate(90deg);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
	border: none;
}

.lightbox-nav:hover {
	background: rgba(255,255,255,.2);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 1rem;
	}

	.gallery-item img {
		height: 220px;
	}

	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

/* =============================================================================
   17. HERO INDEX (Centralisé depuis index.php)
   ============================================================================= */

.background-fade {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	pointer-events: none;
}

/* =============================================================================
   18. SCROLL TO TOP BUTTON
   ============================================================================= */

#scrollToTop {
	position: fixed;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: -60px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--sch-light), var(--sch-main));
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: all .4s ease;
	box-shadow: 0 8px 20px rgba(46, 92, 56, .25);
}

#scrollToTop:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(46, 92, 56, .35);
}

#scrollToTop.show {
	bottom: 20px;
	opacity: 1;
}

@media (max-width: 768px) {
	#scrollToTop {
		width: 44px;
		height: 44px;
		right: 15px;
	}

	#scrollToTop.show {
		bottom: 15px;
	}
}
