/* ── Property Listing Card d9b40d95 ── */

.plc-d9b40d95-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plc-d9b40d95-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ── Image Column ── */
.plc-d9b40d95-image-col {
    flex: 0 0 380px;
    max-width: 380px;
    position: relative;
}

.plc-d9b40d95-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.plc-d9b40d95-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.plc-d9b40d95-card:hover .plc-d9b40d95-img {
    transform: scale(1.04);
}

/* ── Badges ── */
.plc-d9b40d95-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.plc-d9b40d95-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.3;
}

.plc-d9b40d95-badge-featured {
    background: #C8A35F;
}

.plc-d9b40d95-badge-new {
    background: #23412F;
}

.plc-d9b40d95-badge-reduced {
    background: #C0392B;
}

/* ── Photo Count ── */
.plc-d9b40d95-photo-count {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* ── Content Column ── */
.plc-d9b40d95-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 30px;
    gap: 4px;
}

.plc-d9b40d95-content-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.plc-d9b40d95-price {
    font-size: 28px;
    font-weight: 800;
    color: #23412F;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.plc-d9b40d95-action-icons {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.plc-d9b40d95-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #6E6E6E;
    padding: 0;
}

.plc-d9b40d95-action-btn:hover {
    border-color: #23412F;
    color: #23412F;
    background: #F7F5F1;
}

.plc-d9b40d95-action-btn svg {
    fill: none;
    transition: stroke 0.25s ease;
}

/* ── Title ── */
.plc-d9b40d95-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 6px 0 2px;
    line-height: 1.35;
}

/* ── Location ── */
.plc-d9b40d95-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6E6E6E;
    font-weight: 500;
    margin-bottom: 6px;
}

.plc-d9b40d95-location svg {
    flex-shrink: 0;
    stroke: #C8A35F;
}

/* ── Description ── */
.plc-d9b40d95-desc {
    font-size: 14px;
    color: #6E6E6E;
    line-height: 1.6;
    margin: 0 0 12px;
}

/* ── Features ── */
.plc-d9b40d95-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.plc-d9b40d95-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F7F5F1;
    color: #23412F;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    line-height: 1.3;
}

.plc-d9b40d95-feature-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.plc-d9b40d95-feature-icon svg {
    fill: none;
    stroke: #C8A35F;
}

/* ── Footer ── */
.plc-d9b40d95-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.plc-d9b40d95-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C8A35F;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(200, 163, 95, 0.25);
    line-height: 1.4;
}

.plc-d9b40d95-cta:hover {
    background: #B8933F;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 163, 95, 0.35);
    color: #fff;
}

.plc-d9b40d95-cta svg {
    fill: none;
    transition: transform 0.25s ease;
}

.plc-d9b40d95-cta:hover svg {
    transform: translateX(3px);
}

/* ── Saved State ── */
.plc-d9b40d95-save-btn.plc-d9b40d95-saved svg {
    fill: #C0392B;
    stroke: #C0392B;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .plc-d9b40d95-image-col {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .plc-d9b40d95-image-wrap {
        min-height: 260px;
    }

    .plc-d9b40d95-content-col {
        padding: 22px 24px;
    }

    .plc-d9b40d95-price {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    .plc-d9b40d95-card {
        flex-direction: column;
    }

    .plc-d9b40d95-image-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .plc-d9b40d95-image-wrap {
        min-height: 220px;
        max-height: 260px;
    }

    .plc-d9b40d95-content-col {
        padding: 20px;
    }

    .plc-d9b40d95-price {
        font-size: 22px;
    }

    .plc-d9b40d95-title {
        font-size: 16px;
    }

    .plc-d9b40d95-cta {
        width: 100%;
        justify-content: center;
    }
}
