/**
 * VDX Tattoo - Main CSS
 * Tailwind-inspired + Custom Styles
 * 
 * @package VDX_Tattoo
 * @since 1.0.0
 */

/* ========== RESET & BASE ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #1f2937;
	background: #ffffff;
	letter-spacing: -0.01em;
}

section[id] {
	scroll-margin-top: 80px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

::selection {
	background: #1f2937;
	color: #ffffff;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.25rem; }
}

/* ========== LAYOUT ========== */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-footer {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.site-branding .site-title {
	font-size: 1rem;
	font-weight: 500;
	color: #1f2937;
	letter-spacing: -0.02em;
	transition: color 0.3s ease;
}

.site-branding .site-title:hover {
	color: #6b7280;
}

/* Navigation Desktop */
.nav-desktop {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	transition: color 0.3s ease;
	cursor: pointer;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #1f2937;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #000000;
	transition: width 0.3s ease;
}

.nav-menu a.active::after {
	width: 100%;
}

.btn-cta {
	padding: 0.5rem 1rem;
	background: #000000;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 300;
	border-radius: 9999px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-cta:hover {
	background: #374151;
}

/* Burger Menu */
.burger-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.burger-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.burger-icon span {
	width: 20px;
	height: 2px;
	background: #1f2937;
	transition: all 0.3s ease;
}

/* Mobile Menu */
.nav-mobile {
	display: none;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.nav-mobile.active {
	display: block;
}

.nav-menu-mobile {
	list-style: none;
	margin: 0 0 1rem 0;
	padding: 0;
}

.nav-menu-mobile li {
	margin-bottom: 1rem;
}

.nav-menu-mobile a {
	display: block;
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	transition: color 0.3s ease;
}

.nav-menu-mobile a:hover,
.nav-menu-mobile a.active {
	color: #1f2937;
	font-weight: 500;
}

.btn-cta-mobile {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	background: #000000;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 300;
	border-radius: 9999px;
	text-align: center;
	transition: all 0.3s ease;
}

.btn-cta-mobile:hover {
	background: #374151;
}

@media (max-width: 768px) {
	.nav-desktop {
		display: none;
	}
	
	.burger-toggle {
		display: block;
	}
}

/* ========== FOOTER ========== */
.site-footer {
	padding: 4rem 1.5rem;
	border-top: 1px solid #e5e7eb;
	background: #f9fafb;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-title {
	font-size: 1rem;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.footer-text {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
	margin-bottom: 0.75rem;
}

.footer-menu,
.legal-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li,
.legal-menu li {
	margin-bottom: 0.5rem;
}

.footer-menu a,
.legal-menu a {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	transition: color 0.3s ease;
}

.footer-menu a:hover,
.legal-menu a:hover {
	color: #1f2937;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #1f2937;
	color: #ffffff;
	border-color: #1f2937;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

.copyright {
	font-size: 0.75rem;
	font-weight: 300;
	color: #9ca3af;
}

/* ========== SECTIONS ========== */
section {
	padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
	section {
		padding: 4rem 1.5rem;
	}
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #1f2937;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-intro {
	font-size: 1rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
	max-width: 42rem;
	margin: 0 auto;
}

/* ========== HERO SECTION ========== */
.section-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 5rem;
}

.hero-content {
	max-width: 64rem;
	margin: 0 auto;
	text-align: center;
}

.hero-location {
	margin-bottom: 1.5rem;
}

.hero-location span {
	font-size: 0.75rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9ca3af;
}

.hero-title {
	font-size: 5rem;
	font-weight: 300;
	color: #1f2937;
	margin-bottom: 2rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
	max-width: 32rem;
	margin: 0 auto 4rem;
}

.hero-image {
	aspect-ratio: 16 / 9;
	max-width: 48rem;
	margin: 0 auto;
	background: #f3f4f6;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.placeholder-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
}

@media (max-width: 1024px) {
	.hero-title {
		font-size: 3.5rem;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
}

/* ========== VISION SECTION ========== */
.section-vision {
	background: #f9fafb;
}

.vision-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 80rem;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.vision-grid {
		grid-template-columns: 1fr;
	}
}

.card-vision {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2.5rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #f3f4f6;
	transition: all 0.5s ease;
}

.card-vision:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(1.02);
}

.card-vision-inner {
	display: flex;
	gap: 1.5rem;
}

.card-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: #1f2937;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.icon-placeholder {
	font-size: 0.75rem;
	font-weight: 500;
}

.card-content {
	flex: 1;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.card-description {
	font-size: 1rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
}

/* ========== RÉALISATIONS SECTION ========== */
.realisations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

/* ========== FLIP CARD ========== */
.flip-card {
	perspective: 1000px;
	cursor: pointer;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	transition: transform 0.7s;
	transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.flip-card-front {
	background: #f3f4f6;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.flip-card-image {
	width: 100%;
	height: 100%;
}

.flip-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

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

.flip-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	color: #ffffff;
}

.flip-card-title {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.flip-card-placement {
	font-size: 0.75rem;
	font-weight: 300;
	color: #d1d5db;
}

.flip-card-back {
	background: #000000;
	color: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: rotateY(180deg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flip-card-back-content {
	text-align: center;
}

.flip-card-back .flip-card-title {
	font-size: 1.125rem;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.flip-card-description {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.625;
	color: #d1d5db;
	margin-bottom: 1.5rem;
}

.flip-card-meta {
	padding-top: 1.5rem;
	border-top: 1px solid #374151;
}

.flip-card-meta p {
	font-size: 0.75rem;
	font-weight: 300;
	color: #9ca3af;
}

/* ========== GALERIE SECTION ========== */
.section-galerie {
	background: #f9fafb;
}

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 3rem;
}

.filter-btn {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 300;
	background: #ffffff;
	color: #6b7280;
	border: 1px solid #e5e7eb;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	border-color: #9ca3af;
}

.filter-btn.active {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
}

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

.gallery-card {
	background: #ffffff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
	cursor: pointer;
}

.gallery-card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-card[data-type="project"] .gallery-card-image {
	aspect-ratio: 3 / 4;
}

.gallery-card[data-type="flash"] .gallery-card-image {
	aspect-ratio: 1 / 1;
}

.gallery-card-image {
	background: #f3f4f6;
	overflow: hidden;
}

.gallery-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

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

.gallery-card-info {
	padding: 1rem;
}

.gallery-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.gallery-card-title {
	font-size: 0.875rem;
	font-weight: 500;
	color: #1f2937;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gallery-card-badge {
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	white-space: nowrap;
}

.gallery-card-badge.project {
	background: #1f2937;
	color: #ffffff;
}

.gallery-card-badge.flash {
	background: #e5e7eb;
	color: #374151;
}

.gallery-card-price {
	font-size: 0.75rem;
	font-weight: 300;
	color: #6b7280;
}

/* Filtres JS */
.gallery-card.hidden {
	display: none;
}

/* ========== ACTUALITÉS SECTION ========== */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.card-news {
	background: #ffffff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #f3f4f6;
	transition: all 0.5s ease;
}

.card-news:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(1.02);
}

.card-news-image {
	aspect-ratio: 16 / 9;
	background: #f3f4f6;
	overflow: hidden;
}

.card-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-news-content {
	padding: 1.5rem;
}

.card-news-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.news-badge {
	font-size: 0.75rem;
	font-weight: 300;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
}

.news-badge.déplacement {
	background: #dbeafe;
	color: #1e40af;
}

.news-badge.annonce {
	background: #d1fae5;
	color: #065f46;
}

.news-date {
	font-size: 0.75rem;
	font-weight: 300;
	color: #6b7280;
}

.card-news-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.card-news-location {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	margin-bottom: 0.75rem;
}

.card-news-excerpt {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
}

/* ========== CONTACT SECTION ========== */
.section-contact {
	background: #f9fafb;
}

.contact-intro {
	margin-top: 1rem;
}

.contact-subtitle {
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.contact-form-wrapper {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 3rem;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #f3f4f6;
}

.form-placeholder {
	text-align: center;
	padding: 4rem 2rem;
	color: #6b7280;
}

@media (max-width: 768px) {
	.contact-form-wrapper {
		padding: 2rem 1.5rem;
	}
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 300;
	transition: all 0.3s ease;
	text-align: center;
	cursor: pointer;
}

.btn-primary {
	background: #000000;
	color: #ffffff;
}

.btn-primary:hover {
	background: #374151;
}

.btn-secondary {
	background: transparent;
	color: #6b7280;
	border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
	background: #f3f4f6;
	color: #1f2937;
}

/* ========== ARCHIVES & SINGLES ========== */
.archive-page,
.single-page {
	min-height: 100vh;
	padding-top: 8rem;
	padding-bottom: 4rem;
}

.archive-header {
	text-align: center;
	margin-bottom: 4rem;
}

.archive-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #1f2937;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.archive-description {
	font-size: 1rem;
	font-weight: 300;
	color: #6b7280;
	max-width: 42rem;
	margin: 0 auto;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.flashs-grid {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.archive-card {
	background: #ffffff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.archive-card:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.archive-card-image {
	display: block;
	background: #f3f4f6;
	overflow: hidden;
}

.archive-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.archive-card-content {
	padding: 1.5rem;
}

.archive-card-title {
	font-size: 1.125rem;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.archive-card-title a {
	transition: color 0.3s ease;
}

.archive-card-title a:hover {
	color: #6b7280;
}

.archive-card-meta,
.archive-card-price {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	margin-bottom: 0.5rem;
}

.archive-card-excerpt {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
	line-height: 1.625;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.pagination a,
.pagination span {
	padding: 0.5rem 1rem;
	background: #ffffff;
	color: #6b7280;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.pagination a:hover {
	background: #f3f4f6;
	color: #1f2937;
}

.pagination .current {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
}

/* Singles */
.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #1f2937;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.entry-meta,
.entry-meta-top {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.5rem;
}

.entry-meta span,
.entry-meta-top span,
.entry-meta-top time {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
}

.meta-badge {
	font-size: 0.75rem;
	font-weight: 300;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: #e5e7eb;
	color: #374151;
}

.meta-badge.flash {
	background: #e5e7eb;
	color: #374151;
}

.entry-image {
	margin-bottom: 2rem;
	border-radius: 1rem;
	overflow: hidden;
}

.entry-image img {
	width: 100%;
	height: auto;
}

.entry-content {
	font-size: 1rem;
	font-weight: 300;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 3rem;
}

.entry-content p {
	margin-bottom: 1rem;
}

.flash-notice {
	padding: 1rem;
	background: #f3f4f6;
	border-radius: 0.5rem;
	margin-top: 2rem;
}

.entry-footer {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.entry-location,
.entry-event-date {
	font-size: 0.875rem;
	font-weight: 300;
	color: #6b7280;
}

/* 404 */
.error-404-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 1.5rem;
}

.page-header {
	margin-bottom: 2rem;
}

.page-title {
	font-size: 3rem;
	font-weight: 300;
	color: #1f2937;
	margin-bottom: 1rem;
}

.page-content {
	max-width: 32rem;
	margin: 0 auto;
}

.error-actions {
	margin-top: 2rem;
}

/* ========== PAGE TEMPLATE ========== */
.page-template {
	min-height: 100vh;
	padding-top: 8rem;
	padding-bottom: 4rem;
}

.page-content .entry-content {
	max-width: 65ch;
	margin: 0 auto;
}

/* ========== GALLERY CARD SLIDER ========== */
.gallery-card-image.vdx-slider {
  position: relative;
  overflow: hidden;
}

.vdx-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.vdx-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vdx-slide--active {
  opacity: 1;
}

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

.vdx-slider-prev,
.vdx-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.vdx-slider:hover .vdx-slider-prev,
.vdx-slider:hover .vdx-slider-next {
  opacity: 1;
}

.vdx-slider-prev { left: 8px; }
.vdx-slider-next { right: 8px; }

.vdx-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.vdx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}

.vdx-dot--active {
  background: #fff;
}

/* Mobile : dots toujours visibles, flèches cachées */
@media (max-width: 768px) {
  .vdx-slider-prev,
  .vdx-slider-next {
    display: none;
  }
	.vdx-btn-instagram {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: inherit;
	color: #111;
	background: transparent;
	border: 1.5px solid #111;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.vdx-btn-instagram:hover {
	background: #111;
	color: #fff;
}
	/* FIX VISION GRID */
.vision-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr !important;
  }
}
}