/* =============================================
   POPUP VERANO WISHOME
   Módulo aislado — eliminable sin impacto
   ============================================= */

/* =============================================
   POPUP VERANO WISHOME
   Módulo aislado — eliminable sin impacto
   ============================================= */

#wishome-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  box-sizing: border-box;
}

#wishome-popup-overlay.wh-visible {
  display: block;
}

#wishome-popup-verano {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: calc(100vw - 32px);
  max-width: 560px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', sans-serif;
  z-index: 100000;
}

/* Imagen superior */
#wishome-popup-verano .wh-popup-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Botón cerrar */
#wishome-popup-verano .wh-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 10;
  transition: background 0.2s;
}

#wishome-popup-verano .wh-popup-close:hover {
  background: #fff;
}

/* Contenido texto */
#wishome-popup-verano .wh-popup-body {
  padding: 24px 28px 28px;
}

#wishome-popup-verano .wh-popup-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.3;
}

#wishome-popup-verano .wh-popup-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 22px;
}

#wishome-popup-verano .wh-popup-body p strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Botones de casas */
#wishome-popup-verano .wh-popup-casas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#wishome-popup-verano .wh-popup-casas a {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid #065C4A;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  color: #065C4A;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

#wishome-popup-verano .wh-popup-casas a:hover {
  background: #065C4A;
  color: #fff;
}

/* Responsive mobile */
@media (max-width: 600px) {
  #wishome-popup-verano .wh-popup-img {
    height: 200px;
  }

  #wishome-popup-verano .wh-popup-body {
    padding: 18px 18px 22px;
  }

  #wishome-popup-verano .wh-popup-body h2 {
    font-size: 18px;
  }

  #wishome-popup-verano .wh-popup-casas a {
    font-size: 12px;
    padding: 8px 14px;
  }
}
