/* ====================================================================
   Refonte visuelle de la page single-property (épurée / minimaliste)
   N'altère aucune classe/ID utilisée par le JS du thème.
   ==================================================================== */

/* ---- Bloc résumé (titre, prix, adresse, stats) ---- */
.summary {
    background: #fff;
    padding: 32px 0 8px 0;
}

.summaryItem {
    padding-bottom: 8px;
}

.pageTitle {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.property-id {
    font-size: 12px;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.summary .address {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 1.5;
    margin-bottom: 18px;
}

.single-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3df;
    color: #fef400;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ---- Prix : élément le plus visible de la page ---- */
.singlePrice {
    margin: 18px 0 20px 0;
}

.singlePrice .listPrice {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.singlePrice .label.label-yellow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 10px;
    border-radius: 20px;
    vertical-align: middle;
    color: #000;
}

.singlePrice .listCategory {
    font-size: 13px;
    color: #9a9a9a;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Stats secondaires (vues, favoris, signalement) ---- */
.stats,
.favLink,
.reportLink {
    display: inline-block;
    font-size: 13px;
    color: #9a9a9a;
    vertical-align: middle;
}

.favLink #favBtn {
    color: #c9c9c9;
    transition: color 0.2s ease;
}

.favLink #favBtn:hover,
.favLink .addedFav {
    color: #e0566d;
}

/* ---- Caractéristiques (chambres / sdb / surface) en pastilles légères ---- */
ul.features {
    list-style: none;
    margin: 18px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: #444;
}

ul.features li span[class*="icon-"],
ul.features li span.fa {
    color: #eab134;
    font-size: 16px;
}

/* ---- Bloc agent : carte distincte, propre ---- */
.agentAvatar {
    background: #fafafa;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    margin-top: 20px;
}

.agentAvatarImg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.agentName {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.agentAvatar .contactBtn {
    display: block;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 0;
}

/* ---- Sections génériques (description / share / amenities / additional) ---- */
.description,
.share,
.amenities,
.floorPlans,
.additional {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.description h3,
.share h3,
.amenities h3,
.floorPlans h3,
.additional h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin: 18px 0 18px 0;
}

.description .entry-content {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4a4a;
}

/* ---- Partage ---- */
.share .btn {
    border-radius: 30px;
    font-size: 13px;
    padding: 8px 18px;
    margin-right: 8px;
}

/* ---- Amenities : grille de pastilles avec coche ---- */
.amenities .amItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    padding: 10px 0;
}

.amenities .amItem.active span {
    color: #3aa876;
    font-size: 16px;
}

/* ---- Informations additionnelles : style "fiche" ---- */
.additional .amItem {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.additional .amItem strong {
    color: #1a1a1a;
    font-weight: 600;
    margin-right: 6px;
}

/* ---- Plans ---- */
.floorPlans .plan img {
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.floorPlans .plan:hover img {
    opacity: 0.85;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .pageTitle {
        font-size: 24px;
    }
    .singlePrice .listPrice {
        font-size: 26px;
    }
    .agentAvatar {
        margin-top: 14px;
    }
}