.elementor-164 .elementor-element.elementor-element-f5e6983{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-164 .elementor-element.elementor-element-f39cc3f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a5ed86e *//* Container and Section */
.sh-property-section {
    padding: 40px 20px;
    background-color: #f5f7fa; /* Light grey background */
}

.sh-property-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.sh-property-card {
    background: #ffffff;
    width: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sh-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image Header */
.sh-image-box {
    position: relative;
    height: 220px;
}

.sh-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges/Tags */
.sh-tag-left,
.sh-tag-right {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sh-tag-left {
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.sh-tag-right {
    right: 15px;
    background: #28a745;
    color: #fff;
}

/* Content Area */
.sh-card-content {
    padding: 20px;
}

.sh-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.sh-price {
    color: #007bff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: bold;
}

.sh-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Icons/Features */
.sh-features {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.sh-feature-item {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* Responsive View */
@media (max-width: 768px) {
    .sh-property-container {
        flex-direction: column;
        align-items: center;
    }
    .sh-property-card {
        width: 100%;
        max-width: 400px;
    }
}/* End custom CSS */