/* Property Header Widget Styles */
.pc-header {
    font-family: 'Helvetica', Arial, sans-serif;
    margin-bottom: 50px;
    width: 100%;
}

.pc-subtitle {
    margin-bottom: 15px;
}

.pc-title {
    margin: 0 auto;
}

/* Property Grid Widget Styles */
.property-cards-wrapper {
    font-family: 'Helvetica', Arial, sans-serif;
    width: 100%;
    background: transparent;
}

.property-cards-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pc-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
}

.pc-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.pc-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pc-image-box {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #e0e0e0;
}

.pc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.pc-card:hover .pc-image-box img {
    transform: scale(1.05);
}

.pc-content {
    padding: 20px;
}

.pc-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pc-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 0;
    text-align: left;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.pc-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.pc-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pc-label {
    font-weight: 500;
}

.pc-value {
    font-weight: 600;
}

.pc-status-ready {
    color: #2e7d32;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .property-cards-wrapper {
        padding: 40px 20px;
    }

    .pc-title {
        font-size: 32px;
    }

    .pc-card-title {
        font-size: 20px;
    }
}

/* Single Property Card Widget Styles */
.spc-card {
    font-family: 'Helvetica', Arial, sans-serif;
    background: #fff;
    overflow: hidden;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.spc-image-box {
    width: 100%;
    position: relative;
    background-color: transparent;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.spc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.spc-card-title {
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.spc-category {
    margin-bottom: 20px;
    display: block;
}

.spc-details {
    margin-top: 15px;
}

.spc-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.spc-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spc-label {
    font-weight: 600;
}

.spc-value {
    font-weight: 400;
}