/* --- Style Provence Tour Offres Dynamiques --- */
#pto-dynamic-root { position: relative; z-index: 99999; }

.pto-dynamic-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  cursor: pointer;
  animation: pulse 2s infinite;
  z-index: 100000;
}

.pto-dynamic-btn img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid gold;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255,215,0,0.7);
}

.pto-dynamic-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  text-align: center;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255,215,0,0.8); }
  50% { box-shadow: 0 0 25px rgba(255,215,0,1); }
  100% { box-shadow: 0 0 10px rgba(255,215,0,0.8); }
}

.pto-dynamic-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 100001;
}

.pto-dynamic-popup-inner {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
  margin: 20px auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  scrollbar-width: thin;
  scrollbar-color: #b8860b #f7f7f7;
}

.pto-dynamic-popup-inner::-webkit-scrollbar {
  width: 8px;
}
.pto-dynamic-popup-inner::-webkit-scrollbar-thumb {
  background-color: #b8860b;
  border-radius: 10px;
}

.pto-dynamic-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.pto-dynamic-images img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pto-dynamic-close {
  background: none;
  border: none;
  font-size: 32px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: #333;
}

.no-offer {
  font-size: 1.1em;
  color: #333;
  padding: 30px;
  line-height: 1.6;
}
