.property-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Property Card */
.property-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Property Image */
.property-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image-link {
    display: block;
    height: 100%;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.property-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Badges */
.property-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px 15px;
    font-weight: bold;
}

.price-sale {
    color: #fff;
    font-size: 1.1em;
}

.price-regular {
    font-size: 0.9em;
    opacity: 0.8;
    text-decoration: line-through;
    margin-left: 8px;
}

.price-label {
    font-size: 0.8em;
    opacity: 0.9;
}

.property-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e9a081;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.property-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e9a081;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Property Content */
.property-content {
    padding: 20px;
}

.property-title {
    margin: 0 0 10px;
    font-size: 1.2em;
    line-height: 1.3;
}

.property-title a {
    color: #333;
    text-decoration: none !important;
}

.property-title a:hover {
    color: #e9a081;
}

.property-description {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 15px;
    line-height: 1.5;
}

/* Property Details */
.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.property-detail {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #555;
}

.property-detail i {
    margin-right: 5px;
    color: #e9a081;
}

/* Property Footer */
.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.property-agent {
    display: flex;
    align-items: center;
}

.agent-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.agent-name {
    font-size: 0.9em;
    color: #666;
}

/* Share Button */
.share-button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    position: relative;
}

.share-button:hover {
    color: #e9a081;
}

.share-dropdown {
    display: none;
    position: absolute;
    right: 0;
    bottom: 100%;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
    min-width: 180px;
}

.share-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.social-icon {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
}

.social-icon:hover {
    color: #e9a081;
}

.social-icon i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}