.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-container .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-container.pa-bg-clipped-yes.premium-gbadge-custom .premium-global-badge-{{ID}} .premium-badge-text, .elementor-widget-container:not(.premium-gbadge-custom) .premium-global-badge-{{ID}} .premium-badge-container, .elementor-widget-container.premium-gbadge-custom:not(.pa-bg-clipped-yes) .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-704 .elementor-element.elementor-element-be3f505{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-html .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-html.pa-bg-clipped-yes.premium-gbadge-custom .premium-global-badge-{{ID}} .premium-badge-text, .elementor-widget-html:not(.premium-gbadge-custom) .premium-global-badge-{{ID}} .premium-badge-container, .elementor-widget-html.premium-gbadge-custom:not(.pa-bg-clipped-yes) .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-html .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-704 .elementor-element.elementor-element-eb7a56e{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-eb7a56e */.map-section {
  position: relative;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* --- BANDEAU PRINCIPAL (hauteur 120px) --- */
.map-toggle {
  position: relative;
  background: #fff;
  color: #111;
  text-align: center;
  height: 120px; /* hauteur modifiée */
  cursor: pointer;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-text {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.toggle-text svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}

.toggle-text.open {
  display: flex;
}

.map-section.active .toggle-text.open {
  display: none;
}
.map-section.active .toggle-text.close {
  display: flex;
}

/* --- APERÇU DE LA CARTE (flouté) --- */
.map-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  filter: blur(2px);
  transform: scale(1.1);
}

/* Hover : apparition du fond derrière la bande */
.map-toggle:hover .map-preview {
  opacity: 0.25;
}

/* --- CARTE PRINCIPALE --- */
.map-container {
  height: 0;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25,1.55,0.45,1.4);
  pointer-events: none;
}

.map-section.active .map-container {
  height: 450px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}/* End custom CSS */