* {
    box-sizing: border-box;
}

.property-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.back-btn {
    color: #337bb6;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* IMAGE */
.property-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    color: #999;
    font-size: 16px;
    text-align: center;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* TITLE */
.property-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.property-location {
    color: #777;
    margin-bottom: 20px;
    font-size: 16px;
}

/* FACTS */
.property-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 25px;
}

.fact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #444;
}

/* DESCRIPTION */
.property-description {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.property-description h3 {
    margin-bottom: 15px;
}

/* SIDEBAR */
.property-sidebar {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
}

.property-price {
    font-size: 36px;
    font-weight: 700;
    color: #337bb6;
}

.price-note {
    color: #777;
    margin-bottom: 25px;
}

.contact-btn {
    display: block;
    width: 100%;
    background: #337bb6;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-image {
        height: 300px;
    }
}