/* ===== แถบชื่อทรัพย์ + ราคา (ปรับ .property-title ให้ตรง class จริง) ===== */
.property-title-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.property-title-price-wrap h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}
.property-price {
    font-size: 26px;
    font-weight: 700;
    color: #0f6b53; /* เปลี่ยนเป็นสีธีมของคุณ */
}
.property-price-per-sqft {
    font-size: 14px;
    color: #888;
    display: block;
    text-align: right;
}

/* ===== แถวไอคอนข้อมูลย่อ (ห้องนอน/ห้องน้ำ/ขนาด) ===== */
.property-quick-facts {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}
.property-quick-facts .fact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #444;
}

/* ===== ตาราง Details ===== */
.property-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.property-details-table tr {
    border-bottom: 1px solid #f0f0f0;
}
.property-details-table td {
    padding: 10px 0;
    font-size: 14px;
}
.property-details-table td:first-child {
    color: #888;
    width: 40%;
}
.property-details-table td:last-child {
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== Features checklist ===== */
.property-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
}
.property-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.property-features-list li::before {
    content: "✓";
    color: #0f6b53;
    font-weight: 700;
}

/* ===== การ์ด Agent ===== */
.property-agent-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.property-agent-card img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 10px;
}
.property-agent-contact-btns {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.property-agent-contact-btns a {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
}
.btn-call    { background: #1a1a1a; color: #fff; }
.btn-whatsapp{ background: #25D366; color: #fff; }
.btn-viber   { background: #7360F2; color: #fff; }

/* ===== Similar Properties grid ===== */
.similar-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .property-title-price-wrap { flex-direction: column; align-items: flex-start; }
    .property-price-per-sqft { text-align: left; }
}