/* Property Card Skeleton - Mismo layout que PropertyCard */

.property-card-skeleton {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06), 0 1px 0 rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.04);
  height: 100%;
}

/* Contenedor de imagen - aspect ratio 16/10 igual que PropertyCard */
.skeleton-image-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(180deg, #F7F8FA 0%, #F3F4F6 100%);
}

.skeleton-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Badge placeholder - posición igual que .property-badge */
.skeleton-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 70px;
  height: 24px;
  background: linear-gradient(
    90deg,
    rgba(243, 244, 246, 0.9) 0%,
    rgba(229, 231, 235, 0.9) 50%,
    rgba(243, 244, 246, 0.9) 100%
  );
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

/* Contenido - padding 1.25rem igual que .property-info */
.skeleton-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1;
}

/* Título - altura similar a h3.property-name */
.skeleton-title {
  height: 24px;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  border-radius: 4px;
  width: 85%;
  animation: shimmer 1.5s infinite;
}

/* Precio - altura similar a .property-price */
.skeleton-price {
  height: 28px;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  border-radius: 4px;
  width: 50%;
  animation: shimmer 1.5s infinite;
}

/* Row de dirección con icono */
.skeleton-address-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skeleton-icon {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  flex-shrink: 0;
  animation: shimmer 1.5s infinite;
}

.skeleton-address {
  height: 18px;
  flex: 1 1;
  max-width: 70%;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}

/* Specs - mismo layout que .property-specs */
.skeleton-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.skeleton-spec {
  height: 32px;
  width: 90px;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

/* Botón CTA - altura similar a .cta-btn */
.skeleton-cta {
  height: 40px;
  width: 100px;
  background: linear-gradient(
    90deg,
    #F3F4F6 0%,
    #E5E7EB 50%,
    #F3F4F6 100%
  );
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.5s infinite;
  margin-top: 0.5rem;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

