/* ==============================
   REVIEWS & AVATARS
   ============================== */
.review-stars {
	font-size: 30px;
	color: var(--color-fresh);
}

.review-avatar {
	float: left;
	margin-right: calc(var(--gut)/2);
	height: 60px;
	border-radius: 50%;
}

/* ==============================
   GENERAL POST STYLES
   ============================== */
.inside-pad,
.post-txt.inside-pad {
	background-color: var(--color-light);
	padding: calc(var(--gut)*1) calc(var(--gut)/2);
	border-radius: 6px;
}

.post .post-title {
	font-size: var(--fs-4);
}

/* ==============================
   TOAD POST
   ============================== */
.post.toad {
	margin-bottom: calc(var(--gut)*1);
}

.post.toad h2.post-title {
	font-size: var(--fs-5);
	font-weight: normal;
}

/* ==============================
   GRID CONTAINERS - Responsive
   ============================== */
#bidules-container,
#adresse-container {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: var(--gut) !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Page Edition - 6 colonnes */
#bidules-container.editions-grid {
	grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 1441px) {
	#bidules-container,
	#adresse-container {
		grid-template-columns: repeat(5, 1fr);
	}

	#bidules-container.editions-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (max-width: 1400px) {
	#bidules-container,
	#adresse-container {
		grid-template-columns: repeat(4, 1fr);
	}

	#bidules-container.editions-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (max-width: 1200px) {
	#bidules-container.editions-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

@media (max-width: 992px) {
	#bidules-container,
	#adresse-container {
		grid-template-columns: repeat(3, 1fr);
	}

	#bidules-container.editions-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	#bidules-container,
	#adresse-container {
		grid-template-columns: repeat(2, 1fr);
	}

	#bidules-container.editions-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* xs: 1 colonne, 80% de largeur, centrÃ© */
@media (max-width: 576px) {
	#bidules-container,
	#adresse-container {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: calc(var(--gut) / 2) !important;
		grid-auto-flow: row !important;
		justify-items: center !important;
	}

	#bidules-container.editions-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		justify-items: center !important;
	}

	/* Posts mario : 80% de largeur, centrÃ© */
	#adresse-container > .post.mario,
	#bidules-container > .post.mario {
		grid-column: span 1 !important;
		width: 80% !important;
		max-width: none !important;
		min-width: 0 !important;
		flex: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* Grossir les textes en xs */
	.post.mario .mario-txt-overlay .post-title {
		font-size: calc(var(--fs-4) * 1.2) !important;
	}

	.post.mario h3.mario-subtitle {
		font-size: calc(var(--fs-6) * 1.2) !important;
	}
}

/* ==============================
   MARIO POST - Cards Ã©lÃ©gantes avec effets hover
   ============================== */

/* Structure de base */
.post.mario {
	position: relative;
	overflow: hidden;
	margin-bottom: var(--gut);
	background: transparent;
	cursor: pointer;
	transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-radius: 0; /* Pas de coins arrondis */
}

.post.mario:hover {
//	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Wrapper image avec ratio 1:2 */
.post.mario .mario-img-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 150%; /* Ratio 1:2 (hauteur = 2x largeur) */
	height: 0;
	overflow: hidden; /* EmpÃªche tout dÃ©bordement */
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-color: #f0f0f0; /* Couleur de fond pendant le chargement */
	border-radius: 0;
}

/* Skeleton loader - Effet shimmer pendant le chargement */
.post.mario .mario-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.4) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	z-index: 1;
	pointer-events: none;
}

/* Animation shimmer */
@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

/* Masquer le skeleton une fois l'image chargÃ©e */
.post.mario .mario-img-wrapper:not(.mario-loading) .mario-skeleton {
	display: none;
}

/* Transition douce pour le background-color quand l'image est chargÃ©e */
.post.mario .mario-img-wrapper.mario-loading {
	background-color: #f0f0f0;
}

.post.mario .mario-img-wrapper:not(.mario-loading) {
	background-color: transparent;
	transition: background-color 0.3s ease;
}

/* Pas de zoom sur l'image - supprimÃ© pour Ã©viter les problÃ¨mes de clignotement */

/* Lien invisible sur toute la card */
.post.mario .mario-img-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	text-indent: -9999px;
}

/* Gradient toujours visible */
.post.mario .mario-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.35) 30%,
		rgba(0, 0, 0, 0.15) 60%,
		rgba(0, 0, 0, 0.05) 80%,
		transparent 100%
	);
	opacity: 1; /* Toujours visible */
	z-index: 2;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay supplÃ©mentaire pour le hover - animation smooth */
.post.mario .mario-gradient::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.15) 0%,
		rgba(0, 0, 0, 0.1) 30%,
		rgba(0, 0, 0, 0.1) 60%,
		rgba(0, 0, 0, 0.05) 80%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	pointer-events: none;
}

.post.mario:hover .mario-gradient::before {
	opacity: 1;
}

/* Texte overlay - Toujours visible */
.post.mario .mario-txt-overlay {
	position: absolute;
	bottom: 0px; /* Espace pour la ligne de catÃ©gorie */
	left: 0;
	right: 0;
	padding: calc(var(--gut) * 2) calc(var(--gut) * 1) calc(var(--gut) * 1) calc(var(--gut) * 1); /* Plus d'espace en haut */
	color: var(--color-light);
	z-index: 3;
	opacity: 1; /* Toujours visible */
	transform: translateY(0);
	transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: bottom;
	pointer-events: none; /* Ne pas bloquer les clics sur le lien de la card */
}

/* Au hover avec CTA ouvert, remonter le texte */
.post.mario:hover .mario-txt-overlay {
	bottom: 60px; /* 60px ligne catÃ©gorie + 60px bouton CTA */
}

/* IcÃ´ne de type/style - Dans le bloc texte */
.post.mario .mario-type-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 50%; /* Arrondi complet */
	margin-top: 0; /* Pas de margin-top pour l'alignement vertical */
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: help; /* Curseur pour indiquer le tooltip */
	pointer-events: auto; /* Permettre les Ã©vÃ©nements de survol pour le tooltip */
	z-index: 6; /* Au-dessus de la boÃ®te de notation pour que le tooltip passe au-dessus */
}

.post.mario:hover .mario-type-icon {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.15);
}

.post.mario .mario-type-icon svg {
	width: 16px; /* RÃ©duit de 18px Ã  16px */
	height: 16px;
	color: var(--color-light);
}

.post.mario .mario-type-icon svg path,
.post.mario .mario-type-icon svg circle,
.post.mario .mario-type-icon svg rect,
.post.mario .mario-type-icon svg polygon,
.post.mario .mario-type-icon svg polyline,
.post.mario .mario-type-icon svg line,
.post.mario .mario-type-icon svg ellipse {
	stroke: var(--color-light) !important;
	fill: transparent !important;
	stroke-width: 2px !important;
}

/* Fallback texte dans l'icÃ´ne */
.post.mario .mario-type-icon span {
	color: white;
	font-size: 9px; /* RÃ©duit de 10px Ã  9px */
	font-weight: bold;
	line-height: 1;
}

/* Tooltip pour le nom du type - Ã€ droite de l'icÃ´ne */
.post.mario .mario-type-icon::before {
	content: attr(data-tooltip);
	position: absolute;
	left: calc(100% + 8px); /* Ã€ droite de l'icÃ´ne */
	top: 50%;
	transform: translateY(-50%) translateX(-5px);
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 10px; /* Plus petit */
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 15; /* Au-dessus de la boÃ®te de notation */
}

/* FlÃ¨che du tooltip - Pointant vers la gauche */
.post.mario .mario-type-icon::after {
	content: '';
	position: absolute;
	left: calc(100% + 3px); /* Juste Ã  droite de l'icÃ´ne */
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid rgba(0, 0, 0, 0.9); /* FlÃ¨che vers la gauche */
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 15; /* Au-dessus de la boÃ®te de notation */
}

/* Afficher le tooltip au hover */
.post.mario .mario-type-icon:hover::before,
.post.mario .mario-type-icon:hover::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* Groupe d'icÃ´nes (type + rating) */
.post.mario .mario-icons-group {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: calc(var(--gut) / 2);
	z-index: 1;
	vertical-align: middle; /* Alignement vertical */
}

/* BoÃ®te de notation Google Maps */
.post.mario .mario-rating-box {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 32px; /* MÃªme hauteur que l'icÃ´ne de type */
	padding: 0 8px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px; /* Coins arrondis */
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: help;
	pointer-events: auto;
	z-index: 5;
	margin-top: 0; /* Pas de margin-top pour l'alignement vertical */
	vertical-align: middle; /* Alignement vertical */
}

.post.mario:hover .mario-rating-box {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.15); /* MÃªme scale que l'icÃ´ne de type */
}

.post.mario .mario-rating-box .mario-star-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.post.mario .mario-rating-box .mario-rating-value {
	color: var(--color-light);
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

/* Tooltip pour le nombre d'avis - Ã€ droite de la boÃ®te */
.post.mario .mario-rating-box::before {
	content: attr(data-tooltip);
	position: absolute;
	left: calc(100% + 8px);
	top: 50%;
	transform: translateY(-50%) translateX(-5px);
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 10;
}

/* FlÃ¨che du tooltip - Pointant vers la gauche */
.post.mario .mario-rating-box::after {
	content: '';
	position: absolute;
	left: calc(100% + 3px);
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid rgba(0, 0, 0, 0.9);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}

/* Afficher le tooltip au hover */
.post.mario .mario-rating-box:hover::before,
.post.mario .mario-rating-box:hover::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.post.mario .mario-txt-overlay .post-title {
	color: var(--color-light);
	font-size: var(--fs-4);
	font-weight: 600;
	margin-bottom: calc(var(--gut) / 4);
	line-height: 1.2;
}

.post.mario .mario-code {
	display: none;
}

.post.mario h3.mario-subtitle {
	color: var(--color-light);
	font-size: var(--fs-6);
	font-weight: normal;
	margin: 0;
	opacity: 0.9;
}

/* Ligne de catÃ©gorie (bottom line avec couleur) */
.post.mario .mario-category-line {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--color-fresh); /* Couleur par dÃ©faut */
	z-index: 4;
	transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: bottom; /* S'agrandit depuis le bas vers le haut */
	pointer-events: none; /* Ne pas bloquer les clics sur le lien de la card */
}

/* Couleur dynamique depuis la catÃ©gorie Ã‰tablissement */
.post.mario[data-category-color] .mario-category-line {
	background: var(--category-color);
}

/* Au hover, la ligne s'agrandit vers l'intÃ©rieur */
.post.mario:hover .mario-category-line {
	height: 60px;
}

/* Bouton CTA - ApparaÃ®t dans la ligne agrandie */
.post.mario .mario-cta-btn {
	position: absolute !important;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: transparent;
	color: var(--color-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: var(--fs-6); /* Texte plus petit */
	text-transform: uppercase;
	letter-spacing: 0.08em;
	z-index: 10; /* Au-dessus du lien de la card (z-index: 1) et de tout le reste */
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
				transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
	pointer-events: none;
	text-decoration: none;
	border: none; /* Pour les boutons */
	cursor: pointer;
	font-family: inherit; /* HÃ©riter de la police */
}

.post.mario:hover .mario-cta-btn {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto; /* Toujours cliquable au hover */
}

.post.mario .mario-cta-btn:hover {
	text-decoration: underline;
}

/* Optimisations performance */
.post.mario .mario-txt-overlay,
.post.mario .mario-category-line,
.post.mario .mario-cta-btn {
	will-change: bottom, height, opacity, transform;
}

.post.mario:not(:hover) {
	will-change: auto;
}

/* Responsive Mario */
@media (max-width: 768px) {
	.post.mario .mario-txt-overlay .post-title {
		font-size: var(--fs-5);
	}

	.post.mario h3.mario-subtitle {
		font-size: 0.85rem;
	}

	.post.mario:hover .mario-txt-overlay {
		bottom: 100px;
	}

	.post.mario:hover .mario-category-line {
		height: 50px;
	}

	.post.mario .mario-cta-btn {
		height: 50px;
		font-size: 0.75rem; /* Encore plus petit sur mobile */
	}
}

/* ==============================
   EDITION CARD - Animation 3D livre
   ============================== */
.post.edition {
	margin-bottom: var(--gut);
	perspective: 3000px;
}

.post.edition a {
	display: block;
	position: relative;
}

.post.edition .edition-ville {
	display: block;
	font-size: 1.3rem;
}
.post.edition .edition-region {
	display: block;
	font-size: 1rem;
}

/* Zone carrÃ©e de couleur en haut de la couverture */
.post.edition .edition-color-square {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 15px;
	z-index: 20;
	border-radius: 0px 0px 3px 3px;
}

/* Container du livre */
.post.edition .edition-book {
	position: relative;
	display: block;
	width: 100%;
	height: 260px;
	border-radius: 0 30px 30px 0;
	overflow: visible;
	transition: transform 0.3s ease;
}

.post.edition:hover .edition-book {
	transform: translateY(-8px);
}

/* Face avant du livre */
.post.edition .edition-front {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}

.post.edition .edition-front > div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Couverture du livre */
.post.edition .edition-cover {
	border-radius: 0 15px 15px 0;
	background: radial-gradient(ellipse 150% 150% at top right, #e81a5a 0%, var(--color-fresh) 60%, var(--color-fresh) 100%);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 30px;
	box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.15);
	overflow: visible;
}

.post.edition .edition-cover::after {
	content: '';
	position: absolute;
	top: 0;
	left: 10px;
	bottom: 0;
	width: 3px;
	background: rgba(0, 0, 0, 0.1);
}


.edition-wrapper {
	text-align: center;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Fond fresh pour la card Ã©dition - FORCER la couleur */
.post.edition .edition-logo-bg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.edition-logo-wrapper {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: calc(var(--gut) / 2);
	padding-bottom: calc(var(--gut) *0 );
	width: 100%;
}

.post.edition .edition-logo-wrapper svg {
	width: 50%;
	max-width: 200px;
	margin: 0 auto;
	height: auto;
	display: block;
	filter: brightness(0) invert(1);
}


.post.edition .edition-text-overlay .post-title {
	color: white;
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.post.edition .edition-text-overlay .post-title small {
	margin: 0 0 8px 0;
	font-size: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 400;
	opacity: 0.9;
}

/* Skeleton loader pour les cards Ã©dition */
.post.edition .edition-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.4) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	z-index: 1;
	pointer-events: none;
}

/* Masquer le skeleton une fois l'image chargÃ©e */
.post.edition .post-img:not(.edition-loading) .edition-skeleton {
	display: none;
}

/* Transition douce pour le background-color quand l'image est chargÃ©e */
.post.edition .post-img.edition-loading {
	background-color: #f0f0f0;
}

.post.edition .post-img:not(.edition-loading) {
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.post.edition .post-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post.edition .post-txt {
	padding: 0;
	box-shadow: none;
	position: relative;
}

/* Bouton CTA pour les cards edition */
.post.edition .edition-cta-btn {
	width: 100%;
	margin-top: calc(var(--gut) * 0.75);
	padding: calc(var(--gut) * 0.5) calc(var(--gut) * 1);
	background: var(--color-dark);
	color: var(--color-light);
	border: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: var(--fs-6);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.3s ease;
}

.post.edition .edition-cta-btn:hover {
	background: var(--color-fresh);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Les liens de la card edition doivent Ãªtre cliquables normalement */
.post.edition .edition-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* Liens sous chaque post edition */
.post.edition .edition-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post.edition .edition-links a {
	text-decoration: none;
	color: var(--color-dark);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.post.edition .edition-links a:hover {
	color: var(--color-fresh);
}

/* ==============================
   PAGE SHOP - Effet livre avec pages
   ============================== */
.page-shop .post.edition {
	position: relative;
	overflow: visible;
	border-radius: 0 20px 20px 0;
	/* padding-left: 10px; */
}

/* Fond avec dÃ©gradÃ© comme un livre */
.page-shop .post.edition .post-img {
	background: linear-gradient(to right, var(--color-fresh) 0%, var(--color-fresh) 1%, rgba(255, 255, 255, 0) 3%),
				linear-gradient(-45deg, var(--color-fresh) 0%, rgba(211, 0, 68, 0.9) 46%, rgba(180, 0, 58, 0.8) 90%, var(--color-fresh) 100%);
}

/* DÃ©gradÃ© subtil en haut Ã  droite - utiliser un Ã©lÃ©ment interne */
.page-shop .post.edition .edition-logo-bg::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
	z-index: 3;
	border-radius: 0 20px 0 0;
}

/* Effet de livre avec pages - sans box-shadow */
.page-shop .post.edition {
	transition: transform 0.3s ease;
}

.page-shop .post.edition:hover {
	transform: translateY(-2px);
}


/* ==============================
   POST ADRESSE - Carte restaurant avec rating et icÃ´nes
   ============================== */
.post.post-adresse {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.post.post-adresse .adresse-img-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 66.666%; /* Ratio 2/3 */
	height: 0;
	overflow: hidden;
}

.post.post-adresse .adresse-img-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--bg-image-url);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post.post-adresse:hover .adresse-img-wrapper::before {
	transform: scale(1.05);
}

.post.post-adresse .adresse-img-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	text-indent: -9999px;
}

.post.post-adresse .adresse-txt-overlay {
	position: absolute;
	bottom: 60px; /* Laisser de la place pour la barre en bas */
	left: 0;
	right: 0;
	padding: calc(var(--gut) * 1.5) calc(var(--gut) * 1);
	color: var(--color-light);
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
	transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay supplÃ©mentaire pour le hover - animation smooth */
.post.post-adresse .adresse-txt-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	pointer-events: none;
	z-index: -1;
}

.post.post-adresse:hover .adresse-txt-overlay::before {
	opacity: 1;
}

.post.post-adresse .adresse-title-link {
	color: var(--color-light);
	text-decoration: none;
	display: block;
}

.post.post-adresse .adresse-title-link:hover {
	color: var(--color-fresh);
}

.post.post-adresse .adresse-title {
	color: var(--color-light);
	font-size: var(--fs-3);
	font-weight: bold;
	margin: 0 0 calc(var(--gut) / 3) 0;
	line-height: 1.2;
}

.post.post-adresse .adresse-subtitle {
	display: flex;
	align-items: center;
	gap: 0.25em;
	color: var(--color-light);
	font-size: var(--fs-5);
	margin: 0;
	opacity: 0.9;
}

.post.post-adresse .adresse-departement {
	opacity: 0.8;
	font-weight: 400;
}

.post.post-adresse .adresse-bottom-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	padding: calc(var(--gut) / 2) calc(var(--gut) * 1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 3;
}

.post.post-adresse .adresse-rating {
	display: flex;
	align-items: center;
	gap: calc(var(--gut) / 3);
	color: var(--color-light);
	font-size: var(--fs-5);
}

.post.post-adresse .rating-value {
	font-weight: bold;
}

.post.post-adresse .rating-star {
	color: var(--color-fresh);
	font-size: 1.2em;
}

.post.post-adresse .adresse-icons {
	display: flex;
	gap: calc(var(--gut) / 2);
	align-items: center;
}

.post.post-adresse .adresse-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-light);
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.post.post-adresse .adresse-icon:hover {
	background: var(--color-fresh);
	transform: scale(1.1);
}

/* Tooltip personnalisÃ© pour les icÃ´nes adresse */
.post.post-adresse .adresse-icon[data-tooltip]::before {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 8px;
	padding: 6px 10px;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	transform: translateX(-50%) translateY(4px);
	z-index: 1000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: var(--font-primary);
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

.post.post-adresse .adresse-icon[data-tooltip]::after {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 2px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid rgba(0, 0, 0, 0.9);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 1001;
}

.post.post-adresse .adresse-icon[data-tooltip]:hover::before,
.post.post-adresse .adresse-icon[data-tooltip]:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ==============================
   LOADER GLOBAL - Page adresse
   ============================== */
.adresse-loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 9999;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

/* ThÃ¨me sombre */
body.theme-dark .adresse-loader,
body.theme-fresh .adresse-loader {
	background-color: rgba(0, 0, 0, 0.95);
}

.adresse-loader.hidden {
	display: none !important;
}

.loader-spinner {
	width: 60px;
	height: 60px;
	border: 5px solid rgba(0, 0, 0, 0.1);
	border-top-color: var(--color-fresh, #0073aa);
	border-right-color: var(--color-fresh, #0073aa);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-bottom: calc(var(--gut) * 2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loader-text {
	color: var(--color-dark, #333);
	font-size: var(--fs-5, 1rem);
	margin: 0;
	opacity: 0.8;
	font-weight: 500;
	letter-spacing: 0.02em;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive loader */
@media (max-width: 768px) {
	.adresse-loader {
		min-height: 50vh;
		padding: calc(var(--gut) * 4) calc(var(--gut) * 1);
	}

	.loader-spinner {
		width: 50px;
		height: 50px;
		border-width: 4px;
	}

	.loader-text {
		font-size: var(--fs-6, 0.875rem);
	}
}

.post.shop {
	margin-bottom: calc(var(--gut)*1);
}

.post.shop .inside {
	background-color:#fff;
	padding-bottom: calc(var(--gut)*1);
	border-radius:0px 30px 30px 0px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.post.shop .inside:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}
.post.shop .post-txt {
	text-align:center;
}



.post.shop img {
	border-radius:30px;

}


.post.shop h2{
	text-align:center;
	color:var(--color-text-dark);
	line-height:1.62rem

}

.post.shop h2 .passeport-gourmand,
.post.shop h2 .region {
	font-size:10px;
	color:var(--color-placeholder);
	letter-spacing:2px;
	text-transform:uppercase;
	display:block;
	font-weight:400;
	padding-bottom:0px;

}

.post.shop h2 .region{
	text-transform:uppercase;
	display:block;
	color:var(--color-text-dark);
	font-weight:600;
}

.post.waluigi  {
	font-size:0.8rem;
	margin-bottom: calc(var(--gut)*1);

}

.post.waluigi .inside {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	padding: var(--gut);
	border-radius:30px;
}


.post.waluigi h4 {
	border-top:1px solid rgba(255,255,255,0.4);
	margin-bottom: calc(var(--gut)/2);
	font-size:1.2rem;
}

.post.waluigi a {
	text-decoration:none;
}


.post.waluigi .social-links-inline {
	display: flex;
	gap: 6px;
	justify-content: left;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.post.waluigi .social-links-inline .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #fff;
	transition: all 0.3s ease;
	padding: 0;
	/* box-shadow: 0px 2px 5px rgba(0,0,0,0.1); */
}

.post.waluigi .social-links-inline .social-link:hover {
	transform: translateY(-4px);
	box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.post.waluigi .social-links-inline .social-icon {
	/* width: 32px !important; */
	/* height: 32px !important; */
}

/* Remove old social grid styling */
.post.waluigi .social-links-grid {
	display: none;
}


.post.luigi {
	padding: var(--gut);
	background: #fff;
	border-radius: 10px;
	margin-bottom: var(--gut);
}
