/** Shopify CDN: Minification failed

Line 20:10 Unexpected "{"
Line 20:19 Expected ":"
Line 21:14 Expected identifier but found whitespace
Line 21:16 Unexpected "{"
Line 21:25 Expected ":"
Line 21:51 Expected ":"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:28 Expected ":"
Line 22:57 Expected ":"
... and 34 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Padding */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top_desktop }}px;
    padding-bottom: {{ section.settings.padding_bottom_desktop }}px;
  }
}

.plan-eclate {
  position: relative;
}

/* Wrapper avec fond (dans le container seulement) */
.plan-eclate__box {
  padding: 28px 24px;
}

@media (min-width: 992px) {
  .plan-eclate__box {
    padding: 10px 32px;
  }
}

.plan-eclate__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .plan-eclate__wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Texte */
.plan-eclate__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-eclate__list p {
  margin: 0 0 6px;
}

/* ----------------------------- */
/*   IMAGE TYPE BANNIÈRE         */
/* ----------------------------- */

.vue-eclate__media {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Inner : contrôle la taille réelle de l’image */
.vue-eclate__media-inner {
  position: relative;
  width: 100%;
  height: auto;
}

/* Image principale & highlight */
.vue-eclate__image,
.vue-eclate__image-highlight {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Highlight par dessus */
.vue-eclate__image-highlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.vue-eclate__media.is-hovering .vue-eclate__image-highlight {
  opacity: 1;
}

/* Zones */
.vue-eclate__hotspot-area {
  position: absolute;
  cursor: pointer;
  transform-origin: center;
}

/* Bordures par défaut */
.vue-eclate__hotspot-area {
  border: 1px dashed rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.03);
}

.vue-eclate__hotspot-area:hover {
  border-color: rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.06);
}

/* Option : masquer les bordures */
.vue-eclate--no-borders .vue-eclate__hotspot-area,
.vue-eclate--no-borders .vue-eclate__hotspot-area:hover {
  border: none;
  background: transparent;
}

/* Bouton + */
.vue-eclate__hotspot-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--hotspot-size);
  height: var(--hotspot-size);
  border-radius: 50%;
  background: var(--hotspot-bg);
  color: var(--hotspot-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--hotspot-size) * 0.6);
  font-weight: 600;
  z-index: 2;
}

/* Animation pulse */
.vue-eclate__hotspot-label::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--hotspot-bg);
  opacity: 0.35;
  animation: hotspot-pulse 2s infinite;
  z-index: -1;
}

@keyframes hotspot-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.plan-eclate__bottom-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}
/* Padding section */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top_desktop }}px;
    padding-bottom: {{ section.settings.padding_bottom_desktop }}px;
  }
}

/* Vue en éclaté */
.vue-eclate {
  position: relative;
}

.vue-eclate__inner {
  {% if section.settings.full_width == false %}
    max-width: 1200px;
    margin: 0 auto;
  {% endif %}
}

.vue-eclate__media {
  position: relative;
  width: 100%;
}

.vue-eclate__image {
  display: block;
  width: 100%;
  height: auto;
}

/* Image highlight */
.vue-eclate__image-highlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(0 100% 100% 0);
}

.vue-eclate__media.is-hovering .vue-eclate__image-highlight {
  opacity: 1;
}

/* Zones */
.vue-eclate__hotspot-area {
  position: absolute;
  cursor: pointer;
  transform-origin: center;
}

/* Bordures par défaut */
.vue-eclate__hotspot-area {
  border: 1px dashed rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.03);
}

/* Hover */
.vue-eclate__hotspot-area:hover {
  border-color: rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.06);
}

/* Option : masquer les bordures */
.vue-eclate--no-borders .vue-eclate__hotspot-area,
.vue-eclate--no-borders .vue-eclate__hotspot-area:hover {
  border: none;
  background: transparent;
}

/* Badge + */
.vue-eclate__hotspot-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--hotspot-size);
  height: var(--hotspot-size);
  border-radius: 50%;
  background: var(--hotspot-bg);
  color: var(--hotspot-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--hotspot-size) * 0.6);
  font-weight: 600;
  z-index: 2;
}

/* Pulse animation */
.vue-eclate__hotspot-label::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--hotspot-bg);
  opacity: 0.35;
  animation: hotspot-pulse 2s infinite;
  z-index: -1;
}

@keyframes hotspot-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}