/* Card Styling */
.sl-item.property-list {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.sl-item.property-list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image zoom */
.sl-item.property-list .image img {
    transition: transform 0.4s ease;
}
.sl-item.property-list:hover .image img {
    transform: scale(1.05);
}

/* Buttons wrapper */
.property-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Buttons */
.property-buttons .btn {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.property-buttons .btn-primary {
    background: #d4a017;
    color: #fff;
}
.property-buttons .btn-primary:hover {
    background: #b8860b;
}

.property-buttons .btn-secondary {
    background: #f1f1f1;
    color: #333;
}
.property-buttons .btn-secondary:hover {
    background: #ddd;
}