:root {
	--brand-green: #2c5e2e;
	--brand-green-dark: #1a3a1c;
	--brand-green-lgt: #3a7a3c;
	--brand-brown: #6b4423;
	--brand-orange: #c97e0d;
	--brand-orange-lgt: #e8950f;
	--brand-red: #c62828;
	--brand-yellow: #f6c344;
	--brand-dark: #1b1b1b;
	--brand-creme: #f7f2ea;
	--brand-creme-dk: #ede5d4;
	--brand-light: #f8f9fa;
	--brand-muted: #666;
}

body {
	font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
	color: var(--brand-dark);
	background-color: #fff;
}

h1, h2, h3, .display-font {
	font-family: 'Playfair Display', Georgia, serif;
}

.topbar {
	background-color: var(--brand-green-dark);
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
}

.topbar a {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
}

.topbar a:hover {
	color: #fff;
}

.topbar-sep {
	opacity: .4;
	margin: 0 .25rem;
}

.navbar {
	background-color: var(--brand-green) !important;
	padding: .4rem 0;
}

.navbar-brand {
	background: #fff;
	border-radius: 6px;
	padding: .3rem .6rem;
}

.navbar-brand img {
	height: 60px;
	width: auto;
	display: block;
}

.navbar .nav-link {
	color: rgba(255, 255, 255, .88) !important;
	font-weight: 500;
	font-size: .93rem;
	padding: .5rem .85rem !important;
	border-radius: 5px;
	transition: background .15s, color .15s;
}

.navbar .nav-link:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, .12);
}

.navbar .nav-link.active {
	font-weight: 700;
	color: var(--brand-yellow) !important;
	background: rgba(255, 255, 255, .08);
}

.navbar-toggler {
	border: 1px solid rgba(255, 255, 255, .35);
}

.navbar-toggler-icon {
	filter: invert(1);
}

.btn-nav-icon,
.btn-panier {
	background: rgba(255, 255, 255, .14);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 6px;
	transition: background .15s;
}

.btn-nav-icon {
	padding: .42rem .7rem;
	font-size: .9rem;
}

.btn-panier {
	padding: .42rem .75rem;
	font-size: 1rem;
}

.btn-nav-icon:hover,
.btn-panier:hover {
	background: rgba(255, 255, 255, .22);
	color: #fff;
}

.btn-nav-icon::after {
	display: none;
}

.btn-tel-nav {
	background: var(--brand-orange);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: .85rem;
	padding: .42rem 1rem;
	transition: background .18s;
}

.btn-tel-nav:hover {
	background: var(--brand-orange-lgt);
	color: #fff;
}

.navbar .dropdown-menu {
	border: 0;
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
	min-width: 180px;
}

.navbar .dropdown-item {
	font-size: .9rem;
	padding: .5rem 1rem;
}

.navbar .dropdown-item:hover {
	background: var(--brand-creme);
}

main.main-fullwidth {
	width: 100%;
	padding: 0;
	margin: 0;
}

.promo-banner {
	background: var(--brand-orange);
	color: #fff;
	text-align: center;
	padding: .5rem 1rem;
	font-weight: 600;
	font-size: .9rem;
}

.promo-banner .code {
	background: rgba(255, 255, 255, .22);
	border-radius: 4px;
	padding: 2px 9px;
	letter-spacing: .1em;
	margin: 0 4px;
}

.promo-banner small {
	font-weight: 400;
	font-size: .82rem;
	opacity: .9;
}

/* =========================================================
   Modal d'accueil
   ========================================================= */

/* Backdrop flouté pour la modal d'accueil */
.modal-backdrop {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background-color: rgba(0, 0, 0, .5);
	opacity: 1 !important;
}

.modal-accueil-dialog {
	max-width: 740px;
}

.modal-accueil-content {
	border: none;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 48px rgba(0, 0, 0, .28);
	position: relative;
}

.modal-accueil-close {
	position: absolute;
	top: .75rem;
	right: .75rem;
	z-index: 10;
	background-color: rgba(255, 255, 255, .85);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.modal-accueil-close:hover {
	background-color: #fff;
	opacity: 1;
}

.modal-accueil-img img {
	width: 100%;
	height: auto;
	display: block;
}

.modal-accueil-body {
	padding: 1.75rem 2rem 2rem;
	text-align: center;
}

.modal-accueil-titre {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	color: var(--brand-green-dark);
	margin-bottom: .75rem;
}

.modal-accueil-desc {
	color: var(--brand-muted);
	font-size: .95rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.modal-accueil-btn {
	background: var(--brand-green);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: .6rem 2rem;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	display: inline-block;
	transition: background .2s;
}

.modal-accueil-btn:hover {
	background: var(--brand-green-dark);
	color: #fff;
}

/* =========================================================
   Fin modal d'accueil
   ========================================================= */

.hero-home {
	background: var(--brand-creme);
	padding: 4rem 0 3.5rem;
	position: relative;
	overflow: hidden;
}

.hero-home::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/img/hero-livraison-bois.jpg') center/cover no-repeat;
	opacity: .05;
	pointer-events: none;
}

.hero-badge-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(44, 94, 46, .1);
	color: var(--brand-green);
	border: 1px solid rgba(44, 94, 46, .18);
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 600;
	padding: .28rem .9rem;
}

.hero-badge-top i {
	color: var(--brand-orange);
}

.hero-title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 700;
	color: var(--brand-green);
	line-height: 1.18;
	margin-bottom: 1rem;
}

.hero-title span {
	color: var(--brand-brown);
}

.hero-subtitle {
	font-size: 1.05rem;
	color: var(--brand-muted);
	margin-bottom: 1.5rem;
	max-width: 500px;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 1.75rem;
}

.hero-badge {
	background: #fff;
	border-radius: 999px;
	padding: .25rem .9rem;
	font-size: .82rem;
	font-weight: 500;
	border: 1px solid rgba(0, 0, 0, .07);
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: var(--brand-dark);
}

.hero-badge i {
	color: var(--brand-orange);
}

.hero-img-wrap {
	border-radius: 14px;
	overflow: hidden;
}

.hero-img-wrap img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.btn-hero-primary,
.btn-hero-outline {
	border-radius: 8px;
	font-weight: 600;
	font-size: .95rem;
	padding: .7rem 1.5rem;
	transition: all .18s;
}

.btn-hero-primary {
	background: var(--brand-green);
	color: #fff;
	border: none;
}

.btn-hero-primary:hover {
	background: var(--brand-green-lgt);
	color: #fff;
}

.btn-hero-outline {
	border: 1.5px solid var(--brand-green);
	color: var(--brand-green);
	background: transparent;
}

.btn-hero-outline:hover {
	background: var(--brand-green);
	color: #fff;
}

.args-strip {
	background: var(--brand-green);
	padding: 2.5rem 0;
}

.arg-item {
	text-align: center;
	color: #fff;
}

.arg-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto .9rem;
	font-size: 1.3rem;
}

.arg-item h5 {
	font-family: 'Source Sans 3', Arial, sans-serif;
	font-weight: 600;
	font-size: .95rem;
	margin-bottom: .3rem;
}

.arg-item p {
	font-size: .8rem;
	opacity: .78;
	margin: 0;
	line-height: 1.4;
}

.home-section {
	padding: 4.5rem 0;
	background: #fff;
}

.home-section-creme {
	padding: 4.5rem 0;
	background: var(--brand-creme);
}

.section-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brand-orange);
	margin-bottom: .4rem;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .5rem;
}

.section-subtitle {
	color: var(--brand-muted);
	font-size: 1rem;
}

.page-header-strip {
	background: var(--brand-creme);
	border-bottom: 1px solid var(--brand-creme-dk);
	padding: 2.8rem 0 2.2rem;
}

.page-header-strip--sm {
	padding: 1.2rem 0;
}

.page-header-title {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	color: var(--brand-green);
	margin-bottom: .4rem;
}

.page-header-sub {
	color: var(--brand-muted);
	font-size: .97rem;
	margin: 0;
}

.btn-primary {
	background-color: var(--brand-green);
	border-color: var(--brand-green);
	font-weight: 600;
}

.btn-primary:hover {
	background-color: var(--brand-green-lgt);
	border-color: var(--brand-green-lgt);
}

.btn-outline-secondary {
	border-color: var(--brand-green);
	color: var(--brand-green);
	font-weight: 600;
}

.btn-outline-secondary:hover {
	background: var(--brand-green);
	border-color: var(--brand-green);
	color: #fff;
}

.product-card {
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid var(--brand-creme-dk);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow .2s, transform .2s;
}

.product-card:hover {
	box-shadow: 0 10px 36px rgba(0, 0, 0, .1);
	transform: translateY(-3px);
}

.product-card--featured {
	border-color: var(--brand-orange);
}

.product-badge-bestseller {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--brand-orange);
	color: #fff;
	border-radius: 4px;
	font-size: .72rem;
	font-weight: 700;
	padding: 3px 10px;
	z-index: 1;
}

.product-card-img {
	height: 220px;
	background-size: cover;
	background-position: center;
}

.product-card-img-tag {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
	border-radius: 10px 10px 0 0;
}

.product-card-body {
	padding: 1.3rem 1.3rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-card h3,
.product-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	color: var(--brand-dark);
	margin-bottom: .45rem;
}

.product-card h3 {
	font-size: 1.2rem;
	margin-bottom: .5rem;
}

.product-card-title {
	font-size: 1.1rem;
}

.product-card p {
	font-size: .9rem;
	color: var(--brand-muted);
	margin-bottom: .75rem;
	line-height: 1.55;
}

.product-tagline {
	font-size: .88rem !important;
	font-style: italic;
	color: var(--brand-green) !important;
}

.product-card .btn {
	align-self: flex-start;
}

.product-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.spec-tag {
	display: inline-block;
	background: var(--brand-creme);
	border-radius: 4px;
	font-size: .73rem;
	font-weight: 500;
	color: var(--brand-brown);
	padding: 2px 8px;
}

.card-text-excerpt {
	font-size: .875rem;
	color: var(--brand-muted);
	line-height: 1.55;
	margin-bottom: .9rem;
	flex: 1;
}

.product-price-line {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 1rem;
}

.price-label {
	font-size: .8rem;
	color: var(--brand-muted);
}

.price-value {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-green);
}

.produit-type-badge {
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	border-radius: 4px;
	padding: 3px 9px;
}

.produit-type-badge--bois {
	background: rgba(107, 68, 35, .12);
	color: var(--brand-brown);
}

.produit-type-badge--pellets {
	background: rgba(44, 94, 46, .1);
	color: var(--brand-green);
}

.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.filter-tab {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 999px;
	color: var(--brand-muted);
	font-size: .88rem;
	font-weight: 600;
	padding: .4rem 1.1rem;
	cursor: pointer;
	transition: all .18s;
	font-family: 'Source Sans 3', Arial, sans-serif;
}

.filter-tab:hover {
	border-color: var(--brand-green);
	color: var(--brand-green);
}

.filter-tab.active {
	background: var(--brand-green);
	border-color: var(--brand-green);
	color: #fff;
}

.produits-layout,
.produit-detail-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.products-type-heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--brand-green);
	padding: .6rem 0 .2rem;
	border-bottom: 2px solid var(--brand-creme-dk);
	margin-bottom: .5rem;
}

.produit-breadcrumb {
	font-size: .82rem;
	margin-bottom: 0;
}

.produit-breadcrumb .breadcrumb-item a {
	color: var(--brand-green);
	text-decoration: none;
}

.produit-breadcrumb .breadcrumb-item.active {
	color: var(--brand-muted);
}

.produit-img-wrap {
	border-radius: 12px;
	overflow: hidden;
	border: 1.5px solid var(--brand-creme-dk);
	position: sticky;
	top: 80px;
}

.produit-img {
	width: 100%;
	display: block;
}

.produit-detail-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--brand-dark);
	margin-bottom: .75rem;
}

.produit-description {
	font-size: .95rem;
	color: var(--brand-muted);
	line-height: 1.7;
}

.produit-description p {
	margin-bottom: .5rem;
}

.produit-prix-block {
	display: flex;
	align-items: baseline;
	gap: 10px;
	background: var(--brand-creme);
	border-radius: 10px;
	padding: 1rem 1.25rem;
}

.produit-prix-label {
	font-size: .82rem;
	color: var(--brand-muted);
}

.produit-prix-value {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--brand-green);
}

.produit-prix-pro-badge {
	display: inline-flex;
	align-items: center;
	font-size: .75rem;
	font-weight: 600;
	color: var(--brand-green);
	background: rgba(var(--brand-green-rgb, 20, 108, 67), .1);
	border-radius: 20px;
	padding: .2em .7em;
	margin-left: auto;
}

.produit-form-label {
	display: block;
	font-size: .88rem;
	font-weight: 600;
	color: var(--brand-dark);
	margin-bottom: .4rem;
}

.produit-select {
	border-color: var(--brand-creme-dk);
	border-radius: 8px;
	font-size: .93rem;
}

.produit-select:focus {
	border-color: var(--brand-green);
	box-shadow: 0 0 0 .15rem rgba(44, 94, 46, .15);
}

.qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 8px;
	overflow: hidden;
}

.qty-btn {
	width: 40px;
	height: 42px;
	background: var(--brand-creme);
	border: none;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--brand-dark);
	cursor: pointer;
	flex-shrink: 0;
	transition: background .15s;
}

.qty-btn:hover {
	background: var(--brand-creme-dk);
}

.qty-input {
	flex: 1;
	min-width: 40px;
	width: 54px;
	border: none;
	text-align: center;
	font-size: .97rem;
	font-weight: 600;
	color: var(--brand-dark);
	height: 42px;
	background: #fff;
	-moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.qty-input:focus {
	outline: none;
}

.btn-panier-add {
	font-size: 1rem;
	padding: .8rem;
}

.produit-reassurance {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .6rem;
	padding: 1rem;
	background: var(--brand-creme);
	border-radius: 10px;
}

.reassurance-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .82rem;
	color: var(--brand-muted);
}

.reassurance-item i {
	color: var(--brand-orange);
	font-size: .9rem;
	min-width: 14px;
}

.reassurance-item a {
	color: var(--brand-green);
	font-weight: 600;
	text-decoration: none;
}

.zone-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-left: 4px solid var(--brand-green);
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.75rem;
}

.zone-block-left {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex: 1;
	min-width: 180px;
}

.zone-block-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(44, 94, 46, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-green);
	font-size: 1rem;
	flex-shrink: 0;
}

.zone-block-title {
	font-size: .93rem;
	font-weight: 500;
	color: var(--brand-dark);
}

.zone-block-dist {
	font-size: .8rem;
	color: var(--brand-muted);
	margin-top: 1px;
}

.zone-block-tarifs {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.2rem;
}

.zone-tarif-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: .78rem;
	color: var(--brand-muted);
	text-align: center;
}

.zone-tarif-item strong {
	font-size: .97rem;
	color: var(--brand-green);
	font-weight: 700;
}

.zone-block-change {
	background: transparent;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 6px;
	font-size: .8rem;
	font-weight: 600;
	color: var(--brand-muted);
	padding: .35rem .85rem;
	cursor: pointer;
	transition: all .15s;
	white-space: nowrap;
}

.zone-block-change:hover {
	border-color: var(--brand-green);
	color: var(--brand-green);
}

.zone-modal-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(44, 94, 46, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-green);
	font-size: .9rem;
	flex-shrink: 0;
}

.zone-input {
	border-color: var(--brand-creme-dk);
	border-radius: 8px;
}

.zone-input:focus {
	border-color: var(--brand-green);
	box-shadow: 0 0 0 .15rem rgba(44, 94, 46, .15);
}

.produits-pagination {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.produits-pagination a,
.produits-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border-radius: 6px;
	border: 1.5px solid var(--brand-creme-dk);
	font-size: .88rem;
	font-weight: 600;
	color: var(--brand-green);
	text-decoration: none;
	padding: 0 10px;
	transition: all .15s;
}

.produits-pagination a:hover,
.produits-pagination .current {
	background: var(--brand-green);
	border-color: var(--brand-green);
	color: #fff;
}

.panier-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.panier-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1.25rem;
}

.panier-items {
	display: flex;
	flex-direction: column;
	gap: 1px;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1.25rem;
}

.panier-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #fff;
	padding: 1rem 1.1rem;
	border-bottom: 1px solid var(--brand-creme-dk);
	transition: background .15s;
}

.panier-item:last-child {
	border-bottom: none;
}

.panier-item:hover {
	background: var(--brand-creme);
}

.panier-item-img {
	width: 68px;
	height: 68px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--brand-creme);
}

.panier-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.panier-item-info {
	flex: 1;
	min-width: 0;
}

.panier-item-nom {
	font-weight: 600;
	font-size: .93rem;
	color: var(--brand-dark);
	margin-bottom: .3rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.panier-item-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
}

.panier-item-pu {
	font-size: .82rem;
	color: var(--brand-muted);
}

.panier-item-pu small {
	font-size: .78rem;
}

.panier-item-qty {
	display: flex;
	align-items: center;
	gap: .35rem;
	flex-shrink: 0;
}

.panier-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--brand-creme-dk);
	background: var(--brand-creme);
	color: var(--brand-brown);
	font-size: .7rem;
	transition: background .15s, border-color .15s;
	text-decoration: none;
}

.panier-qty-btn:hover {
	background: var(--brand-green);
	border-color: var(--brand-green);
	color: #fff;
}

.panier-qty-value {
	font-size: .9rem;
	font-weight: 700;
	min-width: 22px;
	text-align: center;
	color: var(--brand-brown);
}

.panier-item-total {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-green);
	white-space: nowrap;
	flex-shrink: 0;
}

.panier-item-actions {
	flex-shrink: 0;
}

.panier-remove-btn {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: transparent;
	border: 1.5px solid var(--brand-creme-dk);
	color: var(--brand-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	text-decoration: none;
	transition: all .15s;
}

.panier-remove-btn:hover {
	background: #fee;
	border-color: var(--brand-red);
	color: var(--brand-red);
}

.panier-footer-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.panier-clear-btn {
	font-size: .875rem;
	text-decoration: none;
	padding: 0;
}

.panier-clear-btn:hover {
	text-decoration: underline;
}

.panier-summary {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.5rem;
	position: sticky;
	top: 80px;
}

.panier-summary-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1.25rem;
	padding-bottom: .8rem;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.panier-summary-line {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: .5rem;
	font-size: .9rem;
	color: var(--brand-dark);
	padding: .55rem 0;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.panier-summary-line span:last-child {
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

.panier-zone-detail {
	font-size: .75rem;
	color: var(--brand-muted);
	margin-top: 2px;
}

.panier-livraison-details {
	background: var(--brand-creme);
	border-radius: 6px;
	padding: .6rem .85rem;
	margin: .25rem 0 .5rem;
}

.panier-livraison-ligne {
	font-size: .78rem;
	color: var(--brand-muted);
	padding: 1px 0;
}

.panier-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .9rem 0 1.1rem;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--brand-dark);
}

.panier-summary-total span:last-child {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	color: var(--brand-green);
}

.panier-checkout-btn {
	font-size: .97rem;
	padding: .85rem;
}

.panier-reassurance {
	display: flex;
	flex-direction: column;
	gap: .45rem;
	padding: .9rem;
	background: var(--brand-creme);
	border-radius: 8px;
}

.panier-reassurance .reassurance-item {
	font-size: .8rem;
}

.panier-empty {
	text-align: center;
	padding: 5rem 1rem;
}

.panier-empty-icon {
	font-size: 3.5rem;
	color: var(--brand-creme-dk);
	margin-bottom: 1.25rem;
}

.panier-empty-title {
	font-size: 1.7rem;
	color: var(--brand-green);
	margin-bottom: .5rem;
}

.panier-empty-sub {
	color: var(--brand-muted);
	max-width: 420px;
	margin: 0 auto 2rem;
}

.company-checks {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.company-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .95rem;
	color: var(--brand-dark);
}

.icon-circle {
	width: 38px;
	height: 38px;
	min-width: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(44, 94, 46, .1);
}

.icon-circle i {
	color: var(--brand-green);
	font-size: .95rem;
}

.stats-strip {
	background: var(--brand-brown);
	padding: 2.8rem 0;
}

.stat-val {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	display: block;
}

.stat-lbl {
	font-size: .82rem;
	color: rgba(255, 255, 255, .75);
	margin-top: .2rem;
}

.testimonial-card {
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid var(--brand-creme-dk);
	padding: 1.6rem 1.5rem;
	height: 100%;
}

.testi-stars {
	color: var(--brand-yellow);
	font-size: .9rem;
	margin-bottom: .4rem;
	letter-spacing: .05em;
}

.testimonial-card .quote-icon {
	font-size: 1.8rem;
	color: var(--brand-creme-dk);
	margin-bottom: .4rem;
}

.testimonial-card blockquote {
	font-size: .93rem;
	color: var(--brand-muted);
	margin: 0 0 .9rem;
	line-height: 1.65;
}

.testimonial-card .author {
	font-weight: 700;
	color: var(--brand-green);
	font-size: .88rem;
}

.news-card {
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid var(--brand-creme-dk);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow .18s;
}

.news-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.news-card-img {
	height: 220px;
	background-size: cover;
	background-position: center;
}

.news-card-body {
	padding: 1.2rem 1.25rem 1.3rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-tag {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--brand-orange);
	margin-bottom: .5rem;
	display: block;
}

.news-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-dark);
	margin-bottom: .45rem;
}

.news-card p {
	font-size: .88rem;
	color: var(--brand-muted);
	margin-bottom: .75rem;
	line-height: 1.55;
}

.news-link {
	color: var(--brand-green);
	font-weight: 600;
	font-size: .875rem;
	text-decoration: none;
	margin-top: auto;
}

.news-link:hover {
	color: var(--brand-brown);
}

.cta-band {
	background: var(--brand-green);
	padding: 3.5rem 0;
}

.cta-band-title {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	margin-bottom: .5rem;
}

.cta-band-sub {
	color: rgba(255, 255, 255, .78);
	margin: 0;
	font-size: .95rem;
}

.btn-cta-tel,
.btn-cta-outline {
	border-radius: 8px;
	font-weight: 600;
	transition: all .18s;
}

.btn-cta-tel {
	background: var(--brand-orange);
	color: #fff;
	border: none;
	font-size: 1rem;
	padding: .75rem 1.6rem;
	font-weight: 700;
}

.btn-cta-tel:hover {
	background: var(--brand-orange-lgt);
	color: #fff;
}

.btn-cta-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .45);
	font-size: .93rem;
	padding: .72rem 1.4rem;
}

.btn-cta-outline:hover {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.site-footer {
	background: var(--brand-green-dark);
	color: rgba(255, 255, 255, .72);
}

.footer-brand {
	font-family: 'Playfair Display', Georgia, serif;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
}

.footer-tagline {
	font-size: .85rem;
	color: rgba(255, 255, 255, .55);
	line-height: 1.55;
}

.footer-heading {
	font-family: 'Source Sans 3', Arial, sans-serif;
	color: #fff;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 1rem;
}

.footer-links {
	margin: 0;
}

.footer-links li {
	margin-bottom: .45rem;
}

.footer-links a,
.site-footer a {
	color: rgba(255, 255, 255, .65);
	text-decoration: none;
	font-size: .875rem;
	transition: color .15s;
}

.footer-links a:hover,
.site-footer a:hover {
	color: #fff;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: .65rem;
	font-size: .875rem;
}

.footer-contact-item i {
	color: var(--brand-orange);
	margin-top: 2px;
	min-width: 14px;
}

.footer-social {
	display: flex;
	gap: 8px;
}

.footer-social-link {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .65);
	text-decoration: none;
	font-size: .95rem;
	transition: all .18s;
}

.footer-social-link:hover {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.footer-copy {
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .77rem;
	color: rgba(255, 255, 255, .38);
}

.price {
	color: var(--brand-red);
	font-weight: 700;
}

.badge.bg-primary {
	background-color: var(--brand-green) !important;
}

.badge.bg-danger {
	background-color: var(--brand-red) !important;
}

.pac-container {
	z-index: 99999 !important;
}

#zoneModal .modal-content {
	border-radius: 12px;
	padding: 8px 5px;
}

#zoneModal .modal-footer .btn {
	font-size: 1rem;
	padding: .75rem 1rem;
}

#zoneModal .btn-primary {
	font-weight: 600;
}

#zoneModal .modal-body p {
	font-size: .95rem;
	color: #555;
}

#zoneInfo strong {
	color: var(--brand-green);
}

.production-hero,
.team-hero,
.contact-hero {
	background: linear-gradient(135deg, rgba(44, 94, 46, .06), rgba(246, 195, 68, .05));
	border-radius: 1rem;
	padding: 2.5rem 1.75rem;
}

.contact-hero {
	padding: 2.2rem 1.75rem;
	margin-bottom: 2rem;
}

.production-hero-title,
.team-hero-title,
.contact-hero-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--brand-green);
	margin-bottom: .75rem;
}

.production-hero-subtitle,
.team-hero-subtitle {
	font-size: 1.05rem;
	color: #444;
	margin-bottom: 1.25rem;
}

.contact-hero-subtitle {
	font-size: 1.02rem;
	color: #444;
	margin-bottom: 1rem;
}

.production-hero-badge,
.team-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: #fff;
	border-radius: 999px;
	padding: .25rem .9rem;
	font-size: .85rem;
	border: 1px solid rgba(0, 0, 0, .05);
	color: var(--brand-dark);
}

.team-hero-badge {
	margin-top: .75rem;
}

.production-hero-badge i,
.team-hero-badge i {
	color: var(--brand-orange);
}

.production-hero-img,
.team-hero-img {
	border-radius: 1rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.team-hero-meta,
.contact-hero-meta {
	font-size: .95rem;
	color: #555;
	margin-bottom: .35rem;
}

.contact-hero-meta {
	margin-bottom: .3rem;
}

.team-hero-meta strong,
.contact-hero-meta strong {
	color: var(--brand-red);
	font-weight: 700;
}

.production-steps {
	margin-top: 2.5rem;
}

.production-step-card {
	background: #fff;
	border-radius: .9rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.production-step-img {
	height: 220px;
	background-size: cover;
	background-position: center;
}

.production-step-body {
	padding: 1.25rem 1.4rem 1.4rem;
}

.production-step-label {
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--brand-orange);
	font-weight: 700;
	margin-bottom: .2rem;
}

.production-step-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--brand-dark);
	margin-bottom: .6rem;
}

.production-step-body p {
	font-size: .95rem;
	color: #555;
	margin-bottom: .5rem;
}

.process-highlight {
	background: #fff;
	border-radius: .9rem;
	padding: 1.8rem 1.6rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.process-highlight h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .75rem;
}

.process-highlight p {
	font-size: .95rem;
	color: #555;
	margin-bottom: .5rem;
}

.process-pillars {
	margin-top: 1.25rem;
}

.process-pillar {
	background: var(--brand-light);
	border-radius: .9rem;
	padding: 1.1rem;
	height: 100%;
}

.process-pillar-title {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--brand-green);
	margin-bottom: .35rem;
}

.process-pillar-title i {
	color: var(--brand-orange);
}

.process-pillar p {
	font-size: .9rem;
	color: #555;
	margin: 0;
}

.production-palette-img {
	border-radius: .9rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.team-section-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .4rem;
}

.team-section-subtitle {
	color: #555;
	margin-bottom: 1.5rem;
}

.team-card {
	background: #fff;
	border-radius: .9rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
	padding: 1.3rem 1.2rem 1.25rem;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-photo {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: .75rem;
	box-shadow: 0 6px 14px rgba(0, 0, 0, .1);
}

.team-role {
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--brand-orange);
	font-weight: 700;
	margin-bottom: .2rem;
}

.team-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--brand-dark);
	margin-bottom: .5rem;
}

.team-desc {
	font-size: .9rem;
	color: #555;
}

.team-values {
	background: #fff;
	border-radius: .9rem;
	padding: 1.7rem 1.5rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.team-values h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .8rem;
}

.team-values p {
	font-size: .95rem;
	color: #555;
	margin-bottom: .5rem;
}

.team-values-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.team-values-list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	margin-bottom: .4rem;
	font-size: .93rem;
	color: #555;
}

.team-values-list i {
	color: var(--brand-orange);
	margin-top: .2rem;
}

.contact-form-card,
.contact-info-card {
	background: #fff;
	border-radius: .9rem;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
	padding: 1.6rem 1.5rem;
	height: 100%;
}

.contact-form-card h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1rem;
}

.contact-info-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .75rem;
}

.contact-form-card .form-label {
	font-weight: 600;
	font-size: .92rem;
	color: #444;
}

.contact-form-card .form-control {
	border-radius: .6rem;
	border-color: rgba(0, 0, 0, .08);
	font-size: .95rem;
}

.contact-form-card .form-control:focus {
	border-color: var(--brand-green);
	box-shadow: 0 0 0 .15rem rgba(44, 94, 46, .15);
}

.contact-error {
	font-size: .85rem;
	color: var(--brand-red);
	margin-top: .2rem;
}

.contact-info-item {
	margin-bottom: .9rem;
	font-size: .95rem;
	color: #555;
}

.contact-info-item i {
	color: var(--brand-orange);
	margin-right: .4rem;
}

.contact-info-item a {
	color: var(--brand-green);
	text-decoration: none;
}

.contact-info-item a:hover {
	color: var(--brand-red);
}

.contact-hours-title {
	font-weight: 700;
	font-size: .95rem;
	color: var(--brand-dark);
	margin-bottom: .2rem;
}

.contact-hours {
	font-size: .95rem;
	color: #555;
	margin-bottom: .8rem;
}

.contact-social-title {
	font-weight: 700;
	font-size: .95rem;
	color: var(--brand-dark);
	margin-bottom: .25rem;
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin-right: .9rem;
	font-size: .95rem;
	color: var(--brand-green);
	text-decoration: none;
}

.contact-social-links a i {
	color: var(--brand-orange);
}

.contact-social-links a:hover {
	color: var(--brand-red);
}

.contact-palette-img {
	border-radius: .75rem;
	box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
	margin-top: 1rem;
}

@media (max-width: 991.98px) {
	.hero-home {
		padding: 2.5rem 0 2rem;
	}

	.hero-img-wrap img {
		height: 260px;
	}
}

@media (max-width: 767.98px) {
	.topbar .d-flex {
		flex-direction: column;
		gap: .25rem !important;
		align-items: flex-start !important;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: .97rem;
	}

	.args-strip {
		padding: 2rem 0;
	}

	.stats-strip {
		padding: 2rem 0;
	}

	.stat-val {
		font-size: 1.8rem;
	}

	.cta-band-title {
		font-size: 1.4rem;
	}

	.home-section,
	.home-section-creme {
		padding: 3rem 0;
	}

	.filter-tabs {
		gap: 6px;
	}

	.filter-tab {
		font-size: .82rem;
		padding: .35rem .9rem;
	}

	.produit-img-wrap {
		position: static;
	}

	.produit-reassurance {
		grid-template-columns: 1fr;
	}

	.zone-block {
		flex-direction: column;
		align-items: flex-start;
	}

	.zone-block-tarifs {
		gap: .4rem .8rem;
	}

	.panier-item {
		gap: .65rem;
		padding: .8rem .85rem;
	}

	.panier-item-img {
		width: 52px;
		height: 52px;
	}

	.panier-item-nom {
		font-size: .87rem;
		white-space: normal;
	}

	.panier-item-total {
		font-size: .97rem;
	}

	.panier-summary {
		position: static;
		margin-top: 1rem;
	}

	.production-hero,
	.team-hero,
	.contact-hero {
		padding: 1.9rem 1.2rem;
	}

	.production-hero-title,
	.team-hero-title,
	.contact-hero-title {
		font-size: 1.7rem;
	}
}

.btn-calc-trigger {
	background: var(--brand-creme);
	border: 1.5px solid var(--brand-orange);
	color: var(--brand-orange);
	font-weight: 600;
	font-size: .92rem;
	border-radius: 8px;
	padding: .65rem 1rem;
	transition: all .18s;
}

.btn-calc-trigger:hover {
	background: var(--brand-orange);
	color: #fff;
}

.calc-modal-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(201, 126, 13, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-orange);
	font-size: .9rem;
	flex-shrink: 0;
}

.calc-result-block {
	background: linear-gradient(135deg, rgba(44, 94, 46, .06), rgba(201, 126, 13, .06));
	border: 1.5px solid rgba(44, 94, 46, .2);
	border-left: 4px solid var(--brand-green);
	border-radius: 10px;
	padding: 1rem 1.15rem;
	margin-bottom: 1rem;
}

.calc-result-top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .9rem;
	color: var(--brand-green);
	margin-bottom: .6rem;
}

.calc-result-top i {
	font-size: 1rem;
}

.calc-result-block p {
	font-size: .88rem;
	color: var(--brand-dark);
	margin-bottom: .75rem;
	line-height: 1.6;
}

.calc-result-highlight {
	background: #fff;
	border-radius: 7px;
	padding: .75rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .35rem;
	font-size: .9rem;
	color: var(--brand-dark);
}

.calc-result-highlight strong {
	color: var(--brand-green);
}

.calc-result-eco {
	font-size: .82rem;
	color: var(--brand-green);
	font-weight: 600;
}

.calc-result-eco i {
	color: var(--brand-green);
}

.recap-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.checkout-steps {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: .75rem;
	flex-wrap: wrap;
}

.checkout-step {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: .82rem;
	color: var(--brand-muted);
}

.checkout-step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
	background: var(--brand-creme-dk);
	color: var(--brand-muted);
	flex-shrink: 0;
}

.checkout-step-lbl {
	font-weight: 500;
}

.checkout-step--done .checkout-step-num {
	background: var(--brand-green);
	color: #fff;
}

.checkout-step--done .checkout-step-lbl {
	color: var(--brand-green);
}

.checkout-step--active .checkout-step-num {
	background: var(--brand-orange);
	color: #fff;
}

.checkout-step--active .checkout-step-lbl {
	color: var(--brand-orange);
	font-weight: 700;
}

.checkout-step-line {
	flex: 1;
	min-width: 24px;
	height: 2px;
	background: var(--brand-creme-dk);
	margin: 0 6px;
}

.checkout-step-line--done {
	background: var(--brand-green);
}

.recap-card {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.25rem 1.3rem;
	margin-bottom: .75rem;
}

.recap-card--sm {
	height: 100%;
	margin-bottom: 0;
}

.recap-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1rem;
	padding-bottom: .65rem;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.recap-items {
	display: flex;
	flex-direction: column;
}

.recap-item {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .7rem 0;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.recap-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.recap-item-nom {
	flex: 1;
	font-size: .9rem;
	font-weight: 600;
	color: var(--brand-dark);
}

.recap-item-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex-shrink: 0;
}

.recap-item-qty {
	font-size: .75rem;
	color: var(--brand-muted);
}

.recap-item-pu {
	font-size: .75rem;
	color: var(--brand-muted);
}

.recap-item-total {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-green);
	white-space: nowrap;
	flex-shrink: 0;
	min-width: 80px;
	text-align: right;
}

.recap-addr {
	font-size: .88rem;
	color: var(--brand-dark);
	line-height: 1.7;
	margin-bottom: .65rem;
}

.recap-edit-link {
	font-size: .78rem;
	color: var(--brand-green);
	font-weight: 600;
	text-decoration: none;
}

.recap-edit-link:hover {
	text-decoration: underline;
}

.recap-zone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-left: 4px solid var(--brand-green);
	border-radius: 10px;
	padding: .9rem 1.1rem;
}

.recap-zone-left {
	display: flex;
	align-items: center;
	gap: .7rem;
	flex: 1;
	min-width: 160px;
}

.recap-zone-title {
	font-size: .88rem;
	font-weight: 500;
	color: var(--brand-dark);
}

.recap-zone-dist {
	font-size: .75rem;
	color: var(--brand-muted);
}

.recap-zone-tarifs {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 1rem;
}

.recap-summary {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.4rem;
	position: sticky;
	top: 80px;
}

.recap-summary-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.recap-legal-alert {
	background: rgba(201, 126, 13, .08);
	border: 1px solid rgba(201, 126, 13, .25);
	border-radius: 8px;
	padding: .75rem .9rem;
	font-size: .82rem;
	color: var(--brand-dark);
	line-height: 1.55;
	margin: 1rem 0;
}

.recap-legal-alert i {
	color: var(--brand-orange);
}

.recap-check-item {
	margin-bottom: .75rem;
}

.recap-check-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .85rem;
	color: var(--brand-dark);
	cursor: pointer;
	line-height: 1.5;
}

.recap-check-input {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 1px;
	accent-color: var(--brand-green);
	cursor: pointer;
}

.recap-check-label a {
	color: var(--brand-green);
	font-weight: 600;
}

.recap-submit-btn {
	font-size: .97rem;
	padding: .85rem;
}

.recap-back-link {
	font-size: .82rem;
	color: var(--brand-muted);
	text-decoration: none;
	font-weight: 500;
}

.recap-back-link:hover {
	color: var(--brand-green);
}

@media (max-width: 767.98px) {
	.checkout-steps {
		gap: 2px;
	}

	.checkout-step-line {
		min-width: 12px;
	}

	.checkout-step-lbl {
		display: none;
	}

	.recap-summary {
		position: static;
	}

	.recap-item {
		flex-wrap: wrap;
	}
}

.auth-layout {
	min-height: calc(100vh - 120px);
	display: flex;
	align-items: center;
	padding: 3rem 0;
	background: var(--brand-creme);
}

.auth-row {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1.5px solid var(--brand-creme-dk);
	min-height: 520px;
}

.auth-form-col {
	padding: 2.75rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.auth-logo {
	margin-bottom: 1.75rem;
}

.auth-logo-img {
	height: 44px;
	width: auto;
}

.auth-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: .35rem;
}

.auth-sub {
	font-size: .9rem;
	color: var(--brand-muted);
	margin-bottom: 1.75rem;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.auth-field {
	margin-bottom: 1.1rem;
}

.auth-label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--brand-dark);
	margin-bottom: .35rem;
}

.auth-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: .35rem;
}

.auth-label-row .auth-label {
	margin-bottom: 0;
}

.auth-forgot-link {
	font-size: .8rem;
	color: var(--brand-green);
	font-weight: 600;
	text-decoration: none;
}

.auth-forgot-link:hover {
	text-decoration: underline;
}

.auth-input {
	width: 100%;
	height: 44px;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 8px;
	padding: 0 .9rem;
	font-size: .93rem;
	color: var(--brand-dark);
	background: #fff;
	transition: border-color .15s;
	font-family: 'Source Sans 3', Arial, sans-serif;
}

.auth-input:focus {
	outline: none;
	border-color: var(--brand-green);
	box-shadow: 0 0 0 3px rgba(44, 94, 46, .1);
}

.auth-input::placeholder {
	color: #bbb;
}

.auth-submit {
	margin-top: .5rem;
	font-size: .97rem;
	padding: .8rem;
}

.auth-switch {
	text-align: center;
	margin-top: 1.5rem;
	font-size: .85rem;
	color: var(--brand-muted);
}

.auth-switch-link {
	color: var(--brand-green);
	font-weight: 700;
	text-decoration: none;
}

.auth-switch-link:hover {
	text-decoration: underline;
}

.auth-side-col {
	background: var(--brand-green);
	padding: 3rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth-side-content {
	max-width: 340px;
}

.auth-side-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .75rem;
}

.auth-side-sub {
	font-size: .93rem;
	color: rgba(255, 255, 255, .78);
	line-height: 1.65;
	margin-bottom: 2rem;
}

.auth-side-args {
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

.auth-side-arg {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .88rem;
	color: rgba(255, 255, 255, .88);
}

.auth-side-arg i {
	color: var(--brand-yellow);
	font-size: 1rem;
	min-width: 16px;
}

@media (max-width: 767.98px) {
	.auth-layout {
		padding: 1.5rem 0;
		align-items: flex-start;
	}

	.auth-form-col {
		padding: 2rem 1.5rem;
	}
}

.ident-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.ident-card {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.75rem;
	height: 100%;
}

.ident-card--register {
	border-top: 3px solid var(--brand-orange);
}

.ident-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.ident-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(44, 94, 46, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-green);
	font-size: 1rem;
	flex-shrink: 0;
}

.ident-card-icon--orange {
	background: rgba(201, 126, 13, .1);
	color: var(--brand-orange);
}

.ident-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--brand-dark);
}

.ident-card-sub {
	font-size: .82rem;
	color: var(--brand-muted);
	margin-top: 1px;
}

.ident-form {
	display: flex;
	flex-direction: column;
}

.ident-cgv-note {
	font-size: .78rem;
	color: var(--brand-muted);
	margin-bottom: .75rem;
}

.ident-cgv-note a {
	color: var(--brand-green);
	font-weight: 600;
	text-decoration: none;
}

.ident-cgv-note a:hover {
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.ident-layout {
		padding-top: 1.5rem;
	}
}

.livraison-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.livraison-card {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: .75rem;
}

.livraison-card--fac {
	border-top: 3px solid var(--brand-orange);
}

.livraison-card-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-green);
	margin-bottom: 1.1rem;
	padding-bottom: .7rem;
	border-bottom: 1px solid var(--brand-creme-dk);
}

.livraison-same-check {
	margin: 1rem 0;
	padding: .9rem 1.1rem;
	background: var(--brand-creme);
	border-radius: 8px;
}

.livraison-same-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .9rem;
	font-weight: 500;
	color: var(--brand-dark);
	cursor: pointer;
	user-select: none;
}

.livraison-check-input {
	display: none;
}

.livraison-check-box {
	width: 20px;
	height: 20px;
	border-radius: 5px;
	flex-shrink: 0;
	border: 1.5px solid var(--brand-creme-dk);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s;
}

.livraison-check-box i {
	font-size: .7rem;
	color: #fff;
	opacity: 0;
	transition: opacity .15s;
}

.livraison-check-input:checked ~ .livraison-check-box {
	background: var(--brand-green);
	border-color: var(--brand-green);
}

.livraison-check-input:checked ~ .livraison-check-box i {
	opacity: 1;
}

.livraison-submit {
	font-size: .97rem;
	padding: .75rem 1.5rem;
}

.livraison-frais-note {
	font-size: .78rem;
	color: var(--brand-muted);
	margin: .75rem 0 0;
	line-height: 1.5;
}

.livraison-frais-note i {
	color: var(--brand-orange);
}

@media (max-width: 767.98px) {
	.livraison-layout {
		padding-top: 1.5rem;
	}

	.livraison-submit {
		font-size: .88rem;
		padding: .7rem 1rem;
	}
}

.checkout-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.checkout-card {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.5rem;
}

.payment-options {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.payment-option {
	cursor: pointer;
	display: block;
}

.payment-radio {
	display: none;
}

.payment-option-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 10px;
	padding: 1rem 1.1rem;
	transition: border-color .15s, background .15s;
	background: #fff;
}

.payment-option:hover .payment-option-inner {
	border-color: var(--brand-green);
}

.payment-option--active .payment-option-inner {
	border-color: var(--brand-green);
	background: rgba(44, 94, 46, .04);
}

.payment-option-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.payment-option-icon--blue {
	background: rgba(37, 99, 235, .1);
	color: #2563eb;
}

.payment-option-icon--green {
	background: rgba(22, 163, 74, .1);
	color: #16a34a;
}

.payment-option-icon--purple {
	background: rgba(109, 40, 217, .1);
	color: #6d28d9;
}

.payment-option-body {
	flex: 1;
	min-width: 0;
}

.payment-option-title {
	font-weight: 700;
	font-size: .93rem;
	color: var(--brand-dark);
}

.payment-option-sub {
	font-size: .78rem;
	color: var(--brand-muted);
	margin-top: 2px;
	line-height: 1.45;
}

.payment-option-check {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 1.5px solid var(--brand-creme-dk);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .65rem;
	color: #fff;
	transition: all .15s;
}

.payment-option--active .payment-option-check {
	background: var(--brand-green);
	border-color: var(--brand-green);
}

.checkout-pay-btn {
	font-size: .97rem;
	padding: .8rem 1.75rem;
}

@media (max-width: 767.98px) {
	.checkout-layout {
		padding-top: 1.5rem;
	}

	.payment-option-inner {
		gap: .75rem;
		padding: .85rem;
	}

	.payment-option-icon {
		width: 38px;
		height: 38px;
		font-size: .95rem;
	}
}

.confirm-layout {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

.confirm-hero {
	text-align: center;
	padding: 2.5rem 1rem 2rem;
}

.confirm-hero-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin: 0 auto 1.25rem;
}

.confirm-hero-icon--blue {
	background: rgba(37, 99, 235, .1);
	color: #2563eb;
}

.confirm-hero-icon--green {
	background: rgba(22, 163, 74, .1);
	color: #16a34a;
}

.confirm-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--brand-green);
	margin-bottom: .5rem;
}

.confirm-hero-sub {
	font-size: .97rem;
	color: var(--brand-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.65;
}

.confirm-card {
	background: #fff;
	border: 1.5px solid var(--brand-creme-dk);
	border-radius: 12px;
	padding: 1.5rem;
}

.iban-block {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1.25rem;
}

.iban-row {
	display: flex;
	align-items: baseline;
	gap: .75rem;
	font-size: .9rem;
}

.iban-label {
	font-weight: 600;
	color: var(--brand-muted);
	min-width: 80px;
	font-size: .82rem;
	flex-shrink: 0;
}

.iban-value {
	color: var(--brand-dark);
}

.iban-code {
	font-family: 'Source Code Pro', 'Courier New', monospace;
	font-size: .88rem;
	letter-spacing: .04em;
	background: var(--brand-creme);
	padding: 2px 8px;
	border-radius: 4px;
}

.confirm-ref-block {
	background: rgba(201, 126, 13, .07);
	border: 1px solid rgba(201, 126, 13, .22);
	border-radius: 8px;
	padding: .75rem .9rem;
	font-size: .85rem;
	color: var(--brand-dark);
	line-height: 1.55;
}

.confirm-ref-block i {
	color: var(--brand-orange);
}

.confirm-ref {
	color: var(--brand-green);
	font-size: 1rem;
}

.confirm-amount-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--brand-creme-dk);
	font-weight: 600;
	font-size: .9rem;
	color: var(--brand-dark);
}

.confirm-amount {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--brand-green);
}

.cheque-address-block {
	background: var(--brand-creme);
	border-radius: 8px;
	padding: 1rem 1.2rem;
	margin-bottom: 1.1rem;
	display: inline-block;
	min-width: 240px;
}

.cheque-address-line {
	font-size: .93rem;
	color: var(--brand-dark);
	line-height: 1.8;
}

.confirm-steps-list {
	display: flex;
	flex-direction: column;
	gap: .9rem;
}

.confirm-step-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: .88rem;
	color: var(--brand-dark);
	line-height: 1.6;
}

.confirm-step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--brand-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
	margin-top: 1px;
}

@media (max-width: 767.98px) {
	.confirm-layout {
		padding-top: 1.5rem;
	}

	.iban-row {
		flex-direction: column;
		gap: 2px;
	}

	.iban-label {
		min-width: unset;
	}
}
