/* LES-EXPO Popup Styles */
.lesexpo-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  animation: lesexpo-popup-fadein 0.5s;
}
.lesexpo-popup-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.lesexpo-popup-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.lesexpo-popup-img {
  display: block;
  max-width: 80vw;
  max-height: 70vh;
  width: 100%;
  height: auto;
  border-radius: 0 0 18px 18px;
  cursor: pointer;
  transition: transform 0.2s;
}
.lesexpo-popup-img:hover {
  transform: scale(1.02);
}
.lesexpo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: none;
  color: #222;
  border: none;
  border-radius: 0;
  width: 36px;
  height: 36px;
  font-size: 2.2rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  box-shadow: none;
  outline: none;
  line-height: 1;
  padding: 0;
}
.lesexpo-popup-close:hover {
  color: #e74c3c;
  background: none;
}
@media (max-width: 600px) {
  .lesexpo-popup-content {
    max-width: 98vw;
    max-height: 80vh;
    border-radius: 10px;
  }
  .lesexpo-popup-img {
    max-width: 95vw;
    max-height: 50vh;
    border-radius: 0 0 10px 10px;
  }
  .lesexpo-popup-close {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    top: 6px;
    right: 6px;
  }
}
@keyframes lesexpo-popup-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
