.property-details {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.property-details .detail-item {
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9em;
}

.property-gallery {
    margin-top: 30px;
}

.property-gallery .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.property-gallery figure {
    margin: 0;
    border: 1px solid #eee;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.property-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
}

.property-gallery figcaption {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

.property-virtual-tour {
    margin-top: 30px;
}

.property-map {
    margin-top: 30px;
}