.property-title {
    padding: 0;
    margin-top: 10px;
    text-align: center;
}

.property-ref {
    font-size: 1em;
}

.property-price {
    text-align: center;
    margin: 0.8rem auto;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: fit-content;
    transition: transform 0.2s ease;
}

.property-price:hover {
    transform: translateY(-1px);
}

.property-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
}

@media (max-width: 920px) {
    .property-price span {
        font-size: 1rem;
    }
}

.property-specs {
    margin: 10px auto;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.property-specs td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 16px;
    width: 50%;
}

.property-specs td strong {
    color: #333;
}

.property-image {
    text-align: center;
    margin: 20px 0;
}

.property-image img {
    max-width: 100%;
    height: auto;
}

.property-highlights {
    margin: 20px auto;
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    width: 740px;
}

.property-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.property-highlights li {
    margin-bottom: 0.5rem;
}

.property-highlights li:last-child {
    margin-bottom: 0;
}

/* Liste avec etiquette */

/* .highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    text-align: center;
}

.highlights-list li {
    background-color: var(--primary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s, transform 0.3s;
}

.highlights-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.highlights-list li:hover {
    background-color: #e0f7fa;
    transform: translateY(-2px);
} */

.property-location {
    margin: 20px 0;
    text-align: center;
}

.property-location img {
    max-width: 100%;
    height: auto;
}

.map-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

#map {
    height: 400px;
    width: 680px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    border-radius: 4px;
}

.property-gallery h2,
.property-location h2 {
    text-align: center;
}

.gallery-note {
    text-align: center;
    font-style: italic;
    margin: 1rem 0;
    color: #666;
}

@media (max-width: 920px) {
    .property-specs td {
        font-size: 14px;
        padding: 10px;
    }

    .property-highlights {
        width: 95%;
        padding: 1rem;
        margin: 20px auto;
    }

    .property-highlights ul {
        padding: 0 10px;
    }

    .property-highlights li {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    #map {
        width: 90%;
        height: 300px;
    }
}
