/* Estilos generales */
.property-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .property-container {
        flex-direction: row;
    }
}

.property-gallery {
    flex: 1 1 55%;
    max-width: 55%;
}

.property-details {
    flex: 1 1 45%;
    max-width: 45%;
}

@media (max-width: 767px) {
    .property-gallery,
    .property-details {
        max-width: 100%;
    }
}

/* Galería de imágenes (carrusel simple) */
.gallery-wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-item {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.no-image-placeholder {
    background-color: #f0f0f0;
    color: #888;
    text-align: center;
    padding: 5rem 1rem;
    border-radius: 8px;
}

/* Detalles de la propiedad */
.property-header {
    margin-bottom: 2rem;
}

.property-title {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
}

.property-location {
    font-size: 1.2rem;
    color: #666;
}

.property-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.info-label {
    font-size: 0.9rem;
    color: #888;
}

.info-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.property-section {
    margin-bottom: 2rem;
}

.property-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlights-list,
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2; /* Divide la lista en 2 columnas */
}

.highlights-list li,
.amenities-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.highlights-list li::before,
.amenities-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
}